Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h2881 void init(Value *Address, unsigned NumDests);
2891 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
2897 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
2901 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2903 return new IndirectBrInst(Address, NumDests, InsertBefore);
2905 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
2907 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
H A DIRBuilder.h623 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
624 return Insert(IndirectBrInst::Create(Addr, NumDests));
/minix3/external/bsd/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp2565 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local
2566 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs()
2594 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), in FindPatternInputsAndOutputs()
/minix3/external/bsd/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3040 unsigned NumDests = Record.size()-2; in ParseFunctionBody() local
3041 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in ParseFunctionBody()
3043 for (unsigned i = 0, e = NumDests; i != e; ++i) { in ParseFunctionBody()
/minix3/external/bsd/llvm/dist/llvm/include/llvm-c/
H A DCore.h2650 unsigned NumDests);
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DCore.cpp2229 unsigned NumDests) { in LLVMBuildIndirectBr() argument
2230 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
H A DInstructions.cpp3533 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument
3536 ReservedSpace = 1+NumDests; in init()