Home
last modified time | relevance | path

Searched refs:getNumIndirectDests (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCallBrPrepare.cpp145 if (!CBR->getNumIndirectDests()) in InsertIntrinsicCalls()
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.cpp436 if (LI.getNumIndirectDests() != RI.getNumIndirectDests()) { in diff()
444 for (unsigned I = 0; I < LI.getNumIndirectDests(); I++) in diff()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h3965 unsigned getNumIndirectDests() const { return NumIndirectDests; }
3970 assert(i < getNumIndirectDests() && "Out of bounds!");
3975 assert(i < getNumIndirectDests() && "Out of bounds!");
3981 return cast<BasicBlock>(*(&Op<-1>() - getNumIndirectDests() - 1));
3984 return cast_or_null<BasicBlock>(*(&Op<-1>() - getNumIndirectDests() + i));
3988 for (unsigned i = 0, e = getNumIndirectDests(); i < e; ++i)
3993 *(&Op<-1>() - getNumIndirectDests() - 1) = reinterpret_cast<Value *>(B);
3996 *(&Op<-1>() - getNumIndirectDests() + i) = reinterpret_cast<Value *>(B);
4006 assert(i < getNumIndirectDests() + 1 &&
4011 unsigned getNumSuccessors() const { return getNumIndirectDests() + 1; }
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DInstruction.h1499 unsigned getNumIndirectDests() const { in getNumIndirectDests() function
1500 return cast<llvm::CallBrInst>(Val)->getNumIndirectDests(); in getNumIndirectDests()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3370 Vals.push_back(CBI->getNumIndirectDests()); in writeInstruction()
3371 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i) in writeInstruction()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp332 return cast<CallBrInst>(this)->getNumIndirectDests() + 1; in getNumSubclassExtraOperandsDynamic()
H A DAsmWriter.cpp4720 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i) { in printInstruction()
H A DCore.cpp3156 return unwrap<CallBrInst>(CallBr)->getNumIndirectDests(); in LLVMGetCallBrNumIndirectDests()
H A DVerifier.cpp2674 Check(LabelNo == CallBr->getNumIndirectDests(), in verifyInlineAsmCall()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3493 for (unsigned i = 0, e = I.getNumIndirectDests(); i < e; ++i) { in visitCallBr()