Searched refs:NumDests (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/ |
D | Instructions.h | 2743 void init(Value *Address, unsigned NumDests); 2753 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 2759 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 2763 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 2765 return new IndirectBrInst(Address, NumDests, InsertBefore); 2767 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 2769 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 2304 unsigned NumDests = Record.size()-2; in ParseFunctionBody() local 2305 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in ParseFunctionBody() 2307 for (unsigned i = 0, e = NumDests; i != e; ++i) { in ParseFunctionBody()
|
/external/llvm/include/llvm/Support/ |
D | IRBuilder.h | 461 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 462 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 2334 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local 2335 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 2360 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), in FindPatternInputsAndOutputs()
|
/external/llvm/lib/VMCore/ |
D | Core.cpp | 1787 unsigned NumDests) { in LLVMBuildIndirectBr() argument 1788 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|
D | Instructions.cpp | 3238 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 3241 ReservedSpace = 1+NumDests; in init()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 2292 unsigned NumDests);
|