/openbsd-src/gnu/llvm/lldb/source/Symbol/ |
H A D | Type.cpp | 152 m_decl(decl), m_compiler_type(compiler_type), in Type() 194 if (m_compiler_type.IsValid()) { in GetDescription() 256 if (m_compiler_type.IsValid()) { in Dump() 257 *s << ", compiler_type = " << m_compiler_type.GetOpaqueQualType() << ' '; in Dump() 485 if (!m_compiler_type.IsValid()) { in ResolveCompilerType() 493 m_compiler_type = encoding_compiler_type; in ResolveCompilerType() 500 m_compiler_type = in ResolveCompilerType() 505 m_compiler_type = in ResolveCompilerType() 510 m_compiler_type = in ResolveCompilerType() 515 m_compiler_type = in ResolveCompilerType() [all …]
|
/openbsd-src/gnu/llvm/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() 138 m_compiler_type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren() 146 return m_compiler_type.GetByteSize(exe_ctx.GetBestExecutionContextScope()); in GetByteSize() 213 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 =() 224 if (!m_compiler_type.IsValid()) { in GetCompilerType() 235 m_compiler_type = lldb_type->GetForwardCompilerType(); in GetCompilerType() 243 m_compiler_type = variable_type->GetForwardCompilerType(); in GetCompilerType() 249 return m_compiler_type; in GetCompilerType() 253 m_compiler_type = compiler_type; in SetCompilerType() [all …]
|
H A D | ValueObjectRegister.cpp | 174 m_reg_value(), m_type_name(), m_compiler_type() { in ValueObjectRegister() 192 m_reg_value(), m_type_name(), m_compiler_type() { in ValueObjectRegister() 200 if (!m_compiler_type.IsValid()) { in GetCompilerTypeImpl() 211 m_compiler_type = ts->GetBuiltinTypeForEncodingAndBitSize( in GetCompilerTypeImpl() 217 return m_compiler_type; in GetCompilerTypeImpl()
|
H A D | ValueObjectChild.cpp | 35 : ValueObject(parent), m_compiler_type(compiler_type), in ValueObjectChild()
|
/openbsd-src/gnu/llvm/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 | 128 CompilerType m_compiler_type; variable
|
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
H A D | Language.h | 60 Result(CompilerType type) : m_compiler_type(type) {} in Result() 62 bool IsValid() override { return m_compiler_type.IsValid(); } in IsValid() 66 m_compiler_type.DumpTypeDescription(&stream); in DumpToStream() 76 CompilerType m_compiler_type;
|
/openbsd-src/gnu/llvm/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 | 150 CompilerType m_compiler_type; variable
|
H A D | ValueObjectRegister.h | 120 CompilerType m_compiler_type; variable
|
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/ |
H A D | ValueObjectPrinter.cpp | 140 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()
|
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
H A D | Type.h | 220 CompilerType m_compiler_type; variable 424 CompilerType GetCompilerType() const { return m_compiler_type; } in GetCompilerType() 447 CompilerType m_compiler_type;
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/ |
H A D | ObjCLanguage.cpp | 977 : Language::TypeScavenger::Result(), m_compiler_type(type) {} in GetTypeScavenger() 979 bool IsValid() override { return m_compiler_type.IsValid(); } in GetTypeScavenger() 983 m_compiler_type.DumpTypeDescription(&stream); in GetTypeScavenger() 991 CompilerType m_compiler_type; in GetTypeScavenger() member in ObjCLanguage::GetTypeScavenger::ObjCScavengerResult
|