Searched refs:NumDests (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp226 unsigned NumDests = JTProbs.size(); local
227 if (TLI->isSuitableForBitTests(NumDests, NumCmps,
379 unsigned NumDests = Dests.count(); local
385 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL))
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h3578 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, argument
3630 return new IndirectBrInst(Address, NumDests, InsertBefore);
3633 static IndirectBrInst *Create(Value *Address, unsigned NumDests, argument
3635 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
H A DIRBuilder.h1006 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
1007 return Insert(IndirectBrInst::Create(Addr, NumDests));
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTargetLowering.h1178 /// clusters which contains \p NumDests unique destinations, \p Low and
1182 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, argument
1200 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) ||
1201 (NumDests == 3 && NumCmps >= 6);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp3451 unsigned NumDests = Pat->getNumChildren()-1; local
3452 for (unsigned i = 0; i != NumDests; ++i) {
3486 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4650 unsigned NumDests = Record.size()-2; local
4651 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests);
4653 for (unsigned i = 0, e = NumDests; i != e; ++i) {
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h3649 unsigned NumDests);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp3165 unsigned NumDests) {
3166 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
H A DInstructions.cpp4230 void IndirectBrInst::init(Value *Address, unsigned NumDests) { argument
4233 ReservedSpace = 1+NumDests;

Completed in 300 milliseconds