Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h4047 ArrayRef<BasicBlock *> IndirectDests,
4053 ArrayRef<BasicBlock *> IndirectDests,
4079 ArrayRef<BasicBlock *> IndirectDests,
4104 ArrayRef<BasicBlock *> IndirectDests,
4133 IndirectDests, Args, NameStr, InsertBefore);
4151 IndirectDests, Args, NameStr, InsertAtEnd);
4198 SmallVector<BasicBlock *, 16> IndirectDests;
4200 IndirectDests.push_back(getIndirectDest(i));
4201 return IndirectDests;
4242 ArrayRef<BasicBlock *> IndirectDests,
[all …]
H A DIRBuilder.h1193 ArrayRef<BasicBlock *> IndirectDests,
1196 return Insert(CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests,
1201 ArrayRef<BasicBlock *> IndirectDests,
1206 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args,
1211 ArrayRef<BasicBlock *> IndirectDests,
1215 DefaultDest, IndirectDests, Args, Name);
1218 ArrayRef<BasicBlock *> IndirectDests,
1223 DefaultDest, IndirectDests, Args, Name);
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp885 ArrayRef<BasicBlock *> IndirectDests, in init() argument
892 ComputeNumOperands(Args.size(), IndirectDests.size(), in init()
910 NumIndirectDests = IndirectDests.size(); in init()
913 setIndirectDest(i, IndirectDests[i]); in init()
918 assert(It + 2 + IndirectDests.size() == op_end() && "Should add up!"); in init()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5655 SmallVector<BasicBlock *, 16> IndirectDests; in parseFunctionBody() local
5657 IndirectDests.push_back(getBasicBlock(Record[OpNum++])); in parseFunctionBody()
5732 unsigned FirstBlockArg = Args.size() - IndirectDests.size(); in parseFunctionBody()
5737 LabelNo > IndirectDests.size() || in parseFunctionBody()
5738 BA->getBasicBlock() != IndirectDests[LabelNo]) in parseFunctionBody()
5777 I = CallBrInst::Create(FTy, Callee, DefaultDest, IndirectDests, Args, in parseFunctionBody()
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp7172 SmallVector<BasicBlock *, 16> IndirectDests; in parseCallBr() local
7178 IndirectDests.push_back(DestBB); in parseCallBr()
7183 IndirectDests.push_back(DestBB); in parseCallBr()
7236 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, in parseCallBr()