static_inst.hh (12385:288c62455dde) static_inst.hh (12404:fe5af2331a48)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 191 unchanged lines hidden (view full) ---

200
201 /// Return logical index (architectural reg num) of i'th source reg.
202 /// Only the entries from 0 through numSrcRegs()-1 are valid.
203 const RegId& srcRegIdx(int i) const { return _srcRegIdx[i]; }
204
205 /// Pointer to a statically allocated "null" instruction object.
206 static StaticInstPtr nullStaticInstPtr;
207
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 191 unchanged lines hidden (view full) ---

200
201 /// Return logical index (architectural reg num) of i'th source reg.
202 /// Only the entries from 0 through numSrcRegs()-1 are valid.
203 const RegId& srcRegIdx(int i) const { return _srcRegIdx[i]; }
204
205 /// Pointer to a statically allocated "null" instruction object.
206 static StaticInstPtr nullStaticInstPtr;
207
208 /// Pointer to a statically allocated generic "nop" instruction object.
209 static StaticInstPtr nopStaticInstPtr;
210
208 /// The binary machine instruction.
209 const ExtMachInst machInst;
210
211 protected:
212
213 /// See destRegIdx().
214 RegId _destRegIdx[MaxInstDestRegs];
215 /// See srcRegIdx().

--- 104 unchanged lines hidden ---
211 /// The binary machine instruction.
212 const ExtMachInst machInst;
213
214 protected:
215
216 /// See destRegIdx().
217 RegId _destRegIdx[MaxInstDestRegs];
218 /// See srcRegIdx().

--- 104 unchanged lines hidden ---