Searched refs:IndirectDests (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 3995 ArrayRef<BasicBlock *> IndirectDests, 4001 ArrayRef<BasicBlock *> IndirectDests, 4027 ArrayRef<BasicBlock *> IndirectDests, 4038 ArrayRef<BasicBlock *> IndirectDests, 4083 IndirectDests, Args, NameStr, InsertBefore); 4101 IndirectDests, Args, NameStr, InsertAtEnd); 4148 SmallVector<BasicBlock *, 16> IndirectDests; 4150 IndirectDests.push_back(getIndirectDest(i)); 4151 return IndirectDests; 4194 ArrayRef<BasicBlock *> IndirectDests, [all …]
|
| H A D | IRBuilder.h | 1069 ArrayRef<BasicBlock *> IndirectDests, 1072 return Insert(CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, 1077 ArrayRef<BasicBlock *> IndirectDests, 1082 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, 1087 ArrayRef<BasicBlock *> IndirectDests, 1091 DefaultDest, IndirectDests, Args, Name); 1094 ArrayRef<BasicBlock *> IndirectDests, 1099 DefaultDest, IndirectDests, Args, Name);
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Instructions.cpp | 925 ArrayRef<BasicBlock *> IndirectDests, in init() argument 932 ComputeNumOperands(Args.size(), IndirectDests.size(), in init() 950 NumIndirectDests = IndirectDests.size(); in init() 953 setIndirectDest(i, IndirectDests[i]); in init() 958 assert(It + 2 + IndirectDests.size() == op_end() && "Should add up!"); in init()
|
| /llvm-project-15.0.7/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 5444 SmallVector<BasicBlock *, 16> IndirectDests; in parseFunctionBody() local 5446 IndirectDests.push_back(getBasicBlock(Record[OpNum++])); in parseFunctionBody() 5523 unsigned FirstBlockArg = Args.size() - IndirectDests.size(); in parseFunctionBody() 5528 LabelNo > IndirectDests.size() || in parseFunctionBody() 5529 BA->getBasicBlock() != IndirectDests[LabelNo]) in parseFunctionBody() 5568 I = CallBrInst::Create(FTy, Callee, DefaultDest, IndirectDests, Args, in parseFunctionBody()
|
| /llvm-project-15.0.7/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 6700 SmallVector<BasicBlock *, 16> IndirectDests; in parseCallBr() local 6706 IndirectDests.push_back(DestBB); in parseCallBr() 6711 IndirectDests.push_back(DestBB); in parseCallBr() 6776 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, in parseCallBr()
|