2010-10-05 08:00:42 +08:00
|
|
|
//===-- ValueObjectConstResult.cpp ------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/Core/ValueObjectConstResult.h"
|
|
|
|
|
|
|
|
#include "lldb/Core/DataExtractor.h"
|
|
|
|
#include "lldb/Core/Module.h"
|
|
|
|
#include "lldb/Core/ValueObjectList.h"
|
|
|
|
|
|
|
|
#include "lldb/Symbol/ClangASTType.h"
|
|
|
|
#include "lldb/Symbol/ObjectFile.h"
|
|
|
|
#include "lldb/Symbol/SymbolContext.h"
|
|
|
|
#include "lldb/Symbol/Type.h"
|
|
|
|
#include "lldb/Symbol/Variable.h"
|
|
|
|
|
|
|
|
#include "lldb/Target/ExecutionContext.h"
|
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2011-04-23 07:53:53 +08:00
|
|
|
ValueObjectSP
|
|
|
|
ValueObjectConstResult::Create
|
|
|
|
(
|
|
|
|
ExecutionContextScope *exe_scope,
|
|
|
|
ByteOrder byte_order,
|
|
|
|
uint32_t addr_byte_size
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return (new ValueObjectConstResult (exe_scope,
|
|
|
|
byte_order,
|
|
|
|
addr_byte_size))->GetSP();
|
|
|
|
}
|
|
|
|
|
2010-12-14 10:59:59 +08:00
|
|
|
ValueObjectConstResult::ValueObjectConstResult
|
|
|
|
(
|
2011-03-31 08:19:25 +08:00
|
|
|
ExecutionContextScope *exe_scope,
|
2010-12-14 10:59:59 +08:00
|
|
|
ByteOrder byte_order,
|
|
|
|
uint32_t addr_byte_size
|
|
|
|
) :
|
2011-03-31 08:19:25 +08:00
|
|
|
ValueObject (exe_scope),
|
2010-12-14 10:59:59 +08:00
|
|
|
m_clang_ast (NULL),
|
|
|
|
m_type_name (),
|
|
|
|
m_byte_size (0)
|
|
|
|
{
|
|
|
|
SetIsConstant ();
|
|
|
|
SetValueIsValid(true);
|
|
|
|
m_data.SetByteOrder(byte_order);
|
|
|
|
m_data.SetAddressByteSize(addr_byte_size);
|
|
|
|
m_pointers_point_to_load_addrs = true;
|
|
|
|
}
|
|
|
|
|
2011-04-23 07:53:53 +08:00
|
|
|
ValueObjectSP
|
|
|
|
ValueObjectConstResult::Create
|
|
|
|
(
|
|
|
|
ExecutionContextScope *exe_scope,
|
|
|
|
clang::ASTContext *clang_ast,
|
|
|
|
void *clang_type,
|
|
|
|
const ConstString &name,
|
|
|
|
const DataExtractor &data
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return (new ValueObjectConstResult (exe_scope,
|
|
|
|
clang_ast,
|
|
|
|
clang_type,
|
|
|
|
name,
|
|
|
|
data))->GetSP();
|
|
|
|
}
|
|
|
|
|
2010-12-14 10:59:59 +08:00
|
|
|
ValueObjectConstResult::ValueObjectConstResult
|
|
|
|
(
|
2011-03-31 08:19:25 +08:00
|
|
|
ExecutionContextScope *exe_scope,
|
2010-12-14 10:59:59 +08:00
|
|
|
clang::ASTContext *clang_ast,
|
|
|
|
void *clang_type,
|
|
|
|
const ConstString &name,
|
|
|
|
const DataExtractor &data
|
|
|
|
) :
|
2011-03-31 08:19:25 +08:00
|
|
|
ValueObject (exe_scope),
|
2010-12-14 10:59:59 +08:00
|
|
|
m_clang_ast (clang_ast),
|
|
|
|
m_type_name (),
|
|
|
|
m_byte_size (0)
|
|
|
|
{
|
|
|
|
m_data = data;
|
|
|
|
m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
|
|
|
|
m_value.SetValueType(Value::eValueTypeHostAddress);
|
|
|
|
m_value.SetContext(Value::eContextTypeClangType, clang_type);
|
|
|
|
m_name = name;
|
|
|
|
SetIsConstant ();
|
|
|
|
SetValueIsValid(true);
|
|
|
|
m_pointers_point_to_load_addrs = true;
|
|
|
|
}
|
|
|
|
|
2011-04-23 07:53:53 +08:00
|
|
|
ValueObjectSP
|
|
|
|
ValueObjectConstResult::Create
|
|
|
|
(
|
|
|
|
ExecutionContextScope *exe_scope,
|
|
|
|
clang::ASTContext *clang_ast,
|
|
|
|
void *clang_type,
|
|
|
|
const ConstString &name,
|
|
|
|
const lldb::DataBufferSP &data_sp,
|
|
|
|
lldb::ByteOrder data_byte_order,
|
|
|
|
uint8_t data_addr_size
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return (new ValueObjectConstResult (exe_scope,
|
|
|
|
clang_ast,
|
|
|
|
clang_type,
|
|
|
|
name,
|
|
|
|
data_sp,
|
|
|
|
data_byte_order,
|
|
|
|
data_addr_size))->GetSP();
|
|
|
|
}
|
|
|
|
|
2010-10-05 08:00:42 +08:00
|
|
|
ValueObjectConstResult::ValueObjectConstResult
|
|
|
|
(
|
2011-03-31 08:19:25 +08:00
|
|
|
ExecutionContextScope *exe_scope,
|
2010-10-05 08:00:42 +08:00
|
|
|
clang::ASTContext *clang_ast,
|
|
|
|
void *clang_type,
|
|
|
|
const ConstString &name,
|
|
|
|
const lldb::DataBufferSP &data_sp,
|
|
|
|
lldb::ByteOrder data_byte_order,
|
|
|
|
uint8_t data_addr_size
|
|
|
|
) :
|
2011-03-31 08:19:25 +08:00
|
|
|
ValueObject (exe_scope),
|
2010-10-05 08:00:42 +08:00
|
|
|
m_clang_ast (clang_ast),
|
2010-12-14 10:59:59 +08:00
|
|
|
m_type_name (),
|
|
|
|
m_byte_size (0)
|
2010-10-05 08:00:42 +08:00
|
|
|
{
|
|
|
|
m_data.SetByteOrder(data_byte_order);
|
|
|
|
m_data.SetAddressByteSize(data_addr_size);
|
|
|
|
m_data.SetData(data_sp);
|
|
|
|
m_value.GetScalar() = (uintptr_t)data_sp->GetBytes();
|
|
|
|
m_value.SetValueType(Value::eValueTypeHostAddress);
|
2010-11-13 11:52:47 +08:00
|
|
|
m_value.SetContext(Value::eContextTypeClangType, clang_type);
|
2010-10-05 08:00:42 +08:00
|
|
|
m_name = name;
|
2010-10-05 11:13:51 +08:00
|
|
|
SetIsConstant ();
|
2010-10-16 06:47:36 +08:00
|
|
|
SetValueIsValid(true);
|
2010-12-14 10:59:59 +08:00
|
|
|
m_pointers_point_to_load_addrs = true;
|
|
|
|
}
|
|
|
|
|
2011-04-23 07:53:53 +08:00
|
|
|
ValueObjectSP
|
|
|
|
ValueObjectConstResult::Create
|
|
|
|
(
|
|
|
|
ExecutionContextScope *exe_scope,
|
|
|
|
clang::ASTContext *clang_ast,
|
|
|
|
void *clang_type,
|
|
|
|
const ConstString &name,
|
|
|
|
lldb::addr_t address,
|
|
|
|
AddressType address_type,
|
|
|
|
uint8_t addr_byte_size
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return (new ValueObjectConstResult (exe_scope,
|
|
|
|
clang_ast,
|
|
|
|
clang_type,
|
|
|
|
name,
|
|
|
|
address,
|
|
|
|
address_type,
|
|
|
|
addr_byte_size))->GetSP();
|
|
|
|
}
|
|
|
|
|
2010-12-14 10:59:59 +08:00
|
|
|
ValueObjectConstResult::ValueObjectConstResult
|
|
|
|
(
|
2011-03-31 08:19:25 +08:00
|
|
|
ExecutionContextScope *exe_scope,
|
2010-12-14 10:59:59 +08:00
|
|
|
clang::ASTContext *clang_ast,
|
|
|
|
void *clang_type,
|
|
|
|
const ConstString &name,
|
|
|
|
lldb::addr_t address,
|
2011-03-25 05:19:54 +08:00
|
|
|
AddressType address_type,
|
2010-12-14 10:59:59 +08:00
|
|
|
uint8_t addr_byte_size
|
|
|
|
) :
|
2011-03-31 08:19:25 +08:00
|
|
|
ValueObject (exe_scope),
|
2010-12-14 10:59:59 +08:00
|
|
|
m_clang_ast (clang_ast),
|
|
|
|
m_type_name (),
|
|
|
|
m_byte_size (0)
|
|
|
|
{
|
|
|
|
m_value.GetScalar() = address;
|
|
|
|
m_data.SetAddressByteSize(addr_byte_size);
|
|
|
|
m_value.GetScalar().GetData (m_data, addr_byte_size);
|
|
|
|
//m_value.SetValueType(Value::eValueTypeHostAddress);
|
|
|
|
switch (address_type)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case eAddressTypeInvalid: m_value.SetValueType(Value::eValueTypeScalar); break;
|
|
|
|
case eAddressTypeFile: m_value.SetValueType(Value::eValueTypeFileAddress); break;
|
|
|
|
case eAddressTypeLoad: m_value.SetValueType(Value::eValueTypeLoadAddress); break;
|
|
|
|
case eAddressTypeHost: m_value.SetValueType(Value::eValueTypeHostAddress); break;
|
|
|
|
}
|
|
|
|
m_value.SetContext(Value::eContextTypeClangType, clang_type);
|
|
|
|
m_name = name;
|
|
|
|
SetIsConstant ();
|
|
|
|
SetValueIsValid(true);
|
|
|
|
m_pointers_point_to_load_addrs = true;
|
2010-10-05 11:13:51 +08:00
|
|
|
}
|
|
|
|
|
2011-04-23 07:53:53 +08:00
|
|
|
ValueObjectSP
|
|
|
|
ValueObjectConstResult::Create
|
|
|
|
(
|
|
|
|
ExecutionContextScope *exe_scope,
|
|
|
|
const Error& error
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return (new ValueObjectConstResult (exe_scope,
|
|
|
|
error))->GetSP();
|
|
|
|
}
|
|
|
|
|
2011-03-31 08:19:25 +08:00
|
|
|
ValueObjectConstResult::ValueObjectConstResult (
|
|
|
|
ExecutionContextScope *exe_scope,
|
|
|
|
const Error& error) :
|
|
|
|
ValueObject (exe_scope),
|
2010-10-05 11:13:51 +08:00
|
|
|
m_clang_ast (NULL),
|
2010-12-14 10:59:59 +08:00
|
|
|
m_type_name (),
|
|
|
|
m_byte_size (0)
|
2010-10-05 11:13:51 +08:00
|
|
|
{
|
|
|
|
m_error = error;
|
|
|
|
SetIsConstant ();
|
2010-12-14 10:59:59 +08:00
|
|
|
m_pointers_point_to_load_addrs = true;
|
2010-10-05 08:00:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ValueObjectConstResult::~ValueObjectConstResult()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
lldb::clang_type_t
|
2010-10-05 08:00:42 +08:00
|
|
|
ValueObjectConstResult::GetClangType()
|
|
|
|
{
|
|
|
|
return m_value.GetClangType();
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::ValueType
|
|
|
|
ValueObjectConstResult::GetValueType() const
|
|
|
|
{
|
|
|
|
return eValueTypeConstResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ValueObjectConstResult::GetByteSize()
|
|
|
|
{
|
2010-12-14 10:59:59 +08:00
|
|
|
if (m_byte_size == 0)
|
|
|
|
{
|
|
|
|
uint64_t bit_width = ClangASTType::GetClangTypeBitWidth (GetClangAST(), GetClangType());
|
|
|
|
m_byte_size = (bit_width + 7 ) / 8;
|
|
|
|
}
|
|
|
|
return m_byte_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ValueObjectConstResult::SetByteSize (size_t size)
|
|
|
|
{
|
|
|
|
m_byte_size = size;
|
2010-10-05 08:00:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
ValueObjectConstResult::CalculateNumChildren()
|
|
|
|
{
|
A few of the issue I have been trying to track down and fix have been due to
the way LLDB lazily gets complete definitions for types within the debug info.
When we run across a class/struct/union definition in the DWARF, we will only
parse the full definition if we need to. This works fine for top level types
that are assigned directly to variables and arguments, but when we have a
variable with a class, lets say "A" for this example, that has a member:
"B *m_b". Initially we don't need to hunt down a definition for this class
unless we are ever asked to do something with it ("expr m_b->getDecl()" for
example). With my previous approach to lazy type completion, we would be able
to take a "A *a" and get a complete type for it, but we wouldn't be able to
then do an "a->m_b->getDecl()" unless we always expanded all types within a
class prior to handing out the type. Expanding everything is very costly and
it would be great if there were a better way.
A few months ago I worked with the llvm/clang folks to have the
ExternalASTSource class be able to complete classes if there weren't completed
yet:
class ExternalASTSource {
....
virtual void
CompleteType (clang::TagDecl *Tag);
virtual void
CompleteType (clang::ObjCInterfaceDecl *Class);
};
This was great, because we can now have the class that is producing the AST
(SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
and the object that creates the forward declaration types can now also
complete them anywhere within the clang type system.
This patch makes a few major changes:
- lldb_private::Module classes now own the AST context. Previously the TypeList
objects did.
- The DWARF parsers now sign up as an external AST sources so they can complete
types.
- All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
ClangASTType, and more) can now be iterating through children of any type,
and if a class/union/struct type (clang::RecordType or ObjC interface)
is found that is incomplete, we can ask the AST to get the definition.
- The SymbolFileDWARFDebugMap class now will create and use a single AST that
all child SymbolFileDWARF classes will share (much like what happens when
we have a complete linked DWARF for an executable).
We will need to modify some of the ClangUserExpression code to take more
advantage of this completion ability in the near future. Meanwhile we should
be better off now that we can be accessing any children of variables through
pointers and always be able to resolve the clang type if needed.
llvm-svn: 123613
2011-01-17 11:46:26 +08:00
|
|
|
return ClangASTContext::GetNumChildren (GetClangAST (), GetClangType(), true);
|
2010-10-05 08:00:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
clang::ASTContext *
|
|
|
|
ValueObjectConstResult::GetClangAST ()
|
|
|
|
{
|
|
|
|
return m_clang_ast;
|
|
|
|
}
|
|
|
|
|
|
|
|
ConstString
|
|
|
|
ValueObjectConstResult::GetTypeName()
|
|
|
|
{
|
|
|
|
if (m_type_name.IsEmpty())
|
2011-06-30 10:28:26 +08:00
|
|
|
m_type_name = ClangASTType::GetConstTypeName (GetClangType());
|
2010-10-05 08:00:42 +08:00
|
|
|
return m_type_name;
|
|
|
|
}
|
|
|
|
|
2011-03-31 08:19:25 +08:00
|
|
|
bool
|
|
|
|
ValueObjectConstResult::UpdateValue ()
|
2010-10-05 08:00:42 +08:00
|
|
|
{
|
|
|
|
// Const value is always valid
|
|
|
|
SetValueIsValid (true);
|
2011-03-31 08:19:25 +08:00
|
|
|
return true;
|
2010-10-05 08:00:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
2011-03-31 08:19:25 +08:00
|
|
|
ValueObjectConstResult::IsInScope ()
|
2010-10-05 08:00:42 +08:00
|
|
|
{
|
|
|
|
// A const result value is always in scope since it serializes all
|
|
|
|
// information needed to contain the constant value.
|
|
|
|
return true;
|
|
|
|
}
|