HomeSort by: relevance | last modified time | path
    Searched refs:NumDests (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SwitchLoweringUtils.cpp 226 unsigned NumDests = JTProbs.size();
227 if (TLI->isSuitableForBitTests(NumDests, NumCmps,
379 unsigned NumDests = Dests.count();
385 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL))
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 3578 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
3584 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
3591 void init(Value *Address, unsigned NumDests);
3628 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3630 return new IndirectBrInst(Address, NumDests, InsertBefore);
3633 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3635 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
IRBuilder.h 1006 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
1007 return Insert(IndirectBrInst::Create(Addr, NumDests));
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetLowering.h 1178 /// clusters which contains \p NumDests unique destinations, \p Low and
1182 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
1200 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) ||
1201 (NumDests == 3 && NumCmps >= 6);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 3451 unsigned NumDests = Pat->getNumChildren()-1;
3452 for (unsigned i = 0; i != NumDests; ++i) {
3486 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs,
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4650 unsigned NumDests = Record.size()-2;
4651 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests);
4653 for (unsigned i = 0, e = NumDests; i != e; ++i) {
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
Core.h 3649 unsigned NumDests);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Core.cpp 3165 unsigned NumDests) {
3166 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
Instructions.cpp 4230 void IndirectBrInst::init(Value *Address, unsigned NumDests) {
4233 ReservedSpace = 1+NumDests;

Completed in 58 milliseconds