Home
last modified time | relevance | path

Searched refs:EntryType (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp83 using EntryType = FormatEntity::Entry::Type; typedef
88 Definition("*", EntryType::ParentString)};
91 Definition("load", EntryType::AddressLoad),
100 Definition("index", EntryType::FrameIndex),
112 Definition("id", EntryType::FunctionID),
139 Definition("id", EntryType::ProcessID),
145 Definition("*", EntryType::ParentString)};
148 Definition("*", EntryType::ParentString)};
151 Definition("id", EntryType::ThreadID),
157 Definition("name", EntryType::ThreadName),
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DDebugMacros.h26 enum EntryType : uint8_t { enum
46 EntryType GetType() const { return static_cast<EntryType>(m_type); } in GetType()
59 DebugMacroEntry(EntryType type, uint32_t line, uint32_t debug_line_file_idx,
62 DebugMacroEntry(EntryType type, const DebugMacrosSP &debug_macros_sp);
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DAuxVector.h25 enum EntryType { enum
64 llvm::Optional<uint64_t> GetAuxValue(enum EntryType entry_type) const;
66 const char *GetEntryName(EntryType type) const;
H A DAuxVector.cpp33 AuxVector::GetAuxValue(enum EntryType entry_type) const { in GetAuxValue()
47 GetEntryName(static_cast<EntryType>(entry.first)), entry.first, in DumpToLog()
52 const char *AuxVector::GetEntryName(EntryType type) const { in GetEntryName()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h194 template <typename EntryType> struct ListEntries {
195 Optional<std::vector<EntryType>> Entries;
199 template <typename EntryType> struct ListTable {
207 std::vector<ListEntries<EntryType>> Lists;
354 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR()
355 struct MappingTraits<DWARFYAML::ListTable<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
356 static void mapping(IO &IO, DWARFYAML::ListTable<EntryType> &ListTable); in LLVM_YAML_IS_SEQUENCE_VECTOR()
359 template <typename EntryType> in LLVM_YAML_IS_SEQUENCE_VECTOR()
360 struct MappingTraits<DWARFYAML::ListEntries<EntryType>> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
361 static void mapping(IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries); in LLVM_YAML_IS_SEQUENCE_VECTOR()
[all …]
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp299 template <typename EntryType>
300 void MappingTraits<DWARFYAML::ListEntries<EntryType>>::mapping( in mapping()
301 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in mapping()
306 template <typename EntryType>
307 std::string MappingTraits<DWARFYAML::ListEntries<EntryType>>::validate( in validate()
308 IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries) { in validate()
314 template <typename EntryType>
315 void MappingTraits<DWARFYAML::ListTable<EntryType>>::mapping( in mapping()
316 IO &IO, DWARFYAML::ListTable<EntryType> &ListTable) { in mapping()
H A DDWARFEmitter.cpp909 template <typename EntryType>
911 ArrayRef<DWARFYAML::ListTable<EntryType>> Tables, in writeDWARFLists()
913 for (const DWARFYAML::ListTable<EntryType> &Table : Tables) { in writeDWARFLists()
936 for (const DWARFYAML::ListEntries<EntryType> &List : Table.Lists) { in writeDWARFLists()
942 for (const EntryType &Entry : *List.Entries) { in writeDWARFLists()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DDebugMacros.cpp15 DebugMacroEntry::DebugMacroEntry(EntryType type, uint32_t line, in DebugMacroEntry()
20 DebugMacroEntry::DebugMacroEntry(EntryType type, in DebugMacroEntry()
/llvm-project-15.0.7/mlir/include/mlir/Support/
H A DTiming.h46 using EntryType = llvm::StringMapEntry<llvm::NoneType>; variable
67 const EntryType *entry;
68 explicit TimingIdentifier(const EntryType *entry) : entry(entry) {} in TimingIdentifier()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclTemplate.h781 template <typename EntryType> struct SpecEntryTraits {
782 using DeclType = EntryType;
784 static DeclType *getDecl(EntryType *D) { in getDecl()
793 template <typename EntryType, typename SETraits = SpecEntryTraits<EntryType>,
797 SpecIterator<EntryType, SETraits, DeclType>,
800 EntryType>::iterator>::iterator_category,
814 template <typename EntryType>
815 static SpecIterator<EntryType>
822 template <class EntryType, typename ...ProfileArguments>
823 typename SpecEntryTraits<EntryType>::DeclType*
[all …]
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclTemplate.cpp304 template<class EntryType, typename... ProfileArguments>
305 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType *
307 llvm::FoldingSetVector<EntryType> &Specs, void *&InsertPos, in findSpecializationImpl()
309 using SETraits = SpecEntryTraits<EntryType>; in findSpecializationImpl()
312 EntryType::Profile(ID, std::forward<ProfileArguments>(ProfileArgs)..., in findSpecializationImpl()
314 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos); in findSpecializationImpl()
318 template<class Derived, class EntryType>
320 llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry, in addSpecializationImpl()
322 using SETraits = SpecEntryTraits<EntryType>; in addSpecializationImpl()
335 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h43 enum EntryType { enum
50 enum EntryType EntryKind;
/llvm-project-15.0.7/lldb/source/Plugins/Process/POSIX/
H A DNativeProcessELF.h25 llvm::Optional<uint64_t> GetAuxValue(enum AuxVector::EntryType type);
H A DNativeProcessELF.cpp16 NativeProcessELF::GetAuxValue(enum AuxVector::EntryType type) { in GetAuxValue()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h38 using EntryType = ListEntryType; variable
39 using ListEntries = std::vector<EntryType>;
/llvm-project-15.0.7/lldb/unittests/Process/POSIX/
H A DNativeProcessELFTest.cpp35 llvm::ArrayRef<std::pair<AuxVector::EntryType, uint32_t>> auxv_data) { in CreateAuxvData() argument
/llvm-project-15.0.7/bolt/include/bolt/Profile/
H A DDataAggregator.h102 Type EntryType; member
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriterDecl.cpp194 template <typename EntryType>
195 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType *
196 getSpecializationDecl(EntryType &T) { in getSpecializationDecl()
197 return RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::getDecl(&T); in getSpecializationDecl()
/llvm-project-15.0.7/bolt/lib/Profile/
H A DDataAggregator.cpp1756 switch (AggrEntry.EntryType) { in processPreAggregated()
1763 LBREntry First{AggrEntry.EntryType == AggregatedLBREntry::FT in processPreAggregated()