Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp226 unsigned NumDests = JTProbs.size(); in buildJumpTable() local
227 if (TLI->isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable()
379 unsigned NumDests = Dests.count(); in buildBitTests() local
385 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL)) in buildBitTests()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h3589 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
3595 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
3600 void init(Value *Address, unsigned NumDests);
3639 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3641 return new IndirectBrInst(Address, NumDests, InsertBefore);
3644 static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3646 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
H A DIRBuilder.h1024 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) {
1025 return Insert(IndirectBrInst::Create(Addr, NumDests));
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h1187 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument
1205 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests()
1206 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp3452 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local
3453 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs()
3487 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs, in FindPatternInputsAndOutputs()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h3657 unsigned NumDests);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4617 unsigned NumDests = Record.size()-2; in parseFunctionBody() local
4618 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody()
4620 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp4250 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument
4253 ReservedSpace = 1+NumDests; in init()
H A DCore.cpp3176 unsigned NumDests) { in LLVMBuildIndirectBr() argument
3177 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()