Searched refs:NumDests (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SwitchLoweringUtils.cpp | 229 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 230 if (TLI->isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 382 unsigned NumDests = Dests.count(); in buildBitTests() local 388 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL)) in buildBitTests()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetLowering.h | 1401 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument 1419 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 1420 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instructions.h | 3455 IndirectBrInst(Value *Address, unsigned NumDests, 3461 void init(Value *Address, unsigned NumDests); 3500 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3502 return new IndirectBrInst(Address, NumDests, InsertBefore);
|
H A D | IRBuilder.h | 1158 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 1159 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenDAGPatterns.cpp | 3511 unsigned NumDests = Pat->getNumChildren() - 1; in FindPatternInputsAndOutputs() local 3512 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 3546 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs, in FindPatternInputsAndOutputs()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instructions.cpp | 4107 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 4110 ReservedSpace = 1+NumDests; in init()
|
H A D | Core.cpp | 3364 unsigned NumDests) { in LLVMBuildIndirectBr() argument 3365 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Core.h | 4179 unsigned NumDests);
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 5717 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 5718 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 5720 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|