91 lines
3.3 KiB
C++
91 lines
3.3 KiB
C++
//------------------------------------------------------------------------------
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
// author: Vassil Vassilev <vasil.georgiev.vasilev@cern.ch>
|
|
//
|
|
// This file is dual-licensed: you can choose to license it under the University
|
|
// of Illinois Open Source License or the GNU Lesser General Public License. See
|
|
// LICENSE.TXT for details.
|
|
//------------------------------------------------------------------------------
|
|
|
|
#include "AutoSynthesizer.h"
|
|
|
|
#include "cling/Interpreter/Transaction.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/AST/RecursiveASTVisitor.h"
|
|
#include "clang/Sema/Sema.h"
|
|
|
|
using namespace clang;
|
|
|
|
namespace cling {
|
|
class AutoFixer : public RecursiveASTVisitor<AutoFixer> {
|
|
private:
|
|
Sema* m_Sema;
|
|
DeclRefExpr* m_FoundDRE;
|
|
llvm::DenseSet<NamedDecl*> m_HandledDecls;
|
|
private:
|
|
public:
|
|
AutoFixer(Sema* S) : m_Sema(S), m_FoundDRE(0) {}
|
|
|
|
void Fix(CompoundStmt* CS) {
|
|
if (!CS->size())
|
|
return;
|
|
typedef llvm::SmallVector<Stmt*, 32> Statements;
|
|
Statements Stmts;
|
|
Stmts.append(CS->body_begin(), CS->body_end());
|
|
for (Statements::iterator I = Stmts.begin(); I != Stmts.end(); ++I) {
|
|
if (!TraverseStmt(*I) && !m_HandledDecls.count(m_FoundDRE->getDecl())) {
|
|
Sema::DeclGroupPtrTy VDPtrTy
|
|
= m_Sema->ConvertDeclToDeclGroup(m_FoundDRE->getDecl());
|
|
StmtResult DS = m_Sema->ActOnDeclStmt(VDPtrTy,
|
|
m_FoundDRE->getLocStart(),
|
|
m_FoundDRE->getLocEnd());
|
|
assert(!DS.isInvalid() && "Invalid DeclStmt.");
|
|
I = Stmts.insert(I, DS.take());
|
|
m_HandledDecls.insert(m_FoundDRE->getDecl());
|
|
}
|
|
}
|
|
CS->setStmts(m_Sema->getASTContext(), Stmts.data(), Stmts.size());
|
|
}
|
|
|
|
bool VisitDeclRefExpr(DeclRefExpr* DRE) {
|
|
const Decl* D = DRE->getDecl();
|
|
if (const AnnotateAttr* A = D->getAttr<AnnotateAttr>())
|
|
if (A->getAnnotation().equals("__Auto")) {
|
|
m_FoundDRE = DRE;
|
|
return false; // we abort on the first found candidate.
|
|
}
|
|
return true; // returning false will abort the in-depth traversal.
|
|
}
|
|
};
|
|
} // end namespace cling
|
|
|
|
namespace cling {
|
|
AutoSynthesizer::AutoSynthesizer(clang::Sema* S)
|
|
: TransactionTransformer(S) {
|
|
// TODO: We would like to keep that local without keeping track of all
|
|
// decls that were handled in the AutoFixer. This can be done by removing
|
|
// the __Auto attribute, but for now I am still hesitant to do it. Having
|
|
// the __Auto attribute is very useful for debugging because it localize the
|
|
// the problem if exists.
|
|
m_AutoFixer.reset(new AutoFixer(S));
|
|
}
|
|
|
|
// pin the vtable here.
|
|
AutoSynthesizer::~AutoSynthesizer()
|
|
{ }
|
|
|
|
void AutoSynthesizer::Transform() {
|
|
const Transaction* T = getTransaction();
|
|
for (Transaction::const_iterator I = T->decls_begin(), E = T->decls_end();
|
|
I != E; ++I) {
|
|
// Copy DCI; it might get relocated below.
|
|
Transaction::DelayCallInfo DCI = *I;
|
|
for (DeclGroupRef::const_iterator J = DCI.m_DGR.begin(),
|
|
JE = DCI.m_DGR.end(); J != JE; ++J)
|
|
if ((*J)->hasBody())
|
|
m_AutoFixer->Fix(cast<CompoundStmt>((*J)->getBody()));
|
|
}
|
|
}
|
|
} // end namespace cling
|