/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | Type.cpp | 276 m_decl(decl), m_compiler_type(compiler_type), in Type() 318 if (m_compiler_type.IsValid()) { in GetDescription() 383 if (m_compiler_type.IsValid()) { in Dump() 384 *s << ", compiler_type = " << m_compiler_type.GetOpaqueQualType() << ' '; in Dump() 573 if (!m_compiler_type.IsValid()) { in ResolveCompilerType() 581 m_compiler_type = encoding_compiler_type; in ResolveCompilerType() 588 m_compiler_type = in ResolveCompilerType() 593 m_compiler_type = in ResolveCompilerType() 598 m_compiler_type = in ResolveCompilerType() 603 m_compiler_type = in ResolveCompilerType() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObjectMemory.cpp | 57 m_compiler_type() { in ValueObjectMemory() 85 m_compiler_type(ast_type) { in ValueObjectMemory() 87 assert(m_compiler_type.IsValid()); 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() 140 m_compiler_type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren() 150 return m_compiler_type.GetByteSize(exe_ctx.GetBestExecutionContextScope()); in GetByteSize() 217 value.SetCompilerType(m_compiler_type); in UpdateValue()
|
H A D | Value.cpp | 42 Value::Value() : m_value(), m_compiler_type(), m_data_buffer() {} in Value() 45 : m_value(scalar), m_compiler_type(), m_data_buffer() {} in Value() 48 : m_value(), m_compiler_type(), m_value_type(ValueType::HostAddress), in Value() 54 : m_value(v.m_value), m_compiler_type(v.m_compiler_type), in Value() 71 m_compiler_type = rhs.m_compiler_type; in operator =() 240 if (!m_compiler_type.IsValid()) { in GetCompilerType() 251 m_compiler_type = lldb_type->GetForwardCompilerType(); in GetCompilerType() 259 m_compiler_type in GetCompilerType() [all...] |
H A D | ValueObjectRegister.cpp | 168 m_reg_value(), m_type_name(), m_compiler_type() { in ValueObjectRegister() 186 m_reg_value(), m_type_name(), m_compiler_type() { in ValueObjectRegister() 194 if (!m_compiler_type.IsValid()) { in GetCompilerTypeImpl() 205 m_compiler_type = ts->GetBuiltinTypeForEncodingAndBitSize( in GetCompilerTypeImpl() 211 return m_compiler_type; in GetCompilerTypeImpl()
|
H A D | ValueObjectChild.cpp | 35 : ValueObject(parent), m_compiler_type(compiler_type), in ValueObjectChild()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormatClasses.h | 161 m_type.m_compiler_type = type->GetForwardCompilerType(); in TypeNameSpecifierImpl() 169 m_type.m_compiler_type = type; in TypeNameSpecifierImpl() 180 if (m_type.m_compiler_type.IsValid()) in GetCompilerType() 181 return m_type.m_compiler_type; in GetCompilerType() 194 CompilerType m_compiler_type; member
|
H A D | ValueObjectPrinter.h | 152 CompilerType m_compiler_type; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | ValueObjectChild.h | 61 CompilerType GetCompilerTypeImpl() override { return m_compiler_type; } in GetCompilerTypeImpl() 63 CompilerType m_compiler_type; variable
|
H A D | ValueObjectMemory.h | 65 CompilerType m_compiler_type; variable
|
H A D | Value.h | 152 CompilerType m_compiler_type; variable
|
H A D | ValueObjectRegister.h | 122 CompilerType m_compiler_type; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Language.h | 69 Result(CompilerType type) : m_compiler_type(type) {} in Result() 71 bool IsValid() override { return m_compiler_type.IsValid(); } in IsValid() 75 m_compiler_type.DumpTypeDescription(&stream); in DumpToStream() 85 CompilerType m_compiler_type;
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | ValueObjectPrinter.cpp | 141 m_compiler_type = m_cached_valobj->GetCompilerType(); in SetupMostSpecializedValue() 142 m_type_flags = m_compiler_type.GetTypeInfo(); in SetupMostSpecializedValue() 258 if (m_compiler_type.IsValid()) { in PrintDecl() 428 if (!m_compiler_type.IsValid()) { in PrintValueAndSummaryIfNeeded()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | Type.h | 551 CompilerType m_compiler_type; variable 757 CompilerType GetCompilerType() const { return m_compiler_type; } in GetCompilerType() 782 CompilerType m_compiler_type;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | ObjCLanguage.cpp | 909 : Language::TypeScavenger::Result(), m_compiler_type(type) {} in GetTypeScavenger() 911 bool IsValid() override { return m_compiler_type.IsValid(); } in GetTypeScavenger() 915 m_compiler_type.DumpTypeDescription(&stream); in GetTypeScavenger() 923 CompilerType m_compiler_type; in GetTypeScavenger() member in ObjCLanguage::GetTypeScavenger::ObjCScavengerResult
|