Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DInstructions.h3240 void init(Value *Address, unsigned NumDests);
3250 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
3256 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
3264 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3266 return new IndirectBrInst(Address, NumDests, InsertBefore);
3268 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3270 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
DIRBuilder.h664 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
665 return Insert(IndirectBrInst::Create(Addr, NumDests));
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h328 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
DSelectionDAGBuilder.cpp7729 unsigned NumDests = JTProbs.size(); in buildJumpTable() local
7730 if (isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable()
7888 bool SelectionDAGBuilder::isSuitableForBitTests(unsigned NumDests, in isSuitableForBitTests() argument
7906 return (NumDests == 1 && NumCmps >= 3) || in isSuitableForBitTests()
7907 (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests()
7908 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
7926 unsigned NumDests = Dests.count(); in buildBitTests() local
7932 if (!isSuitableForBitTests(NumDests, NumCmps, Low, High)) in buildBitTests()
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp2702 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local
2703 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs()
2731 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), in FindPatternInputsAndOutputs()
/external/llvm/include/llvm-c/
DCore.h2583 unsigned NumDests);
/external/llvm/lib/IR/
DCore.cpp2252 unsigned NumDests) { in LLVMBuildIndirectBr() argument
2253 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
DInstructions.cpp3695 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument
3698 ReservedSpace = 1+NumDests; in init()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp4631 unsigned NumDests = Record.size()-2; in parseFunctionBody() local
4632 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody()
4634 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()