cache_and_memory_management.py revision 5081:2ccce8600a9d
12292SN/A# Copyright (c) 2007 The Hewlett-Packard Development Company
22292SN/A# All rights reserved.
32292SN/A#
42292SN/A# Redistribution and use of this software in source and binary forms,
52292SN/A# with or without modification, are permitted provided that the
62292SN/A# following conditions are met:
72292SN/A#
82292SN/A# The software must be used only for Non-Commercial Use which means any
92292SN/A# use which is NOT directed to receiving any direct monetary
102292SN/A# compensation for, or commercial advantage from such use.  Illustrative
112292SN/A# examples of non-commercial use are academic research, personal study,
122292SN/A# teaching, education and corporate research & development.
132292SN/A# Illustrative examples of commercial use are distributing products for
142292SN/A# commercial advantage and providing services using the software for
152292SN/A# commercial advantage.
162292SN/A#
172292SN/A# If you wish to use this software or functionality therein that may be
182292SN/A# covered by patents for commercial use, please contact:
192292SN/A#     Director of Intellectual Property Licensing
202292SN/A#     Office of Strategy and Technology
212292SN/A#     Hewlett-Packard Company
222292SN/A#     1501 Page Mill Road
232292SN/A#     Palo Alto, California  94304
242292SN/A#
252292SN/A# Redistributions of source code must retain the above copyright notice,
262292SN/A# this list of conditions and the following disclaimer.  Redistributions
272689Sktlim@umich.edu# in binary form must reproduce the above copyright notice, this list of
282689Sktlim@umich.edu# conditions and the following disclaimer in the documentation and/or
292689Sktlim@umich.edu# other materials provided with the distribution.  Neither the name of
302292SN/A# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
312292SN/A# contributors may be used to endorse or promote products derived from
323326Sktlim@umich.edu# this software without specific prior written permission.  No right of
332733Sktlim@umich.edu# sublicense is granted herewith.  Derivatives of the software and
342733Sktlim@umich.edu# output created using the software may be prepared, but only for
352907Sktlim@umich.edu# Non-Commercial Uses.  Derivatives of the software may be shared with
362292SN/A# others provided: (i) the others agree to abide by the list of
372292SN/A# conditions herein which includes the Non-Commercial Use restrictions;
382722Sktlim@umich.edu# and (ii) such Derivatives of the software include the above copyright
392669Sktlim@umich.edu# notice to acknowledge the contribution from this software where
402292SN/A# applicable, this list of conditions and the disclaimer below.
412790Sktlim@umich.edu#
422790Sktlim@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
432790Sktlim@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
442790Sktlim@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
452669Sktlim@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
462678Sktlim@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
472678Sktlim@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
485606Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
492292SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
502678Sktlim@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
512292SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
522292SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
532669Sktlim@umich.edu#
542292SN/A# Authors: Gabe Black
552678Sktlim@umich.edu
562292SN/Amicrocode = ""
572678Sktlim@umich.edu#let {{
582678Sktlim@umich.edu#    class LFENCE(Inst):
592678Sktlim@umich.edu#	"GenFault ${new UnimpInstFault}"
604319Sktlim@umich.edu#    class SFENCE(Inst):
614319Sktlim@umich.edu#	"GenFault ${new UnimpInstFault}"
624319Sktlim@umich.edu#    class MFENCE(Inst):
634319Sktlim@umich.edu#	"GenFault ${new UnimpInstFault}"
644319Sktlim@umich.edu#    class PREFETCHlevel(Inst):
652678Sktlim@umich.edu#	"GenFault ${new UnimpInstFault}"
662678Sktlim@umich.edu#    class PREFETCH(Inst):
672292SN/A#	"GenFault ${new UnimpInstFault}"
682678Sktlim@umich.edu#    class PREFETCHW(Inst):
692678Sktlim@umich.edu#	"GenFault ${new UnimpInstFault}"
705336Shines@cs.fsu.edu#    class CLFLUSH(Inst):
712678Sktlim@umich.edu#	"GenFault ${new UnimpInstFault}"
724873Sstever@eecs.umich.edu#}};
732678Sktlim@umich.edu