Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/BPF/
H A DBTFDebug.cpp513 uint32_t BTFDebug::addType(std::unique_ptr<BTFTypeBase> TypeEntry, in addType() argument
515 TypeEntry->setId(TypeEntries.size() + 1); in addType()
516 uint32_t Id = TypeEntry->getId(); in addType()
518 TypeEntries.push_back(std::move(TypeEntry)); in addType()
522 uint32_t BTFDebug::addType(std::unique_ptr<BTFTypeBase> TypeEntry) { in addType() argument
523 TypeEntry->setId(TypeEntries.size() + 1); in addType()
524 uint32_t Id = TypeEntry->getId(); in addType()
525 TypeEntries.push_back(std::move(TypeEntry)); in addType()
532 std::unique_ptr<BTFTypeBase> TypeEntry; in visitBasicType() local
541 TypeEntry = std::make_unique<BTFTypeInt>( in visitBasicType()
[all …]
H A DBTFDebug.h314 uint32_t addType(std::unique_ptr<BTFTypeBase> TypeEntry, const DIType *Ty);
316 uint32_t addType(std::unique_ptr<BTFTypeBase> TypeEntry);
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp409 DenseMap<unsigned, unsigned> TypeEntry; in FactorNodes() local
420 unsigned &Entry = TypeEntry[CTMTy]; in FactorNodes()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86InstructionSelector.cpp1624 const DivRemEntry &TypeEntry = *OpEntryIt; in selectDivRem() local
1625 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex]; in selectDivRem()
1638 TypeEntry.LowInReg) in selectDivRem()
1655 TypeEntry.HighInReg) in selectDivRem()
1659 TypeEntry.HighInReg) in selectDivRem()
1663 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg) in selectDivRem()
H A DX86FastISel.cpp1945 const DivRemEntry &TypeEntry = OpTable[TypeIndex]; in X86SelectDivRem() local
1946 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex]; in X86SelectDivRem()
1956 TII.get(OpEntry.OpCopy), TypeEntry.LowInReg).addReg(Op0Reg); in X86SelectDivRem()
1972 TII.get(Copy), TypeEntry.HighInReg) in X86SelectDivRem()
1976 TII.get(Copy), TypeEntry.HighInReg) in X86SelectDivRem()
1980 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg) in X86SelectDivRem()
2015 ResultReg = createResultReg(TypeEntry.RC); in X86SelectDivRem()