Searched refs:NumDests (Results 1 – 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SwitchLoweringUtils.cpp | 223 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 224 if (TLI->isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 376 unsigned NumDests = Dests.count(); in buildBitTests() local 382 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL)) in buildBitTests()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Instructions.h | 3538 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 3544 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 3551 void init(Value *Address, unsigned NumDests); 3588 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3590 return new IndirectBrInst(Address, NumDests, InsertBefore); 3593 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3595 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
D | IRBuilder.h | 1010 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 1011 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetLowering.h | 1026 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument 1044 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 1045 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | Core.h | 3589 unsigned NumDests);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 4454 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 4455 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 4457 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 4011 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 4014 ReservedSpace = 1+NumDests; in init()
|
D | Core.cpp | 3104 unsigned NumDests) { in LLVMBuildIndirectBr() argument 3105 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|