Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DInstructions.h4033 ArrayRef<BasicBlock *> IndirectDests,
4039 ArrayRef<BasicBlock *> IndirectDests,
4045 ArrayRef<BasicBlock *> IndirectDests, ArrayRef<Value *> Args,
4065 ArrayRef<BasicBlock *> IndirectDests,
4068 int NumOperands = ComputeNumOperands(Args.size(), IndirectDests.size());
4070 CallBrInst(Ty, Func, DefaultDest, IndirectDests, Args, std::nullopt,
4076 ArrayRef<BasicBlock *> IndirectDests, ArrayRef<Value *> Args,
4079 int NumOperands = ComputeNumOperands(Args.size(), IndirectDests.size(),
4084 CallBrInst(Ty, Func, DefaultDest, IndirectDests, Args, Bundles,
4090 ArrayRef<BasicBlock *> IndirectDests,
[all …]
H A DIRBuilder.h1114 ArrayRef<BasicBlock *> IndirectDests,
1117 return Insert(CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests,
1122 ArrayRef<BasicBlock *> IndirectDests,
1127 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args,
1132 ArrayRef<BasicBlock *> IndirectDests,
1136 DefaultDest, IndirectDests, Args, Name);
1139 ArrayRef<BasicBlock *> IndirectDests,
1144 DefaultDest, IndirectDests, Args, Name);
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp1034 ArrayRef<BasicBlock *> IndirectDests, in init() argument
1041 ComputeNumOperands(Args.size(), IndirectDests.size(), in init()
1059 NumIndirectDests = IndirectDests.size(); in init()
1062 setIndirectDest(i, IndirectDests[i]); in init()
1067 assert(It + 2 + IndirectDests.size() == op_end() && "Should add up!"); in init()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5609 SmallVector<BasicBlock *, 16> IndirectDests; in parseFunctionBody() local
5611 IndirectDests.push_back(getBasicBlock(Record[OpNum++])); in parseFunctionBody()
5688 unsigned FirstBlockArg = Args.size() - IndirectDests.size(); in parseFunctionBody()
5693 LabelNo > IndirectDests.size() || in parseFunctionBody()
5694 BA->getBasicBlock() != IndirectDests[LabelNo]) in parseFunctionBody()
5733 I = CallBrInst::Create(FTy, Callee, DefaultDest, IndirectDests, Args, in parseFunctionBody()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp6993 SmallVector<BasicBlock *, 16> IndirectDests; in parseCallBr() local
6999 IndirectDests.push_back(DestBB); in parseCallBr()
7004 IndirectDests.push_back(DestBB); in parseCallBr()
7057 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, in parseCallBr()