Home
last modified time | relevance | path

Searched refs:InstList (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DBasicBlock.h71 InstListType InstList; variable
229 if (InstList.empty() || !InstList.back().isTerminator()) in getTerminator()
231 return &InstList.back(); in getTerminator()
438 iterator It = InstList.begin(); in begin()
446 const_iterator It = InstList.begin(); in begin()
450 inline iterator end () { return InstList.end(); } in end()
451 inline const_iterator end () const { return InstList.end(); } in end()
458 inline size_t size() const { return InstList.size(); } in size()
516 const InstListType &getInstList() const { return InstList; } in getInstList()
517 InstListType &getInstList() { return InstList; } in getInstList()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizer.cpp122 InstListTy &InstList; member in __anon760a9ff60111::LegalizerWorkListManager
130 : InstList(Insts), ArtifactList(Arts) {} in LegalizerWorkListManager()
140 InstList.insert(&MI); in createdOrChangedInstr()
159 InstList.remove(&MI); in erasingInstr()
186 InstListTy InstList; in legalizeMachineFunction() local
203 InstList.deferred_insert(&MI); in legalizeMachineFunction()
207 InstList.finalize(); in legalizeMachineFunction()
228 while (!InstList.empty()) { in legalizeMachineFunction()
229 MachineInstr &MI = *InstList.pop_back_val(); in legalizeMachineFunction()
302 InstList.insert(&MI); in legalizeMachineFunction()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DDDG.cpp109 assert(InstList.empty() && "Expected empty list."); in SimpleDDGNode()
110 InstList.push_back(&I); in SimpleDDGNode()
114 : DDGNode(N), InstList(N.InstList) { in SimpleDDGNode()
115 assert(((getKind() == NodeKind::SingleInstruction && InstList.size() == 1) || in SimpleDDGNode()
116 (getKind() == NodeKind::MultiInstruction && InstList.size() > 1)) && in SimpleDDGNode()
121 : DDGNode(std::move(N)), InstList(std::move(N.InstList)) { in SimpleDDGNode()
122 assert(((getKind() == NodeKind::SingleInstruction && InstList.size() == 1) || in SimpleDDGNode()
123 (getKind() == NodeKind::MultiInstruction && InstList.size() > 1)) && in SimpleDDGNode()
127 SimpleDDGNode::~SimpleDDGNode() { InstList.clear(); } in ~SimpleDDGNode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp109 InstList.insert(Inst.getIterator(), in convertFromNewDbgValues()
276 InstList.clear(); in ~BasicBlock()
281 InstList.setSymTabObject(&Parent, parent); in setParent()
333 if (InstList.empty()) in getTerminatingMustTailCall()
336 if (!RI || RI == &InstList.front()) in getTerminatingMustTailCall()
364 if (InstList.empty()) in getTerminatingDeoptimizeCall()
367 if (!RI || RI == &InstList.front()) in getTerminatingDeoptimizeCall()
391 if (InstList.empty()) in getFirstMayFaultInst()
613 assert(I != InstList.end() && in splitBasicBlock()
641 assert(I != InstList.end() && in splitBasicBlockBefore()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDDG.h122 InstList = std::move(N.InstList);
128 assert(!InstList.empty() && "Instruction List is empty."); in getInstructions()
129 return InstList; in getInstructions()
150 setKind((InstList.size() == 0 && Input.size() == 1) in appendInstructions()
153 llvm::append_range(InstList, Input); in appendInstructions()
160 SmallVector<Instruction *, 2> InstList; variable
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp404 const std::vector<std::string> &InstList = IE->second; in emitCaseMap() local
406 for (int i = 0, N = InstList.size(); i < N; i++) { in emitCaseMap()
409 o << " case " << InstList[i] << ":"; in emitCaseMap()
H A DVarLenCodeEmitterGen.cpp312 const auto &InstList = C.second; in run() local
315 for (const auto &InstName : InstList) in run()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsRegisterBankInfo.cpp677 InstListTy &InstList; member in __anon542e868a0111::InstManager
681 InstManager(MachineIRBuilder &B, InstListTy &Insts) : InstList(Insts), B(B) { in InstManager()
688 void createdInstr(MachineInstr &MI) override { InstList.insert(&MI); } in createdInstr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp204 using InstList = std::vector<Instruction *>; typedef in __anond9b55a8f0111::AlignVectors
238 InstList Main; // Main group of instructions.
239 InstList Deps; // List of dependencies.