Home
last modified time | relevance | path

Searched refs:m_compiler_type (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp489 m_compiler_type = in ResolveCompilerType()
494 m_compiler_type = in ResolveCompilerType()
499 m_compiler_type = in ResolveCompilerType()
504 m_compiler_type = in ResolveCompilerType()
516 m_compiler_type = in ResolveCompilerType()
521 m_compiler_type = in ResolveCompilerType()
526 m_compiler_type = in ResolveCompilerType()
729 if (m_compiler_type) { in GetExeModule()
751 if (m_compiler_type != other.m_compiler_type) in operator ==()
765 if (m_compiler_type) in GetName()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObjectMemory.cpp56 m_compiler_type() { in ValueObjectMemory()
84 m_compiler_type(ast_type) { in ValueObjectMemory()
86 assert(m_compiler_type.GetTypeSystem()); in ValueObjectMemory()
87 assert(m_compiler_type.GetOpaqueQualType()); in ValueObjectMemory()
92 m_value.SetCompilerType(m_compiler_type); in ValueObjectMemory()
114 return m_compiler_type; in GetCompilerTypeImpl()
120 return m_compiler_type.GetTypeName(); in GetTypeName()
126 return m_compiler_type.GetDisplayTypeName(); in GetDisplayTypeName()
138 m_compiler_type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
146 return m_compiler_type.GetByteSize(exe_ctx.GetBestExecutionContextScope()); in GetByteSize()
[all …]
H A DValue.cpp41 Value::Value() : m_value(), m_compiler_type(), m_data_buffer() {} in Value()
44 : m_value(scalar), m_compiler_type(), m_context(nullptr), in Value()
49 : m_value(), m_compiler_type(), m_context(nullptr), in Value()
56 : m_value(v.m_value), m_compiler_type(v.m_compiler_type), in Value()
73 m_compiler_type = rhs.m_compiler_type; in operator =()
226 if (!m_compiler_type.IsValid()) { in GetCompilerType()
237 m_compiler_type = lldb_type->GetForwardCompilerType(); in GetCompilerType()
245 m_compiler_type = variable_type->GetForwardCompilerType(); in GetCompilerType()
251 return m_compiler_type; in GetCompilerType()
255 m_compiler_type = compiler_type; in SetCompilerType()
[all …]
H A DValueObjectRegister.cpp173 m_reg_value(), m_type_name(), m_compiler_type() { in ValueObjectRegister()
191 m_reg_value(), m_type_name(), m_compiler_type() { in ValueObjectRegister()
199 if (!m_compiler_type.IsValid()) { in GetCompilerTypeImpl()
210 m_compiler_type = in GetCompilerTypeImpl()
217 return m_compiler_type; in GetCompilerTypeImpl()
H A DValueObjectChild.cpp35 : ValueObject(parent), m_compiler_type(compiler_type), in ValueObjectChild()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h120 m_type.m_compiler_type = type->GetForwardCompilerType(); in TypeNameSpecifierImpl()
127 m_type.m_compiler_type = type; in TypeNameSpecifierImpl()
138 if (m_type.m_compiler_type.IsValid()) in GetCompilerType()
139 return m_type.m_compiler_type; in GetCompilerType()
150 CompilerType m_compiler_type; member
H A DValueObjectPrinter.h126 CompilerType m_compiler_type; variable
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h61 : Language::TypeScavenger::Result(), m_compiler_type(type) {} in Result()
63 bool IsValid() override { return m_compiler_type.IsValid(); } in IsValid()
67 m_compiler_type.DumpTypeDescription(&stream); in DumpToStream()
77 CompilerType m_compiler_type;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectChild.h62 CompilerType GetCompilerTypeImpl() override { return m_compiler_type; } in GetCompilerTypeImpl()
64 CompilerType m_compiler_type; variable
H A DValueObjectMemory.h64 CompilerType m_compiler_type; variable
H A DValue.h150 CompilerType m_compiler_type; variable
H A DValueObjectRegister.h119 CompilerType m_compiler_type; variable
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp140 m_compiler_type = m_valobj->GetCompilerType(); in GetMostSpecializedValue()
141 m_type_flags = m_compiler_type.GetTypeInfo(); in GetMostSpecializedValue()
241 if (m_compiler_type.IsValid()) { in PrintDecl()
404 if (!m_compiler_type.IsValid()) { in PrintValueAndSummaryIfNeeded()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h225 CompilerType m_compiler_type; variable
408 CompilerType GetCompilerType() const { return m_compiler_type; } in GetCompilerType()
431 CompilerType m_compiler_type;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp957 : Language::TypeScavenger::Result(), m_compiler_type(type) {} in GetTypeScavenger()
959 bool IsValid() override { return m_compiler_type.IsValid(); } in GetTypeScavenger()
963 m_compiler_type.DumpTypeDescription(&stream); in GetTypeScavenger()
971 CompilerType m_compiler_type; in GetTypeScavenger() member in ObjCLanguage::GetTypeScavenger::ObjCScavengerResult