87 lines
3.0 KiB
C++
87 lines
3.0 KiB
C++
//------------------------------------------------------------------------------
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
// version: $Id$
|
|
// author: Vassil Vassilev <vasil.georgiev.vasilev@cern.ch>
|
|
//------------------------------------------------------------------------------
|
|
|
|
#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.");
|
|
Stmts.insert(I, DS.take());
|
|
m_HandledDecls.insert(m_FoundDRE->getDecl());
|
|
++I;
|
|
}
|
|
}
|
|
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() {
|
|
// size can change in the loop!
|
|
for (size_t Idx = 0; Idx < getTransaction()->size(); ++Idx) {
|
|
Transaction::DelayCallInfo I = (*getTransaction())[Idx];
|
|
for (DeclGroupRef::const_iterator J = I.m_DGR.begin(),
|
|
JE = I.m_DGR.end(); J != JE; ++J)
|
|
if ((*J)->hasBody())
|
|
m_AutoFixer->Fix(cast<CompoundStmt>((*J)->getBody()));
|
|
}
|
|
}
|
|
} // end namespace cling
|