Home
last modified time | relevance | path

Searched refs:TypeEntries (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.h323 return reinterpret_cast<std::atomic<TypeEntry *> *>(&TypeEntries[Idx]) in getDieTypeEntry()
339 &TypeEntries[getOrigUnit().getDIEIndex(InputDieEntry)]) in getDieTypeEntry()
353 reinterpret_cast<std::atomic<TypeEntry *> *>(&TypeEntries[Idx]) in setDieTypeEntry()
362 &TypeEntries[getOrigUnit().getDIEIndex(InputDieEntry)]) in setDieTypeEntry()
722 SmallVector<TypeEntry *> TypeEntries; variable
H A DDWARFLinkerCompileUnit.cpp105 llvm::fill(TypeEntries, nullptr); in maybeResetToLoadedStage()
120 TypeEntries.resize(getOrigUnit().getNumDIEs()); in loadInputDIEs()
243 TypeEntries = SmallVector<TypeEntry *>(); in cleanupDataAfterClonning()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp583 TypeEntry->setId(TypeEntries.size() + 1); in addType()
586 TypeEntries.push_back(std::move(TypeEntry)); in addType()
591 TypeEntry->setId(TypeEntries.size() + 1); in addType()
593 TypeEntries.push_back(std::move(TypeEntry)); in addType()
1153 if (!TypeEntries.size() && StringTable.getSize() == 1) in emitBTFSection()
1166 for (const auto &TypeEntry : TypeEntries) in emitBTFSection()
1176 for (const auto &TypeEntry : TypeEntries) in emitBTFSection()
1340 for (const auto &TypeEntry : TypeEntries) in beginFunctionImpl()
1370 for (const auto &TypeEntry : TypeEntries) in populateType()
1773 for (const auto &TypeEntry : TypeEntries) in endModule()
H A DBTFDebug.h297 std::vector<std::unique_ptr<BTFTypeBase>> TypeEntries; variable