Home
last modified time | relevance | path

Searched refs:IndirectDests (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h3739 ArrayRef<BasicBlock *> IndirectDests,
3745 ArrayRef<BasicBlock *> IndirectDests, ArrayRef<Value *> Args,
3765 ArrayRef<BasicBlock *> IndirectDests,
3768 int NumOperands = ComputeNumOperands(Args.size(), IndirectDests.size());
3770 CallBrInst(Ty, Func, DefaultDest, IndirectDests, Args, std::nullopt,
3776 ArrayRef<BasicBlock *> IndirectDests, ArrayRef<Value *> Args,
3779 int NumOperands = ComputeNumOperands(Args.size(), IndirectDests.size(),
3784 CallBrInst(Ty, Func, DefaultDest, IndirectDests, Args, Bundles,
3789 ArrayRef<BasicBlock *> IndirectDests,
3793 IndirectDests, Args, NameStr, InsertBefore);
[all …]
H A DIRBuilder.h1204 ArrayRef<BasicBlock *> IndirectDests,
1207 return Insert(CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests,
1212 ArrayRef<BasicBlock *> IndirectDests,
1217 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args,
1222 ArrayRef<BasicBlock *> IndirectDests,
1226 DefaultDest, IndirectDests, Args, Name);
1229 ArrayRef<BasicBlock *> IndirectDests,
1234 DefaultDest, IndirectDests, Args, Name);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp852 ArrayRef<BasicBlock *> IndirectDests, in init() argument
859 ComputeNumOperands(Args.size(), IndirectDests.size(), in init()
877 NumIndirectDests = IndirectDests.size(); in init()
880 setIndirectDest(i, IndirectDests[i]); in init()
885 assert(It + 2 + IndirectDests.size() == op_end() && "Should add up!"); in init()
H A DCore.cpp3370 LLVMBasicBlockRef *IndirectDests, in LLVMBuildCallBr() argument
3383 ArrayRef(unwrap(IndirectDests), NumIndirectDests), in LLVMBuildCallBr()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5832 SmallVector<BasicBlock *, 16> IndirectDests; in parseFunctionBody() local
5834 IndirectDests.push_back(getBasicBlock(Record[OpNum++])); in parseFunctionBody()
5909 unsigned FirstBlockArg = Args.size() - IndirectDests.size(); in parseFunctionBody()
5914 LabelNo > IndirectDests.size() || in parseFunctionBody()
5915 BA->getBasicBlock() != IndirectDests[LabelNo]) in parseFunctionBody()
5954 I = CallBrInst::Create(FTy, Callee, DefaultDest, IndirectDests, Args, in parseFunctionBody()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h4182 LLVMBasicBlockRef *IndirectDests,
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp7607 SmallVector<BasicBlock *, 16> IndirectDests; in parseCallBr() local
7613 IndirectDests.push_back(DestBB); in parseCallBr()
7618 IndirectDests.push_back(DestBB); in parseCallBr()
7671 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, in parseCallBr()