Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DType.cpp152 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 DValueObjectMemory.cpp57 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 DValue.cpp42 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 DValueObjectRegister.cpp174 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 DValueObjectChild.cpp35 : ValueObject(parent), m_compiler_type(compiler_type), in ValueObjectChild()
/openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h161 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 DValueObjectPrinter.h128 CompilerType m_compiler_type; variable
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DLanguage.h60 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 DValueObjectChild.h61 CompilerType GetCompilerTypeImpl() override { return m_compiler_type; } in GetCompilerTypeImpl()
63 CompilerType m_compiler_type; variable
H A DValueObjectMemory.h65 CompilerType m_compiler_type; variable
H A DValue.h150 CompilerType m_compiler_type; variable
H A DValueObjectRegister.h120 CompilerType m_compiler_type; variable
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DType.h220 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 DObjCLanguage.cpp977 : 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