Home
last modified time | relevance | path

Searched refs:getInst (Results 1 – 25 of 32) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp690 if (Instruction *Inst = LocalCache.getInst()) { in getDependency()
728 if (Instruction *I = LocalCache.getInst()) in getDependency()
825 if (Instruction *Inst = ExistingResult->getResult().getInst()) { in getNonLocalCallDependency()
858 if (Instruction *Inst = Dep.getInst()) in getNonLocalCallDependency()
886 ReverseNonLocalDefsCache[NonLocalDefIt->second.getResult().getInst()] in getNonLocalPointerDependency()
973 if (ExistingResult && ExistingResult->getResult().getInst()) { in getNonLocalInfoForBlock()
974 assert(ExistingResult->getResult().getInst()->getParent() == BB && in getNonLocalInfoForBlock()
977 ScanPos = ExistingResult->getResult().getInst()->getIterator(); in getNonLocalInfoForBlock()
1009 Instruction *Inst = Dep.getInst(); in getNonLocalInfoForBlock()
1118 if (Instruction *Inst = Entry.getResult().getInst()) in getNonLocalPointerDepFromBB()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCDuplexInfo.cpp1043 if (isStoreInst(MCB.getOperand(j).getInst()->getOpcode()) && in getDuplexPossibilties()
1044 isStoreInst(MCB.getOperand(k).getInst()->getOpcode())) { in getDuplexPossibilties()
1054 MCII, *MCB.getOperand(k).getInst(), in getDuplexPossibilties()
1056 *MCB.getOperand(j).getInst(), in getDuplexPossibilties()
1061 getDuplexCandidateGroup(*MCB.getOperand(k).getInst()), in getDuplexPossibilties()
1062 getDuplexCandidateGroup(*MCB.getOperand(j).getInst())); in getDuplexPossibilties()
1067 << MCB.getOperand(j).getInst()->getOpcode() << "," in getDuplexPossibilties()
1068 << MCB.getOperand(k).getInst()->getOpcode() << "\n"); in getDuplexPossibilties()
1072 << MCB.getOperand(j).getInst()->getOpcode() << "," in getDuplexPossibilties()
1073 << MCB.getOperand(k).getInst()->getOpcode() << "\n"); in getDuplexPossibilties()
[all …]
H A DHexagonInstPrinter.cpp41 MCInst const &MCI = *I.getInst(); in printInst()
43 printInstruction(MCI.getOperand(1).getInst(), Address, OS); in printInst()
46 printInstruction(MCI.getOperand(0).getInst(), Address, OS); in printInst()
H A DHexagonMCShuffler.cpp38 MCInst &MI = *const_cast<MCInst *>(I.getInst()); in init()
63 assert(!HexagonMCInstrInfo::getDesc(MCII, *I.getInst()).isPseudo()); in init()
64 MCInst &MI = *const_cast<MCInst *>(I.getInst()); in init()
H A DHexagonMCInstrInfo.cpp62 MCInst const &Inst = *BundleCurrent->getInst(); in operator ++()
73 return *DuplexCurrent->getInst(); in operator *()
74 return *BundleCurrent->getInst(); in operator *()
228 MCB.getOperand(Index + bundleInstructionsOffset - 1).getInst(); in extenderForIndex()
489 if (HexagonMCInstrInfo::isDuplex(MCII, *I.getInst())) in hasDuplex()
505 if (isImmext(*I.getInst())) in hasImmExt()
529 return *MCB.getOperand(bundleInstructionsOffset + Index).getInst(); in instruction()
990 MCInst const &MCI = *HMI.getInst(); in slotsConsumed()
1008 *MCB.getOperand(Candidate.packetIndexJ).getInst(), in replaceDuplex()
1009 *MCB.getOperand(Candidate.packetIndexI).getInst()); in replaceDuplex()
[all...]
H A DHexagonAsmBackend.cpp575 MCInst const &MCB = DF->getInst(); in fixupNeedsRelaxationAdvanced()
657 MCInst &CrntHMI = const_cast<MCInst &>(*I.getInst()); in relaxInstruction()
673 Res.addOperand(MCOperand::createInst(I.getInst())); in relaxInstruction()
730 auto &Inst = const_cast<MCInst &>(RF.getInst()); in finishLayout()
H A DHexagonMCChecker.cpp57 MCInst const &Inst = *I.getInst(); in init()
59 init(*Inst.getOperand(0).getInst()); in init()
60 init(*Inst.getOperand(1).getInst()); in init()
529 MCInst const &Inst = *I.getInst(); in checkRegistersReadOnly()
673 if (HexagonMCInstrInfo::getType(MCII, *HMI.getInst()) == in checkRegisters()
H A DHexagonMCCodeEmitter.cpp382 MCInst &HMI = const_cast<MCInst &>(*I.getInst()); in encodeInstruction()
434 const MCInst *Sub0 = MI.getOperand(0).getInst(); in encodeSingleInstruction()
435 const MCInst *Sub1 = MI.getOperand(1).getInst(); in encodeSingleInstruction()
471 if (I->getInst() != &MI) in getFixupNoBits()
474 const MCInst &NextI = *(I+1)->getInst(); in getFixupNoBits()
733 MCInst const &Inst = *I->getInst(); in getMachineOpValue()
H A DHexagonMCCompound.cpp356 MCInst const *JumpInst = J->getInst(); in lookForCompound()
367 MCInst const *Inst = B->getInst(); in lookForCompound()
H A DHexagonMCELFStreamer.cpp75 MCInst *MCI = const_cast<MCInst *>(I.getInst()); in emitInstruction()
H A DHexagonShuffler.cpp555 MCInst const &Inst0 = *ID.getOperand(0).getInst(); in GetPacketSummary()
556 MCInst const &Inst1 = *ID.getOperand(1).getInst(); in GetPacketSummary()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstrBuilder.h41 Instruction *getInst() const { return RecycledInst; } in getInst() function
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCInst.cpp41 if (const auto *Inst = getInst()) in print()
H A DMCFragment.cpp201 F->getInst().dump_pretty(OS); in dump()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp777 if (mayNeedRelaxation(RF.getInst(), *RF.getSubtargetInfo())) in padInstructionViaPrefix()
787 X86_MC::emitPrefix(Emitter, RF.getInst(), Code, STI); in padInstructionViaPrefix()
805 const uint8_t Prefix = determinePaddingPrefix(RF.getInst()); in padInstructionViaPrefix()
824 if (!mayNeedRelaxation(RF.getInst(), *RF.getSubtargetInfo())) in padInstructionViaRelaxation()
829 MCInst Relaxed = RF.getInst(); in padInstructionViaRelaxation()
938 if (mayNeedRelaxation(RF.getInst(), *RF.getSubtargetInfo())) in finishLayout()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp210 auto &MI = const_cast<MCInst &>(*I.getInst()); in remapInstruction()
488 bool CurrentVector = HexagonMCInstrInfo::isVector(*MCII, *i->getInst()); in getSingleInstruction()
492 if (HexagonMCInstrInfo::isImmext(*i->getInst()) && (Vector == PrevVector)) in getSingleInstruction()
498 auto const &Inst = *i->getInst(); in getSingleInstruction()
530 ? *MI.getOperand(1).getInst() in getSingleInstruction()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInst.h124 const MCInst *getInst() const { in getInst() function
H A DMCFragment.h274 const MCInst &getInst() const { return Inst; } in getInst() function
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp347 const MachineInstr *getInst() const { return Inst; } in getInst() function in __anon776574090111::ValueTrackerResult
380 if (Other.getInst() != getInst()) in operator ==()
1207 MachineInstr &OrigPHI = const_cast<MachineInstr &>(*Res.getInst()); in getNewSource()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDFAJumpThreading.cpp128 SelectInst *getInst() { return SI; } in getInst() function in __anonfb50cc300111::SelectInstToUnfold
208 SelectInst *SI = SIToUnfold.getInst(); in unfold()
517 SelectInst *PrevSI = SIToUnfold.getInst(); in isValidSelectInst()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h173 Instruction *getInst() const { in getInst() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURewriteOutArguments.cpp261 SI = dyn_cast<StoreInst>(Q.getInst()); in runOnFunction()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelCombinerEmitter.cpp469 auto &CGI = CGP.getInst(); in getMCOIOperandTypes()
1894 M.addAction<BuildMIAction>(M.allocateOutputInsnID(), &CGIP.getInst()); in emitInstructionApplyPattern()
2107 StringRef InstName = CGP->getInst().TheDef->getName(); in isLiteralImm()
2127 IM.addPredicate<InstructionOpcodeMatcher>(&P.getInst()); in emitCodeGenInstructionMatchPattern()
H A DGlobalISelCombinerMatchTableEmitter.cpp
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DPatterns.h455 const CodeGenInstruction &getInst() const { return I; } in getInst() function

12