/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | TypeMap.cpp | 22 TypeMap::TypeMap() : m_types() {} in TypeMap() 31 m_types.insert(std::make_pair(type_sp->GetID(), type_sp)); in Insert() 37 iterator pos, end = m_types.end(); in InsertUnique() 39 for (pos = m_types.find(type_uid); in InsertUnique() 73 void TypeMap::Clear() { m_types.clear(); } in Clear() 75 uint32_t TypeMap::GetSize() const { return m_types.size(); } in GetSize() 77 bool TypeMap::Empty() const { return m_types.empty(); } in Empty() 86 for (pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in GetTypeAtIndex() 95 if (m_types.empty()) in FirstType() 97 return m_types.begin()->second; in FirstType() [all …]
|
H A D | TypeList.cpp | 22 TypeList::TypeList() : m_types() {} in TypeList() 31 m_types.push_back(type_sp); in Insert() 58 void TypeList::Clear() { m_types.clear(); } in Clear() 60 uint32_t TypeList::GetSize() const { return m_types.size(); } in GetSize() 70 for (pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in GetTypeAtIndex() 80 for (auto pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in ForEach() 88 for (auto pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) { in ForEach() 95 for (iterator pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) in Dump()
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | TypeFormat.cpp | 137 : TypeFormatImpl(flags), m_enum_type(type_name), m_types() {} in TypeFormatImpl_EnumType() 157 auto iter = m_types.find(valobj_key), end = m_types.end(); in FormatObject() 175 m_types.emplace(valobj_key, valobj_enum_type); in FormatObject()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | SystemRuntime.cpp | 30 SystemRuntime::SystemRuntime(Process *process) : Runtime(process), m_types() {} in SystemRuntime() 43 return m_types; in GetExtendedBacktraceTypes()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | TypeList.h | 45 TypeIterable Types() { return TypeIterable(m_types); } in Types() 56 collection m_types; variable
|
H A D | TypeMap.h | 49 TypeIterable Types() const { return TypeIterable(m_types); } in Types() 62 collection m_types; variable
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
H A D | SymbolFileCTF.cpp | 714 if (!m_types.empty()) in ParseTypes() 745 LLDB_LOG(log, "Created {0} CTF types", m_types.size()); in ParseTypes() 747 return m_types.size(); in ParseTypes() 820 lldb::user_id_t function_type_uid = m_types.size() + 1; in ParseFunctions() 825 m_types[function_type_uid] = type_sp; in ParseFunctions() 987 auto type_it = m_types.find(type_uid); in ResolveTypeUID() 988 if (type_it != m_types.end()) in ResolveTypeUID() 1016 m_types[type_uid] = type_sp; in ResolveTypeUID()
|
H A D | SymbolFileCTF.h | 248 llvm::DenseMap<lldb::user_id_t, lldb::TypeSP> m_types; 291 std::vector<lldb::TypeSP> m_types; global() variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | SystemRuntime.h | 298 std::vector<ConstString> m_types;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | SymbolFileNativePDB.cpp | 790 auto full_iter = m_types.find(toOpaqueUid(*full_decl_uid)); in CreateAndCacheType() 791 if (full_iter != m_types.end()) { in CreateAndCacheType() 795 m_types[toOpaqueUid(type_id)] = result; in CreateAndCacheType() 819 m_types[best_uid] = result; in CreateAndCacheType() 823 m_types[toOpaqueUid(type_id)] = result; in CreateAndCacheType() 832 auto iter = m_types.find(toOpaqueUid(type_id)); in GetOrCreateType() 833 if (iter != m_types.end()) in GetOrCreateType() 1910 auto iter = m_types.find(toOpaqueUid(id)); in GetOrCreateTypedef() 1911 if (iter != m_types.end()) in GetOrCreateTypedef() 2095 auto iter = m_types.find(type_uid); in ResolveTypeUID() [all …]
|
H A D | SymbolFileNativePDB.h | 277 llvm::DenseMap<lldb::user_id_t, lldb::TypeSP> m_types; variable
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | SymbolFilePDB.cpp | 565 auto find_result = m_types.find(type_uid); in ResolveTypeUID() 566 if (find_result != m_types.end()) in ResolveTypeUID() 592 m_types.insert(std::make_pair(type_uid, result)); in ResolveTypeUID() 1512 auto iter = m_types.find(result->getSymIndexId()); in FindTypesByRegex() 1513 if (iter == m_types.end()) in FindTypesByRegex() 1560 auto iter = m_types.find(result->getSymIndexId()); in FindTypes() 1561 if (iter == m_types.end()) in FindTypes()
|
H A D | SymbolFilePDB.h | 237 llvm::DenseMap<uint32_t, lldb::TypeSP> m_types; 248 llvm::DenseMap<uint32_t, lldb::TypeSP> m_types; global() variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | TypeFormat.h | 212 mutable std::unordered_map<void *, CompilerType> m_types; variable
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCClassDescriptorV2.cpp | 316 process->ReadCStringFromMemory(m_types_ptr, m_types, error); in Read() 458 if (instance_method_func(method->m_name.c_str(), method->m_types.c_str())) in ProcessMethodList()
|
H A D | AppleObjCClassDescriptorV2.h | 161 std::string m_types; member
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | arm_sve.td | 923 string name, string m_types, string xz_types, string types, 925 …def _M : SInst<name, m_types, types, MergeOp1, intrinsic, !listconcat(flags, [VerifyRuntimeMo… 930 multiclass SInstCvtMX<string name, string m_types, string xz_types, 933 …def _M : SInst<name, m_types, types, MergeOp1, intrinsic, !listconcat(flags, [VerifyRuntimeMo…
|