Searched defs:NumDests (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2345 unsigned NumDests = Record.size()-2; local
2346 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests);
2348 for (unsigned i = 0, e = NumDests; i != e; ++i) {
/external/llvm/include/llvm/
H A DInstructions.h2867 void init(Value *Address, unsigned NumDests);
2877 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
2883 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
2887 static IndirectBrInst *Create(Value *Address, unsigned NumDests, argument
2889 return new IndirectBrInst(Address, NumDests, InsertBefore);
2891 static IndirectBrInst *Create(Value *Address, unsigned NumDests, argument
2893 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
/external/llvm/lib/VMCore/
H A DInstructions.cpp3268 void IndirectBrInst::init(Value *Address, unsigned NumDests) { argument
3271 ReservedSpace = 1+NumDests;
H A DCore.cpp1806 unsigned NumDests) {
1807 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
1805 LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr, unsigned NumDests) argument
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp2323 unsigned NumDests = Pat->getNumChildren()-1; local
2324 for (unsigned i = 0; i != NumDests; ++i) {
2349 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests),

Completed in 362 milliseconds