Lines Matching refs:Desc
70 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in dispatch() local
71 unsigned IsMemBarrier = Desc.HasSideEffects; in dispatch()
72 assert((Desc.MayLoad || Desc.MayStore) && "Not a memory operation!"); in dispatch()
74 if (Desc.MayLoad) in dispatch()
76 if (Desc.MayStore) in dispatch()
79 if (Desc.MayStore) { in dispatch()
117 if (Desc.MayLoad) { in dispatch()
126 assert(Desc.MayLoad && "Expected a load!"); in dispatch()
196 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in isAvailable() local
197 if (Desc.MayLoad && isLQFull()) in isAvailable()
199 if (Desc.MayStore && isSQFull()) in isAvailable()
214 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in onInstructionRetired() local
215 bool IsALoad = Desc.MayLoad; in onInstructionRetired()
216 bool IsAStore = Desc.MayStore; in onInstructionRetired()