Searched refs:NumDests (Results 1 – 9 of 9) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | SwitchLoweringUtils.cpp | 226 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 227 if (TLI->isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 379 unsigned NumDests = Dests.count(); in buildBitTests() local 385 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL)) in buildBitTests()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 3578 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 3584 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 3591 void init(Value *Address, unsigned NumDests); 3628 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3630 return new IndirectBrInst(Address, NumDests, InsertBefore); 3633 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3635 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
| H A D | IRBuilder.h | 1006 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 1007 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 1182 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument 1200 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 1201 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 3451 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local 3452 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 3486 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs, in FindPatternInputsAndOutputs()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/ |
| H A D | Core.h | 3649 unsigned NumDests);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 4650 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 4651 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 4653 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | Core.cpp | 3165 unsigned NumDests) { in LLVMBuildIndirectBr() argument 3166 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|
| H A D | Instructions.cpp | 4230 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 4233 ReservedSpace = 1+NumDests; in init()
|