summaryrefslogtreecommitdiffstats
path: root/lldb/source/Symbol/ClangASTContext.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-12-14 02:59:59 +0000
committerGreg Clayton <gclayton@apple.com>2010-12-14 02:59:59 +0000
commit8b2fe6dcbdf27b0df84ef4bdf514f9bc577c5804 (patch)
tree9816fbd1612d4cb872b44f996c47f67f9fc6470f /lldb/source/Symbol/ClangASTContext.cpp
parent12960558416a6797ea7504e7d9934bb11a5b1f42 (diff)
downloadbcm5719-llvm-8b2fe6dcbdf27b0df84ef4bdf514f9bc577c5804.tar.gz
bcm5719-llvm-8b2fe6dcbdf27b0df84ef4bdf514f9bc577c5804.zip
Modified LLDB expressions to not have to JIT and run code just to see variable
values or persistent expression variables. Now if an expression consists of a value that is a child of a variable, or of a persistent variable only, we will create a value object for it and make a ValueObjectConstResult from it to freeze the value (for program variables only, not persistent variables) and avoid running JITed code. For everything else we still parse up and JIT code and run it in the inferior. There was also a lot of clean up in the expression code. I made the ClangExpressionVariables be stored in collections of shared pointers instead of in collections of objects. This will help stop a lot of copy constructors on these large objects and also cleans up the code considerably. The persistent clang expression variables were moved over to the Target to ensure they persist across process executions. Added the ability for lldb_private::Target objects to evaluate expressions. We want to evaluate expressions at the target level in case we aren't running yet, or we have just completed running. We still want to be able to access the persistent expression variables between runs, and also evaluate constant expressions. Added extra logging to the dynamic loader plug-in for MacOSX. ModuleList objects can now dump their contents with the UUID, arch and full paths being logged with appropriate prefix values. Thread hardened the Communication class a bit by making the connection auto_ptr member into a shared pointer member and then making a local copy of the shared pointer in each method that uses it to make sure another thread can't nuke the connection object while it is being used by another thread. Added a new file to the lldb/test/load_unload test that causes the test a.out file to link to the libd.dylib file all the time. This will allow us to test using the DYLD_LIBRARY_PATH environment variable after moving libd.dylib somewhere else. llvm-svn: 121745
Diffstat (limited to 'lldb/source/Symbol/ClangASTContext.cpp')
-rw-r--r--lldb/source/Symbol/ClangASTContext.cpp20
1 files changed, 14 insertions, 6 deletions
diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp
index c8ad302a309..cd725cac8aa 100644
--- a/lldb/source/Symbol/ClangASTContext.cpp
+++ b/lldb/source/Symbol/ClangASTContext.cpp
@@ -870,16 +870,17 @@ IsOperator (const char *name, OverloadedOperatorKind &op_kind)
return false;
#define OPERATOR_PREFIX "operator"
+#define OPERATOR_PREFIX_LENGTH (sizeof (OPERATOR_PREFIX) - 1)
const char *post_op_name = NULL;
bool no_space = true;
- if (!::strncmp(name, OPERATOR_PREFIX, sizeof(OPERATOR_PREFIX) - 1))
- post_op_name = name + sizeof(OPERATOR_PREFIX) - 1;
- else
+ if (::strncmp(name, OPERATOR_PREFIX, OPERATOR_PREFIX_LENGTH))
return false;
+ post_op_name = name + OPERATOR_PREFIX_LENGTH;
+
if (post_op_name[0] == ' ')
{
post_op_name++;
@@ -887,6 +888,7 @@ IsOperator (const char *name, OverloadedOperatorKind &op_kind)
}
#undef OPERATOR_PREFIX
+#undef OPERATOR_PREFIX_LENGTH
// This is an operator, set the overloaded operator kind to invalid
// in case this is a conversion operator...
@@ -3488,7 +3490,13 @@ ClangASTContext::AddEnumerationValueToEnumerationType
clang_type_t
ClangASTContext::CreatePointerType (clang_type_t clang_type)
{
- if (clang_type)
+ return CreatePointerType (getASTContext(), clang_type);
+}
+
+clang_type_t
+ClangASTContext::CreatePointerType (clang::ASTContext *ast, clang_type_t clang_type)
+{
+ if (ast && clang_type)
{
QualType qual_type (QualType::getFromOpaquePtr(clang_type));
@@ -3497,10 +3505,10 @@ ClangASTContext::CreatePointerType (clang_type_t clang_type)
{
case clang::Type::ObjCObject:
case clang::Type::ObjCInterface:
- return getASTContext()->getObjCObjectPointerType(qual_type).getAsOpaquePtr();
+ return ast->getObjCObjectPointerType(qual_type).getAsOpaquePtr();
default:
- return getASTContext()->getPointerType(qual_type).getAsOpaquePtr();
+ return ast->getPointerType(qual_type).getAsOpaquePtr();
}
}
return NULL;
OpenPOWER on IntegriCloud