Home
last modified time | relevance | path

Searched refs:TypeEntry (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBTFDebug.cpp410 uint32_t BTFDebug::addType(std::unique_ptr<BTFTypeBase> TypeEntry, in addType() argument
412 TypeEntry->setId(TypeEntries.size() + 1); in addType()
413 uint32_t Id = TypeEntry->getId(); in addType()
415 TypeEntries.push_back(std::move(TypeEntry)); in addType()
419 uint32_t BTFDebug::addType(std::unique_ptr<BTFTypeBase> TypeEntry) { in addType() argument
420 TypeEntry->setId(TypeEntries.size() + 1); in addType()
421 uint32_t Id = TypeEntry->getId(); in addType()
422 TypeEntries.push_back(std::move(TypeEntry)); in addType()
429 std::unique_ptr<BTFTypeBase> TypeEntry; in visitBasicType() local
438 TypeEntry = std::make_unique<BTFTypeInt>( in visitBasicType()
[all …]
H A DBTFDebug.h275 uint32_t addType(std::unique_ptr<BTFTypeBase> TypeEntry, const DIType *Ty);
277 uint32_t addType(std::unique_ptr<BTFTypeBase> TypeEntry);
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp409 DenseMap<unsigned, unsigned> TypeEntry; in FactorNodes() local
420 unsigned &Entry = TypeEntry[CTMTy]; in FactorNodes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86InstructionSelector.cpp1586 const DivRemEntry &TypeEntry = *OpEntryIt; in selectDivRem() local
1587 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex]; in selectDivRem()
1600 TypeEntry.LowInReg) in selectDivRem()
1617 TypeEntry.HighInReg) in selectDivRem()
1621 TypeEntry.HighInReg) in selectDivRem()
1625 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg) in selectDivRem()
H A DX86FastISel.cpp1952 const DivRemEntry &TypeEntry = OpTable[TypeIndex]; in X86SelectDivRem() local
1953 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex]; in X86SelectDivRem()
1963 TII.get(OpEntry.OpCopy), TypeEntry.LowInReg).addReg(Op0Reg); in X86SelectDivRem()
1979 TII.get(Copy), TypeEntry.HighInReg) in X86SelectDivRem()
1983 TII.get(Copy), TypeEntry.HighInReg) in X86SelectDivRem()
1987 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg) in X86SelectDivRem()
2022 ResultReg = createResultReg(TypeEntry.RC); in X86SelectDivRem()