Searched refs:NumDests (Results 1 – 9 of 9) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 3240 void init(Value *Address, unsigned NumDests); 3250 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 3256 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 3264 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3266 return new IndirectBrInst(Address, NumDests, InsertBefore); 3268 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3270 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
D | IRBuilder.h | 664 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 665 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 328 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
|
D | SelectionDAGBuilder.cpp | 7729 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 7730 if (isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 7888 bool SelectionDAGBuilder::isSuitableForBitTests(unsigned NumDests, in isSuitableForBitTests() argument 7906 return (NumDests == 1 && NumCmps >= 3) || in isSuitableForBitTests() 7907 (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 7908 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests() 7926 unsigned NumDests = Dests.count(); in buildBitTests() local 7932 if (!isSuitableForBitTests(NumDests, NumCmps, Low, High)) in buildBitTests()
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 2702 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local 2703 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 2731 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), in FindPatternInputsAndOutputs()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 2583 unsigned NumDests);
|
/external/llvm/lib/IR/ |
D | Core.cpp | 2252 unsigned NumDests) { in LLVMBuildIndirectBr() argument 2253 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|
D | Instructions.cpp | 3695 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 3698 ReservedSpace = 1+NumDests; in init()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 4631 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 4632 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 4634 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|