static_inst.hh (7878:d3e6ebcccabf) | static_inst.hh (8148:93982cb5044c) |
---|---|
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; --- 253 unchanged lines hidden (view full) --- 262 bool isLastMicroop() const { return flags[IsLastMicroop]; } 263 bool isFirstMicroop() const { return flags[IsFirstMicroop]; } 264 //This flag doesn't do anything yet 265 bool isMicroBranch() const { return flags[IsMicroBranch]; } 266 //@} 267 268 void setLastMicroop() { flags[IsLastMicroop] = true; } 269 void setDelayedCommit() { flags[IsDelayedCommit] = true; } | 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; --- 253 unchanged lines hidden (view full) --- 262 bool isLastMicroop() const { return flags[IsLastMicroop]; } 263 bool isFirstMicroop() const { return flags[IsFirstMicroop]; } 264 //This flag doesn't do anything yet 265 bool isMicroBranch() const { return flags[IsMicroBranch]; } 266 //@} 267 268 void setLastMicroop() { flags[IsLastMicroop] = true; } 269 void setDelayedCommit() { flags[IsDelayedCommit] = true; } |
270 void setFlag(Flags f) { flags[f] = true; } |
|
270 271 /// Operation class. Used to select appropriate function unit in issue. 272 OpClass opClass() const { return _opClass; } 273}; 274 275 276// forward declaration 277class StaticInstPtr; --- 370 unchanged lines hidden --- | 271 272 /// Operation class. Used to select appropriate function unit in issue. 273 OpClass opClass() const { return _opClass; } 274}; 275 276 277// forward declaration 278class StaticInstPtr; --- 370 unchanged lines hidden --- |