Lines Matching refs:IS
70 const Instruction &IS = *IR.getInstruction(); in dispatch() local
71 bool IsStoreBarrier = IS.isAStoreBarrier(); in dispatch()
72 bool IsLoadBarrier = IS.isALoadBarrier(); in dispatch()
73 assert((IS.getMayLoad() || IS.getMayStore()) && "Not a memory operation!"); in dispatch()
75 if (IS.getMayLoad()) in dispatch()
77 if (IS.getMayStore()) in dispatch()
80 if (IS.getMayStore()) { in dispatch()
118 if (IS.getMayLoad()) { in dispatch()
127 assert(IS.getMayLoad() && "Expected a load!"); in dispatch()
197 const Instruction &IS = *IR.getInstruction(); in isAvailable() local
198 if (IS.getMayLoad() && isLQFull()) in isAvailable()
200 if (IS.getMayStore() && isSQFull()) in isAvailable()
215 const Instruction &IS = *IR.getInstruction(); in onInstructionRetired() local
216 bool IsALoad = IS.getMayLoad(); in onInstructionRetired()
217 bool IsAStore = IS.getMayStore(); in onInstructionRetired()
234 const Instruction &IS = *IR.getInstruction(); in onInstructionExecuted() local
235 if (!IS.isMemOp()) in onInstructionExecuted()
239 unsigned GroupID = IS.getLSUTokenID(); in onInstructionExecuted()