[Lldb-commits] [lldb] r114157 - in /lldb/trunk: include/lldb/Symbol/ClangASTContext.h source/Symbol/ClangASTContext.cpp
Sean Callanan
scallanan at apple.com
Thu Sep 16 19:58:26 PDT 2010
Author: spyffe
Date: Thu Sep 16 21:58:26 2010
New Revision: 114157
URL: http://llvm.org/viewvc/llvm-project?rev=114157&view=rev
Log:
Re-committed AddMethodToCXXRecordType, now that
the bug I introduced to ClangASTContext is
resolved.
Modified:
lldb/trunk/include/lldb/Symbol/ClangASTContext.h
lldb/trunk/source/Symbol/ClangASTContext.cpp
Modified: lldb/trunk/include/lldb/Symbol/ClangASTContext.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/ClangASTContext.h?rev=114157&r1=114156&r2=114157&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/ClangASTContext.h (original)
+++ lldb/trunk/include/lldb/Symbol/ClangASTContext.h Thu Sep 16 21:58:26 2010
@@ -182,6 +182,24 @@
bitfield_bit_size);
}
+ static bool
+ AddMethodToCXXRecordType (clang::ASTContext *ast_context,
+ void *record_clang_type,
+ const char *name,
+ void *method_type);
+
+ bool
+ AddMethodToCXXRecordType (void *record_clang_type,
+ const char *name,
+ void *method_type)
+
+ {
+ return ClangASTContext::AddMethodToCXXRecordType(getASTContext(),
+ record_clang_type,
+ name,
+ method_type);
+ }
+
bool
FieldIsBitfield (clang::FieldDecl* field,
uint32_t& bitfield_bit_size);
Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=114157&r1=114156&r2=114157&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Thu Sep 16 21:58:26 2010
@@ -804,6 +804,57 @@
}
bool
+ClangASTContext::AddMethodToCXXRecordType
+(
+ clang::ASTContext *ast_context,
+ void *record_clang_type,
+ const char *name,
+ void *method_type
+ )
+{
+ if (!record_clang_type || !method_type || !name)
+ return false;
+
+ assert(ast_context);
+
+ IdentifierTable *identifier_table = &ast_context->Idents;
+
+ assert(identifier_table);
+
+ QualType record_qual_type(QualType::getFromOpaquePtr(record_clang_type));
+ clang::Type *record_type(record_qual_type.getTypePtr());
+
+ if (!record_type)
+ return false;
+
+ RecordType *record_recty(dyn_cast<RecordType>(record_type));
+
+ if (!record_recty)
+ return false;
+
+ RecordDecl *record_decl = record_recty->getDecl();
+
+ if (!record_decl)
+ return false;
+
+ CXXRecordDecl *cxx_record_decl = dyn_cast<CXXRecordDecl>(record_decl);
+
+ if (!cxx_record_decl)
+ return false;
+
+ CXXMethodDecl *cxx_method_decl = CXXMethodDecl::Create(*ast_context,
+ cxx_record_decl,
+ SourceLocation(),
+ DeclarationName(&identifier_table->get(name)),
+ QualType::getFromOpaquePtr(method_type),
+ NULL);
+
+ cxx_record_decl->addDecl(cxx_method_decl);
+
+ return true;
+}
+
+bool
ClangASTContext::AddFieldToRecordType
(
clang::ASTContext *ast_context,
More information about the lldb-commits
mailing list