microops.isa revision 6516
15425Sgblack@eecs.umich.edu// Copyright (c) 2007-2008 The Hewlett-Packard Development Company
24298Sgblack@eecs.umich.edu// All rights reserved.
34298Sgblack@eecs.umich.edu//
44298Sgblack@eecs.umich.edu// Redistribution and use of this software in source and binary forms,
54298Sgblack@eecs.umich.edu// with or without modification, are permitted provided that the
64298Sgblack@eecs.umich.edu// following conditions are met:
74298Sgblack@eecs.umich.edu//
84298Sgblack@eecs.umich.edu// The software must be used only for Non-Commercial Use which means any
94298Sgblack@eecs.umich.edu// use which is NOT directed to receiving any direct monetary
104298Sgblack@eecs.umich.edu// compensation for, or commercial advantage from such use.  Illustrative
114298Sgblack@eecs.umich.edu// examples of non-commercial use are academic research, personal study,
124298Sgblack@eecs.umich.edu// teaching, education and corporate research & development.
134298Sgblack@eecs.umich.edu// Illustrative examples of commercial use are distributing products for
144298Sgblack@eecs.umich.edu// commercial advantage and providing services using the software for
154298Sgblack@eecs.umich.edu// commercial advantage.
164298Sgblack@eecs.umich.edu//
174298Sgblack@eecs.umich.edu// If you wish to use this software or functionality therein that may be
184298Sgblack@eecs.umich.edu// covered by patents for commercial use, please contact:
194298Sgblack@eecs.umich.edu//     Director of Intellectual Property Licensing
204298Sgblack@eecs.umich.edu//     Office of Strategy and Technology
214298Sgblack@eecs.umich.edu//     Hewlett-Packard Company
224298Sgblack@eecs.umich.edu//     1501 Page Mill Road
234298Sgblack@eecs.umich.edu//     Palo Alto, California  94304
244298Sgblack@eecs.umich.edu//
254298Sgblack@eecs.umich.edu// Redistributions of source code must retain the above copyright notice,
264298Sgblack@eecs.umich.edu// this list of conditions and the following disclaimer.  Redistributions
274298Sgblack@eecs.umich.edu// in binary form must reproduce the above copyright notice, this list of
284298Sgblack@eecs.umich.edu// conditions and the following disclaimer in the documentation and/or
294298Sgblack@eecs.umich.edu// other materials provided with the distribution.  Neither the name of
304298Sgblack@eecs.umich.edu// the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
314298Sgblack@eecs.umich.edu// contributors may be used to endorse or promote products derived from
324298Sgblack@eecs.umich.edu// this software without specific prior written permission.  No right of
334298Sgblack@eecs.umich.edu// sublicense is granted herewith.  Derivatives of the software and
344298Sgblack@eecs.umich.edu// output created using the software may be prepared, but only for
354298Sgblack@eecs.umich.edu// Non-Commercial Uses.  Derivatives of the software may be shared with
364298Sgblack@eecs.umich.edu// others provided: (i) the others agree to abide by the list of
374298Sgblack@eecs.umich.edu// conditions herein which includes the Non-Commercial Use restrictions;
384298Sgblack@eecs.umich.edu// and (ii) such Derivatives of the software include the above copyright
394298Sgblack@eecs.umich.edu// notice to acknowledge the contribution from this software where
404298Sgblack@eecs.umich.edu// applicable, this list of conditions and the disclaimer below.
414298Sgblack@eecs.umich.edu//
424298Sgblack@eecs.umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
434298Sgblack@eecs.umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
444298Sgblack@eecs.umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
454298Sgblack@eecs.umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
464298Sgblack@eecs.umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
474298Sgblack@eecs.umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
484298Sgblack@eecs.umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
494298Sgblack@eecs.umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
504298Sgblack@eecs.umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
514298Sgblack@eecs.umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
524298Sgblack@eecs.umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
534298Sgblack@eecs.umich.edu//
544298Sgblack@eecs.umich.edu// Authors: Gabe Black
554298Sgblack@eecs.umich.edu
564338Sgblack@eecs.umich.edu//Common microop stuff
574338Sgblack@eecs.umich.edu##include "base.isa"
584338Sgblack@eecs.umich.edu
595083Sgblack@eecs.umich.edu//Floating point definitions
605083Sgblack@eecs.umich.edu##include "fpop.isa"
615083Sgblack@eecs.umich.edu
624524Sgblack@eecs.umich.edu//Register microop definitions
634524Sgblack@eecs.umich.edu##include "regop.isa"
644524Sgblack@eecs.umich.edu
654524Sgblack@eecs.umich.edu//Load immediate microop definition
664524Sgblack@eecs.umich.edu##include "limmop.isa"
674524Sgblack@eecs.umich.edu
684561Sgblack@eecs.umich.edu//Load/store microop definitions
694561Sgblack@eecs.umich.edu##include "ldstop.isa"
704561Sgblack@eecs.umich.edu
716516Sgblack@eecs.umich.edu//Media microop definitions
726516Sgblack@eecs.umich.edu##include "mediaop.isa"
736516Sgblack@eecs.umich.edu
745661Sgblack@eecs.umich.edu//Control flow microop definitions
755661Sgblack@eecs.umich.edu##include "seqop.isa"
765661Sgblack@eecs.umich.edu
774519Sgblack@eecs.umich.edu//Miscellaneous microop definitions
784519Sgblack@eecs.umich.edu##include "specop.isa"
795425Sgblack@eecs.umich.edu
805425Sgblack@eecs.umich.edu//Microops for printing out debug messages through M5
815425Sgblack@eecs.umich.edu##include "debug.isa"
82