Searched refs:NumDests (Results 1 – 7 of 7) sorted by relevance
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 2881 void init(Value *Address, unsigned NumDests); 2891 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 2897 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 2901 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 2903 return new IndirectBrInst(Address, NumDests, InsertBefore); 2905 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 2907 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
| H A D | IRBuilder.h | 623 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 624 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
| /minix3/external/bsd/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 2565 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local 2566 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 2594 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), in FindPatternInputsAndOutputs()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 3040 unsigned NumDests = Record.size()-2; in ParseFunctionBody() local 3041 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in ParseFunctionBody() 3043 for (unsigned i = 0, e = NumDests; i != e; ++i) { in ParseFunctionBody()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm-c/ |
| H A D | Core.h | 2650 unsigned NumDests);
|
| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | Core.cpp | 2229 unsigned NumDests) { in LLVMBuildIndirectBr() argument 2230 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|
| H A D | Instructions.cpp | 3533 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 3536 ReservedSpace = 1+NumDests; in init()
|