don't crash if we disable logging when some code already has a copy of the logger. Prior to this fix, logs were handed out as pointers and if they were held onto while a log got disabled, then it could cause a crash. Now all logs are handed out as shared pointers so this problem shouldn't happen anymore. We are also using our new shared pointers that put the shared pointer count and the object into the same allocation for a tad better performance. llvm-svn: 118319
278 lines
6.8 KiB
C++
278 lines
6.8 KiB
C++
//===-- ASTResultSynthesizer.cpp --------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "stdlib.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/AST/Decl.h"
|
|
#include "clang/AST/DeclCXX.h"
|
|
#include "clang/AST/DeclGroup.h"
|
|
#include "clang/AST/Expr.h"
|
|
#include "clang/AST/Stmt.h"
|
|
#include "clang/Parse/Parser.h"
|
|
#include "llvm/Support/Casting.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "lldb/Core/Log.h"
|
|
#include "lldb/Expression/ASTResultSynthesizer.h"
|
|
|
|
using namespace llvm;
|
|
using namespace clang;
|
|
using namespace lldb_private;
|
|
|
|
ASTResultSynthesizer::ASTResultSynthesizer(ASTConsumer *passthrough) :
|
|
m_ast_context (NULL),
|
|
m_passthrough (passthrough),
|
|
m_passthrough_sema (NULL),
|
|
m_sema (NULL)
|
|
{
|
|
if (!m_passthrough)
|
|
return;
|
|
|
|
m_passthrough_sema = dyn_cast<SemaConsumer>(passthrough);
|
|
}
|
|
|
|
ASTResultSynthesizer::~ASTResultSynthesizer()
|
|
{
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::Initialize(ASTContext &Context)
|
|
{
|
|
m_ast_context = &Context;
|
|
|
|
if (m_passthrough)
|
|
m_passthrough->Initialize(Context);
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::TransformTopLevelDecl(Decl* D)
|
|
{
|
|
LinkageSpecDecl *linkage_spec_decl = dyn_cast<LinkageSpecDecl>(D);
|
|
|
|
if (linkage_spec_decl)
|
|
{
|
|
RecordDecl::decl_iterator decl_iterator;
|
|
|
|
for (decl_iterator = linkage_spec_decl->decls_begin();
|
|
decl_iterator != linkage_spec_decl->decls_end();
|
|
++decl_iterator)
|
|
{
|
|
TransformTopLevelDecl(*decl_iterator);
|
|
}
|
|
}
|
|
|
|
FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D);
|
|
|
|
if (m_ast_context &&
|
|
function_decl &&
|
|
!function_decl->getNameInfo().getAsString().compare("$__lldb_expr"))
|
|
{
|
|
SynthesizeResult(function_decl);
|
|
}
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::HandleTopLevelDecl(DeclGroupRef D)
|
|
{
|
|
DeclGroupRef::iterator decl_iterator;
|
|
|
|
for (decl_iterator = D.begin();
|
|
decl_iterator != D.end();
|
|
++decl_iterator)
|
|
{
|
|
Decl *decl = *decl_iterator;
|
|
|
|
TransformTopLevelDecl(decl);
|
|
}
|
|
|
|
if (m_passthrough)
|
|
m_passthrough->HandleTopLevelDecl(D);
|
|
}
|
|
|
|
bool
|
|
ASTResultSynthesizer::SynthesizeResult (FunctionDecl *FunDecl)
|
|
{
|
|
ASTContext &Ctx(*m_ast_context);
|
|
|
|
lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
|
|
|
|
if (!m_sema)
|
|
return false;
|
|
|
|
FunctionDecl *function_decl = FunDecl;
|
|
|
|
if (!function_decl)
|
|
return false;
|
|
|
|
if (log)
|
|
{
|
|
std::string s;
|
|
raw_string_ostream os(s);
|
|
|
|
Ctx.getTranslationUnitDecl()->print(os);
|
|
|
|
os.flush();
|
|
|
|
log->Printf("AST context before transforming:\n%s", s.c_str());
|
|
}
|
|
|
|
Stmt *function_body = function_decl->getBody();
|
|
CompoundStmt *compound_stmt = dyn_cast<CompoundStmt>(function_body);
|
|
|
|
if (!compound_stmt)
|
|
return false;
|
|
|
|
if (compound_stmt->body_empty())
|
|
return false;
|
|
|
|
Stmt **last_stmt_ptr = compound_stmt->body_end() - 1;
|
|
Stmt *last_stmt = *last_stmt_ptr;
|
|
|
|
while (dyn_cast<NullStmt>(last_stmt))
|
|
{
|
|
if (last_stmt_ptr != compound_stmt->body_begin())
|
|
{
|
|
last_stmt_ptr--;
|
|
last_stmt = *last_stmt_ptr;
|
|
}
|
|
}
|
|
|
|
Expr *last_expr = dyn_cast<Expr>(last_stmt);
|
|
|
|
if (!last_expr)
|
|
// No auxiliary variable necessary; expression returns void
|
|
return true;
|
|
|
|
QualType expr_qual_type = last_expr->getType();
|
|
clang::Type *expr_type = expr_qual_type.getTypePtr();
|
|
|
|
if (!expr_type)
|
|
return false;
|
|
|
|
if (expr_type->isVoidType())
|
|
return true;
|
|
|
|
if (log)
|
|
{
|
|
std::string s = expr_qual_type.getAsString();
|
|
|
|
log->Printf("Last statement's type: %s", s.c_str());
|
|
}
|
|
|
|
IdentifierInfo &result_id = Ctx.Idents.get("$__lldb_expr_result");
|
|
|
|
clang::VarDecl *result_decl = VarDecl::Create(Ctx,
|
|
function_decl,
|
|
SourceLocation(),
|
|
&result_id,
|
|
expr_qual_type,
|
|
NULL,
|
|
SC_Static,
|
|
SC_Static);
|
|
|
|
if (!result_decl)
|
|
return false;
|
|
|
|
function_decl->addDecl(result_decl);
|
|
|
|
///////////////////////////////
|
|
// call AddInitializerToDecl
|
|
//
|
|
|
|
m_sema->AddInitializerToDecl(result_decl, last_expr);
|
|
|
|
/////////////////////////////////
|
|
// call ConvertDeclToDeclGroup
|
|
//
|
|
|
|
Sema::DeclGroupPtrTy result_decl_group_ptr;
|
|
|
|
result_decl_group_ptr = m_sema->ConvertDeclToDeclGroup(result_decl);
|
|
|
|
////////////////////////
|
|
// call ActOnDeclStmt
|
|
//
|
|
|
|
StmtResult result_initialization_stmt_result(m_sema->ActOnDeclStmt(result_decl_group_ptr,
|
|
SourceLocation(),
|
|
SourceLocation()));
|
|
|
|
////////////////////////////////////////////////
|
|
// replace the old statement with the new one
|
|
//
|
|
|
|
*last_stmt_ptr = reinterpret_cast<Stmt*>(result_initialization_stmt_result.take());
|
|
|
|
if (log)
|
|
{
|
|
std::string s;
|
|
raw_string_ostream os(s);
|
|
|
|
function_decl->print(os);
|
|
|
|
os.flush();
|
|
|
|
log->Printf("Transformed function AST:\n%s", s.c_str());
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::HandleTranslationUnit(ASTContext &Ctx)
|
|
{
|
|
if (m_passthrough)
|
|
m_passthrough->HandleTranslationUnit(Ctx);
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::HandleTagDeclDefinition(TagDecl *D)
|
|
{
|
|
if (m_passthrough)
|
|
m_passthrough->HandleTagDeclDefinition(D);
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::CompleteTentativeDefinition(VarDecl *D)
|
|
{
|
|
if (m_passthrough)
|
|
m_passthrough->CompleteTentativeDefinition(D);
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::HandleVTable(CXXRecordDecl *RD, bool DefinitionRequired)
|
|
{
|
|
if (m_passthrough)
|
|
m_passthrough->HandleVTable(RD, DefinitionRequired);
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::PrintStats()
|
|
{
|
|
if (m_passthrough)
|
|
m_passthrough->PrintStats();
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::InitializeSema(Sema &S)
|
|
{
|
|
m_sema = &S;
|
|
|
|
if (m_passthrough_sema)
|
|
m_passthrough_sema->InitializeSema(S);
|
|
}
|
|
|
|
void
|
|
ASTResultSynthesizer::ForgetSema()
|
|
{
|
|
m_sema = NULL;
|
|
|
|
if (m_passthrough_sema)
|
|
m_passthrough_sema->ForgetSema();
|
|
}
|