Searched refs:NumDests (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 960 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument 978 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 979 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 3477 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 3483 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 3490 void init(Value *Address, unsigned NumDests); 3527 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3529 return new IndirectBrInst(Address, NumDests, InsertBefore); 3532 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3534 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
| H A D | IRBuilder.h | 887 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 888 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 3276 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local 3277 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 3311 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs, in FindPatternInputsAndOutputs()
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 4145 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 4146 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 4148 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|
| /freebsd-12.1/contrib/llvm/include/llvm-c/ |
| H A D | Core.h | 3405 unsigned NumDests);
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Instructions.cpp | 3721 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 3724 ReservedSpace = 1+NumDests; in init()
|
| H A D | Core.cpp | 2974 unsigned NumDests) { in LLVMBuildIndirectBr() argument 2975 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 9499 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 9501 NumDests, NumCmps, Clusters[First].Low->getValue(), in buildJumpTable() 9692 unsigned NumDests = Dests.count(); in buildBitTests() local 9700 if (!TLI.isSuitableForBitTests(NumDests, NumCmps, Low, High, DL)) in buildBitTests()
|