Home
last modified time | relevance | path

Searched refs:ast_type (Results 1 – 21 of 21) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDValue.cpp278 const ClangASTType &ast_type = GetClangType(); in GetValueByteSize() local
279 if (ast_type.IsValid()) in GetValueByteSize()
280 byte_size = ast_type.GetByteSize(nullptr); in GetValueByteSize()
358 const ClangASTType &ast_type = GetClangType(); in GetValueDefaultFormat() local
359 if (ast_type.IsValid()) in GetValueDefaultFormat()
360 return ast_type.GetFormat(); in GetValueDefaultFormat()
410 const ClangASTType &ast_type = GetClangType(); in GetValueAsData() local
414 if (ast_type.IsValid()) in GetValueAsData()
415 data.SetAddressByteSize (ast_type.GetPointerByteSize()); in GetValueAsData()
424 if (ast_type.IsValid()) in GetValueAsData()
[all …]
HDValueObjectMemory.cpp49 const ClangASTType &ast_type) in Create() argument
51 return (new ValueObjectMemory (exe_scope, name, address, ast_type))->GetSP(); in Create()
93 const ClangASTType &ast_type) : in ValueObjectMemory() argument
97 m_clang_type(ast_type) in ValueObjectMemory()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDABI.cpp108 ClangASTType &ast_type, in GetReturnValueObject() argument
111 if (!ast_type.IsValid()) in GetReturnValueObject()
116 return_valobj_sp = GetReturnValueObjectImpl(thread, ast_type); in GetReturnValueObject()
176 ABI::GetReturnValueObject(Thread &thread, llvm::Type &ast_type, bool persistent) const in GetReturnValueObject() argument
179 return_valobj_sp = GetReturnValueObjectImpl( thread, ast_type ); in GetReturnValueObject()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDValueObjectMemory.h39 const ClangASTType &ast_type);
85 const ClangASTType &ast_type);
HDValueObject.h753 ClangASTType &ast_type);
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/
HDABISysV_arm64.h45 lldb_private::ClangASTType &ast_type) const override;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/
HDABIMacOSX_arm64.h121 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/
HDABIMacOSX_arm.h45 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/
HDABISysV_i386.h52 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/
HDABISysV_ppc64.h49 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/
HDABISysV_x86_64.h49 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/
HDABISysV_arm.h45 lldb_private::ClangASTType &ast_type) const override;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/
HDABISysV_mips.h49 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/
HDABISysV_mips64.h49 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/
HDABISysV_ppc.h49 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/
HDABIMacOSX_i386.h55 lldb_private::ClangASTType &ast_type) const;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/
HDABISysV_hexagon.h59 lldb_private::ClangASTType &ast_type ) const;
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDABI.h98 GetReturnValueObjectImpl (Thread &thread, ClangASTType &ast_type) const = 0;
/NextBSD/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
HDFormattersContainer.h275 ClangASTType ast_type(valobj.GetClangType());
276 bool ret = Get(valobj, ast_type, entry, use_dynamic, value);
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBTarget.cpp1401 ClangASTType ast_type(type.GetSP()->GetClangASTType(true)); in CreateValueFromAddress() local
1402 … new_value_sp = ValueObject::CreateValueObjectFromAddress(name, load_addr, exe_ctx, ast_type); in CreateValueFromAddress()
1428 ClangASTType ast_type(type.GetSP()->GetClangASTType(true)); in CreateValueFromData() local
1429 new_value_sp = ValueObject::CreateValueObjectFromData(name, *extractor, exe_ctx, ast_type); in CreateValueFromData()
HDSBValue.cpp910 ClangASTType ast_type(type_impl_sp->GetClangASTType(true)); in CreateValueFromAddress() local
912 new_value_sp = ValueObject::CreateValueObjectFromAddress(name, address, exe_ctx, ast_type); in CreateValueFromAddress()