Searched refs:IndirectDests (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 3932 ArrayRef<BasicBlock *> IndirectDests, 3938 ArrayRef<BasicBlock *> IndirectDests, 3967 ArrayRef<BasicBlock *> IndirectDests, 3978 ArrayRef<BasicBlock *> IndirectDests, 4023 IndirectDests, Args, NameStr, InsertBefore); 4041 IndirectDests, Args, NameStr, InsertAtEnd); 4090 SmallVector<BasicBlock *, 16> IndirectDests; 4092 IndirectDests.push_back(getIndirectDest(i)); 4093 return IndirectDests; 4135 ArrayRef<BasicBlock *> IndirectDests, [all …]
|
| H A D | IRBuilder.h | 1070 ArrayRef<BasicBlock *> IndirectDests, 1073 return Insert(CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, 1078 ArrayRef<BasicBlock *> IndirectDests, 1083 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, 1088 ArrayRef<BasicBlock *> IndirectDests, 1092 DefaultDest, IndirectDests, Args, Name); 1095 ArrayRef<BasicBlock *> IndirectDests, 1100 DefaultDest, IndirectDests, Args, Name);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instructions.cpp | 893 ArrayRef<BasicBlock *> IndirectDests, in init() argument 900 ComputeNumOperands(Args.size(), IndirectDests.size(), in init() 918 NumIndirectDests = IndirectDests.size(); in init() 921 setIndirectDest(i, IndirectDests[i]); in init() 926 assert(It + 2 + IndirectDests.size() == op_end() && "Should add up!"); in init()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 6577 SmallVector<BasicBlock *, 16> IndirectDests; in parseCallBr() local 6583 IndirectDests.push_back(DestBB); in parseCallBr() 6588 IndirectDests.push_back(DestBB); in parseCallBr() 6654 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, in parseCallBr()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 4719 SmallVector<BasicBlock *, 16> IndirectDests; in parseFunctionBody() local 4721 IndirectDests.push_back(getBasicBlock(Record[OpNum++])); in parseFunctionBody() 4773 I = CallBrInst::Create(FTy, Callee, DefaultDest, IndirectDests, Args, in parseFunctionBody()
|