static_inst.hh (5222:bb733a878f85) static_inst.hh (5335:69d45f5f21a2)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

254 bool isMicroop() const { return flags[IsMicroop]; }
255 bool isDelayedCommit() const { return flags[IsDelayedCommit]; }
256 bool isLastMicroop() const { return flags[IsLastMicroop]; }
257 bool isFirstMicroop() const { return flags[IsFirstMicroop]; }
258 //This flag doesn't do anything yet
259 bool isMicroBranch() const { return flags[IsMicroBranch]; }
260 //@}
261
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

254 bool isMicroop() const { return flags[IsMicroop]; }
255 bool isDelayedCommit() const { return flags[IsDelayedCommit]; }
256 bool isLastMicroop() const { return flags[IsLastMicroop]; }
257 bool isFirstMicroop() const { return flags[IsFirstMicroop]; }
258 //This flag doesn't do anything yet
259 bool isMicroBranch() const { return flags[IsMicroBranch]; }
260 //@}
261
262 void setLastMicroop() { flags[IsLastMicroop] = true; }
262 /// Operation class. Used to select appropriate function unit in issue.
263 OpClass opClass() const { return _opClass; }
264};
265
266
267// forward declaration
268class StaticInstPtr;
269

--- 383 unchanged lines hidden ---
263 /// Operation class. Used to select appropriate function unit in issue.
264 OpClass opClass() const { return _opClass; }
265};
266
267
268// forward declaration
269class StaticInstPtr;
270

--- 383 unchanged lines hidden ---