Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h3921 ArrayRef<BasicBlock *> IndirectDests,
3927 ArrayRef<BasicBlock *> IndirectDests,
3933 ArrayRef<BasicBlock *> IndirectDests, ArrayRef<Value *> Args,
3956 ArrayRef<BasicBlock *> IndirectDests,
3959 int NumOperands = ComputeNumOperands(Args.size(), IndirectDests.size());
3961 CallBrInst(Ty, Func, DefaultDest, IndirectDests, Args, None,
3967 ArrayRef<BasicBlock *> IndirectDests,
3972 int NumOperands = ComputeNumOperands(Args.size(), IndirectDests.size(),
3977 CallBrInst(Ty, Func, DefaultDest, IndirectDests, Args, Bundles,
3983 ArrayRef<BasicBlock *> IndirectDests,
[all …]
H A DIRBuilder.h1052 ArrayRef<BasicBlock *> IndirectDests,
1055 return Insert(CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests,
1060 ArrayRef<BasicBlock *> IndirectDests,
1065 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args,
1070 ArrayRef<BasicBlock *> IndirectDests,
1074 DefaultDest, IndirectDests, Args, Name);
1077 ArrayRef<BasicBlock *> IndirectDests,
1082 DefaultDest, IndirectDests, Args, Name);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstructions.cpp885 ArrayRef<BasicBlock *> IndirectDests, in init() argument
892 ComputeNumOperands(Args.size(), IndirectDests.size(), in init()
895 NumIndirectDests = IndirectDests.size(); in init()
898 setIndirectDest(i, IndirectDests[i]); in init()
916 assert(It + 2 + IndirectDests.size() == op_end() && "Should add up!"); in init()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp6876 SmallVector<BasicBlock *, 16> IndirectDests; in parseCallBr() local
6882 IndirectDests.push_back(DestBB); in parseCallBr()
6887 IndirectDests.push_back(DestBB); in parseCallBr()
6953 CallBrInst::Create(Ty, Callee, DefaultDest, IndirectDests, Args, in parseCallBr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4758 SmallVector<BasicBlock *, 16> IndirectDests; in parseFunctionBody() local
4760 IndirectDests.push_back(getBasicBlock(Record[OpNum++])); in parseFunctionBody()
4816 I = CallBrInst::Create(FTy, Callee, DefaultDest, IndirectDests, Args, in parseFunctionBody()