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

/external/llvm/include/llvm/IR/
H A 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);
H A DIRBuilder.h664 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
665 return Insert(IndirectBrInst::Create(Addr, NumDests));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h328 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
H A DSelectionDAGBuilder.cpp7729 unsigned NumDests = JTProbs.size();
7730 if (isSuitableForBitTests(NumDests, NumCmps,
7888 bool SelectionDAGBuilder::isSuitableForBitTests(unsigned NumDests,
7906 return (NumDests == 1 && NumCmps >= 3) ||
7907 (NumDests == 2 && NumCmps >= 5) ||
7908 (NumDests == 3 && NumCmps >= 6);
7926 unsigned NumDests = Dests.count();
7932 if (!isSuitableForBitTests(NumDests, NumCmps, Low, High))
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp2702 unsigned NumDests = Pat->getNumChildren()-1; local
2703 for (unsigned i = 0; i != NumDests; ++i) {
2731 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests),
/external/llvm/include/llvm-c/
H A DCore.h2583 unsigned NumDests);
/external/llvm/lib/IR/
H A DCore.cpp2252 unsigned NumDests) {
2253 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
2251 LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr, unsigned NumDests) argument
H A DInstructions.cpp3695 void IndirectBrInst::init(Value *Address, unsigned NumDests) {
3698 ReservedSpace = 1+NumDests;
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4631 unsigned NumDests = Record.size()-2; local
4632 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests);
4634 for (unsigned i = 0, e = NumDests; i != e; ++i) {

Completed in 1106 milliseconds