Home
last modified time | relevance | path

Searched refs:getInstruction (Results 1 – 25 of 88) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DInOrderIssueStage.cpp64 const Instruction &Inst = *IR.getInstruction(); in isAvailable()
80 if (RM.checkAvailability(IR.getInstruction()->getDesc())) { in hasResourceHazard()
89 unsigned FirstWBCycle = IR.getInstruction()->getLatency(); in findFirstWriteBackCycle()
90 for (const WriteState &WS : IR.getInstruction()->getDefs()) { in findFirstWriteBackCycle()
106 for (const ReadState &RS : IR.getInstruction()->getUses()) { in checkRegisterHazard()
129 if (IR.getInstruction()->isMemOp() && !LSU.isReady(IR)) { in canExecute()
142 if (!IR.getInstruction()->getRetireOOO()) { in canExecute()
199 Instruction &IS = *IR.getInstruction(); in execute()
213 Instruction &IS = *IR.getInstruction(); in tryIssue()
218 LLVM_DEBUG(dbgs() << "[N] Stalled #" << SI.getInstruction() << " for " in tryIssue()
[all …]
H A DExecuteStage.cpp59 Instruction &IS = *IR.getInstruction(); in issueInstruction()
162 const Instruction &Inst = *IR.getInstruction(); in verifyInstructionEliminated()
180 IR.getInstruction()->forceExecuted(); in handleInstructionEliminated()
194 if (IR.getInstruction()->isEliminated()) in execute()
202 const Instruction &Inst = *IR.getInstruction(); in execute()
273 uint64_t UsedBuffers = IR.getInstruction()->getDesc().UsedBuffers; in notifyReservedOrReleasedBuffers()
H A DDispatchStage.cpp48 for (const WriteState &RegDef : IR.getInstruction()->getDefs()) in checkPRF()
63 const unsigned NumMicroOps = IR.getInstruction()->getNumMicroOps(); in checkRCU()
80 Instruction &IS = *IR.getInstruction(); in dispatch()
159 const Instruction &Inst = *IR.getInstruction(); in isAvailable()
H A DRetireStage.cpp50 Instruction &IS = *IR.getInstruction(); in execute()
63 const Instruction &Inst = *IR.getInstruction(); in notifyInstructionRetired()
H A DInstructionTables.cpp23 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in execute()
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp42 Resources->canBeDispatched(IR.getInstruction()->getUsedBuffers()); in isAvailable()
73 Instruction *IS = IR.getInstruction(); in issueInstructionImpl()
104 const Instruction &Inst = *IR.getInstruction(); in issueInstruction()
129 Instruction &IS = *IR.getInstruction(); in promoteToReadySet()
166 Instruction &IS = *IR.getInstruction(); in promoteToPendingSet()
198 Instruction &IS = *IR.getInstruction(); in select()
224 Instruction &IS = *IR.getInstruction(); in updateIssuedSet()
252 const Instruction &IS = *IR.getInstruction(); in analyzeDataDependencies()
274 IR.getInstruction()->cycleEvent(); in cycleEvent()
278 IR.getInstruction() in cycleEvent()
[all...]
H A DRetireControlUnit.cpp44 const Instruction &Inst = *IR.getInstruction(); in dispatch()
61 const Instruction *Inst = Current.IR.getInstruction(); in getCurrentToken()
79 Current.IR.getInstruction()->retire(); in consumeCurrentToken()
90 assert(Queue[TokenID].IR.getInstruction() && "Instruction was not dispatched!"); in onInstructionExecuted()
H A DLSUnit.cpp70 const Instruction &IS = *IR.getInstruction(); in dispatch()
197 const Instruction &IS = *IR.getInstruction(); in isAvailable()
206 unsigned GroupID = IR.getInstruction()->getLSUTokenID(); in onInstructionExecuted()
215 const Instruction &IS = *IR.getInstruction(); in onInstructionRetired()
234 const Instruction &IS = *IR.getInstruction(); in onInstructionExecuted()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h119 unsigned Cycles = IR.getInstruction()->getCyclesLeft(); in onGroupIssued()
137 const Instruction &IS = *IR.getInstruction(); in onInstructionIssued()
139 const Instruction &OtherIS = *CriticalMemoryInstruction.getInstruction(); in onInstructionIssued()
274 unsigned GroupID = IR.getInstruction()->getLSUTokenID(); in isReady()
282 unsigned GroupID = IR.getInstruction()->getLSUTokenID(); in isPending()
290 unsigned GroupID = IR.getInstruction()->getLSUTokenID(); in isWaiting()
296 unsigned GroupID = IR.getInstruction()->getLSUTokenID(); in hasDependentUsers()
326 unsigned GroupID = IR.getInstruction()->getLSUTokenID(); in onInstructionIssued()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86InstrMappingEmitter.cpp221 NewInst = &Target.getInstruction(NewRec); in emitCompressEVEXTable()
224 NewInst = &Target.getInstruction(NewRec); in emitCompressEVEXTable()
296 Table.push_back(std::pair(&Target.getInstruction(NewRec), Inst)); in emitNFTransformTable()
323 auto &NewInst = Target.getInstruction(NewRec); in emitND2NonNDTable()
333 auto &NewInst = Target.getInstruction(NewRec); in emitND2NonNDTable()
357 auto &NewInst = Target.getInstruction(NewRec); in emitSSE2AVXTable()
366 auto &AVXInst = Target.getInstruction(AVXRec); in emitSSE2AVXTable()
H A DGlobalISelEmitter.cpp295 CodeGenInstruction &InstInfo = Target.getInstruction(Dst.getOperator()); in getInstResultType()
517 return &Target.getInstruction(Equiv.getValueAsDef("IfFloatingPoint")); in getEquivNode()
522 return &Target.getInstruction(Equiv.getValueAsDef("IfConvergent")); in getEquivNode()
529 return &Target.getInstruction(Equiv.getValueAsDef("IfSignExtend")); in getEquivNode()
533 return &Target.getInstruction(Equiv.getValueAsDef("IfZeroExtend")); in getEquivNode()
536 return &Target.getInstruction(Equiv.getValueAsDef("I")); in getEquivNode()
732 &Target.getInstruction(RK.getDef("G_CONSTANT"))); in createAndImportSelDAGMatcher()
1150 Target.getInstruction(RK.getDef("G_BUILD_VECTOR")); in importChildMatcher()
1152 Target.getInstruction(RK.getDef("G_BUILD_VECTOR_TRUNC")); in importChildMatcher()
1358 &Target.getInstruction(RK.getDef("COPY"))); in createAndImportInstructionRenderer()
[all …]
H A DDAGISelMatcherGen.cpp694 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(ImpDef); in EmitResultLeafAsOperand()
751 CodeGenInstruction &II = CGT.getInstruction(Op); in mayInstNodeLoadOrStore()
778 CodeGenInstruction &II = CGT.getInstruction(Op); in EmitResultInstructionAsOperand()
779 const DAGInstruction &Inst = CGP.getInstruction(Op); in EmitResultInstructionAsOperand()
1049 CodeGenInstruction &II = CGT.getInstruction(DstPat.getOperator()); in EmitResultCode()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAbstractCallSite.h112 CallBase *getInstruction() const { return CB; } in getInstruction() function
205 unsigned(CalleeArgIdx) < getInstruction()->getNumOperands()); in getCalleeUseForCallback()
206 return getInstruction()->getOperandUse(CalleeArgIdx); in getCalleeUseForCallback()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DSchedulerStatistics.cpp46 const Instruction &Inst = *Event.IR.getInstruction(); in onEvent()
49 const Instruction &Inst = *Event.IR.getInstruction(); in onEvent()
62 const Instruction &Inst = *Event.IR.getInstruction(); in onEvent()
H A DRetireControlUnitStatistics.cpp39 unsigned ReleasedEntries = Event.IR.getInstruction()->getDesc().NumMicroOps; in onEvent()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DInOrderIssueStage.h45 const InstRef &getInstruction() const { return IR; } in getInstruction() function
46 InstRef &getInstruction() { return IR; } in getInstruction() function
H A DMicroOpQueueStage.h57 IR.getInstruction()->getDesc().NumMicroOps); in getNormalizedOpcodes()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCA/
H A DAMDGPUCustomBehaviour.cpp70 const Instruction &Inst = *IR.getInstruction(); in checkCustomHazard()
127 const Instruction &PrevInst = *PrevIR.getInstruction(); in handleWaitCnt()
180 const Instruction &Inst = *IR.getInstruction(); in computeWaitCnt()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenTarget.h170 CodeGenInstruction &getInstruction(const Record *InstRec) const { in getInstruction() function
204 return getInstruction(R).EnumVal; in getInstrIntValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/Disassembler/
H A DLoongArchDisassembler.cpp38 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
152 DecodeStatus LoongArchDisassembler::getInstruction(MCInst &MI, uint64_t &Size, in getInstruction() function in LoongArchDisassembler
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/Disassembler/
H A DM68kDisassembler.cpp133 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, in getInstruction()
138 DecodeStatus M68kDisassembler::getInstruction(MCInst &Instr, uint64_t &Size, in getInstruction()
129 DecodeStatus M68kDisassembler::getInstruction(MCInst &Instr, uint64_t &Size, getInstruction() function in M68kDisassembler
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/
H A DLanaiDisassembler.h30 getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.h31 getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/Disassembler/
H A DBPFDisassembler.cpp68 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
165 DecodeStatus BPFDisassembler::getInstruction(MCInst &Instr, uint64_t &Size,
166 DecodeStatus BPFDisassembler::getInstruction(MCInst &Instr, uint64_t &Size, getInstruction() function in BPFDisassembler
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DPatternParser.cpp104 return CGT.getInstruction(RK.getDef(Opc)); in getInstrForIntrinsic()
127 auto &Instr = CGT.getInstruction(IP->getOperatorAsDef(DiagLoc)); in parseInstructionPattern()
186 Result->addOpcode(&CGT.getInstruction(OpcodeDef)); in parseWipMatchOpcodeMatcher()

1234