Home
last modified time | relevance | path

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

/external/llvm/include/llvm/
DInstructions.h2743 void init(Value *Address, unsigned NumDests);
2753 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
2759 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
2763 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2765 return new IndirectBrInst(Address, NumDests, InsertBefore);
2767 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2769 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2304 unsigned NumDests = Record.size()-2; in ParseFunctionBody() local
2305 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in ParseFunctionBody()
2307 for (unsigned i = 0, e = NumDests; i != e; ++i) { in ParseFunctionBody()
/external/llvm/include/llvm/Support/
DIRBuilder.h461 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
462 return Insert(IndirectBrInst::Create(Addr, NumDests));
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp2334 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local
2335 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs()
2360 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), in FindPatternInputsAndOutputs()
/external/llvm/lib/VMCore/
DCore.cpp1787 unsigned NumDests) { in LLVMBuildIndirectBr() argument
1788 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
DInstructions.cpp3238 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument
3241 ReservedSpace = 1+NumDests; in init()
/external/llvm/include/llvm-c/
DCore.h2292 unsigned NumDests);