Searched refs:IndirectDests (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 4047 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 D | IRBuilder.h | 1193 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 D | Instructions.cpp | 885 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 D | BitcodeReader.cpp | 5655 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 D | LLParser.cpp | 7172 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()
|