Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp226 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()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DInstructions.h3690 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
3696 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
3701 void init(Value *Address, unsigned NumDests);
3740 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3742 return new IndirectBrInst(Address, NumDests, InsertBefore);
3745 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3747 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
H A DIRBuilder.h1068 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
1069 return Insert(IndirectBrInst::Create(Addr, NumDests));
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetLowering.h1259 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument
1277 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests()
1278 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp3527 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local
3528 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs()
3562 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs, in FindPatternInputsAndOutputs()
/openbsd-src/gnu/llvm/llvm/include/llvm-c/
H A DCore.h3731 unsigned NumDests);
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp4695 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument
4698 ReservedSpace = 1+NumDests; in init()
H A DCore.cpp3140 unsigned NumDests) { in LLVMBuildIndirectBr() argument
3141 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5492 unsigned NumDests = Record.size()-2; in parseFunctionBody() local
5493 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody()
5495 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()