2007-10-07 10:04:32 +04:00
|
|
|
//===--- ASTConsumers.cpp - ASTConsumer implementations -------------------===//
|
2007-07-11 21:01:13 +04:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 22:59:25 +03:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-07-11 21:01:13 +04:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2007-10-07 10:04:32 +04:00
|
|
|
// AST Consumer Implementations.
|
2007-07-11 21:01:13 +04:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-10-07 10:04:32 +04:00
|
|
|
#include "ASTConsumers.h"
|
2008-03-31 22:26:32 +04:00
|
|
|
#include "HTMLDiagnostics.h"
|
2007-12-19 00:34:28 +03:00
|
|
|
#include "clang/AST/TranslationUnit.h"
|
2008-03-31 22:26:32 +04:00
|
|
|
#include "clang/Analysis/PathDiagnostic.h"
|
2007-12-20 03:34:58 +03:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
|
|
|
#include "clang/Basic/FileManager.h"
|
2007-07-11 21:01:13 +04:00
|
|
|
#include "clang/AST/AST.h"
|
2007-09-16 03:02:28 +04:00
|
|
|
#include "clang/AST/ASTConsumer.h"
|
2007-08-22 01:42:03 +04:00
|
|
|
#include "clang/AST/CFG.h"
|
2007-12-22 00:42:19 +03:00
|
|
|
#include "clang/Analysis/Analyses/LiveVariables.h"
|
2007-09-07 03:00:42 +04:00
|
|
|
#include "clang/Analysis/LocalCheckers.h"
|
2008-04-11 02:16:52 +04:00
|
|
|
#include "clang/Analysis/PathSensitive/GRTransferFuncs.h"
|
|
|
|
#include "clang/Analysis/PathSensitive/GRExprEngine.h"
|
2007-11-29 00:32:21 +03:00
|
|
|
#include "llvm/Support/Streams.h"
|
2008-02-19 00:21:23 +03:00
|
|
|
#include "llvm/Support/Timer.h"
|
2008-03-31 22:26:32 +04:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
|
|
|
|
2007-08-09 02:51:59 +04:00
|
|
|
using namespace clang;
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2007-11-28 00:46:50 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// DeclPrinter - Utility class for printing top-level decls.
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class DeclPrinter {
|
|
|
|
public:
|
2007-11-29 00:32:21 +03:00
|
|
|
std::ostream& Out;
|
2007-08-09 02:51:59 +04:00
|
|
|
|
2008-01-10 04:43:14 +03:00
|
|
|
DeclPrinter(std::ostream* out) : Out(out ? *out : *llvm::cerr.stream()) {}
|
2007-11-29 00:32:21 +03:00
|
|
|
DeclPrinter() : Out(*llvm::cerr.stream()) {}
|
2007-11-28 00:46:50 +03:00
|
|
|
|
2008-01-03 00:04:16 +03:00
|
|
|
void PrintDecl(Decl *D);
|
2007-11-28 00:46:50 +03:00
|
|
|
void PrintFunctionDeclStart(FunctionDecl *FD);
|
|
|
|
void PrintTypeDefDecl(TypedefDecl *TD);
|
2008-01-12 10:05:38 +03:00
|
|
|
void PrintLinkageSpec(LinkageSpecDecl *LS);
|
2008-01-07 22:49:32 +03:00
|
|
|
void PrintObjCMethodDecl(ObjCMethodDecl *OMD);
|
|
|
|
void PrintObjCImplementationDecl(ObjCImplementationDecl *OID);
|
|
|
|
void PrintObjCInterfaceDecl(ObjCInterfaceDecl *OID);
|
|
|
|
void PrintObjCProtocolDecl(ObjCProtocolDecl *PID);
|
|
|
|
void PrintObjCCategoryImplDecl(ObjCCategoryImplDecl *PID);
|
|
|
|
void PrintObjCCategoryDecl(ObjCCategoryDecl *PID);
|
|
|
|
void PrintObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *AID);
|
2008-04-17 22:25:18 +04:00
|
|
|
void PrintObjCPropertyDecl(ObjCPropertyDecl *PD);
|
2008-04-23 04:06:01 +04:00
|
|
|
void PrintObjCPropertyImplDecl(ObjCPropertyImplDecl *PID);
|
2007-11-28 00:46:50 +03:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2008-01-03 00:04:16 +03:00
|
|
|
void DeclPrinter:: PrintDecl(Decl *D) {
|
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
|
|
|
|
PrintFunctionDeclStart(FD);
|
|
|
|
|
|
|
|
if (FD->getBody()) {
|
|
|
|
Out << ' ';
|
|
|
|
FD->getBody()->printPretty(Out);
|
|
|
|
Out << '\n';
|
|
|
|
}
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (isa<ObjCMethodDecl>(D)) {
|
2008-01-03 00:04:16 +03:00
|
|
|
// Do nothing, methods definitions are printed in
|
2008-01-07 22:49:32 +03:00
|
|
|
// PrintObjCImplementationDecl.
|
2008-01-03 00:04:16 +03:00
|
|
|
} else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
|
|
|
|
PrintTypeDefDecl(TD);
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(D)) {
|
|
|
|
PrintObjCInterfaceDecl(OID);
|
|
|
|
} else if (ObjCProtocolDecl *PID = dyn_cast<ObjCProtocolDecl>(D)) {
|
|
|
|
PrintObjCProtocolDecl(PID);
|
|
|
|
} else if (ObjCForwardProtocolDecl *OFPD =
|
2008-02-26 00:04:36 +03:00
|
|
|
dyn_cast<ObjCForwardProtocolDecl>(D)) {
|
2008-01-03 00:04:16 +03:00
|
|
|
Out << "@protocol ";
|
|
|
|
for (unsigned i = 0, e = OFPD->getNumForwardDecls(); i != e; ++i) {
|
2008-01-07 22:49:32 +03:00
|
|
|
const ObjCProtocolDecl *D = OFPD->getForwardProtocolDecl(i);
|
2008-01-03 00:04:16 +03:00
|
|
|
if (i) Out << ", ";
|
|
|
|
Out << D->getName();
|
|
|
|
}
|
|
|
|
Out << ";\n";
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (ObjCImplementationDecl *OID =
|
2008-02-26 00:04:36 +03:00
|
|
|
dyn_cast<ObjCImplementationDecl>(D)) {
|
2008-01-07 22:49:32 +03:00
|
|
|
PrintObjCImplementationDecl(OID);
|
|
|
|
} else if (ObjCCategoryImplDecl *OID =
|
2008-02-26 00:04:36 +03:00
|
|
|
dyn_cast<ObjCCategoryImplDecl>(D)) {
|
2008-01-07 22:49:32 +03:00
|
|
|
PrintObjCCategoryImplDecl(OID);
|
|
|
|
} else if (ObjCCategoryDecl *OID =
|
2008-02-26 00:04:36 +03:00
|
|
|
dyn_cast<ObjCCategoryDecl>(D)) {
|
2008-01-07 22:49:32 +03:00
|
|
|
PrintObjCCategoryDecl(OID);
|
|
|
|
} else if (ObjCCompatibleAliasDecl *OID =
|
2008-02-26 00:04:36 +03:00
|
|
|
dyn_cast<ObjCCompatibleAliasDecl>(D)) {
|
2008-01-07 22:49:32 +03:00
|
|
|
PrintObjCCompatibleAliasDecl(OID);
|
|
|
|
} else if (isa<ObjCClassDecl>(D)) {
|
2008-01-03 00:04:16 +03:00
|
|
|
Out << "@class [printing todo]\n";
|
|
|
|
} else if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
|
|
|
|
Out << "Read top-level tag decl: '" << TD->getName() << "'\n";
|
|
|
|
} else if (ScopedDecl *SD = dyn_cast<ScopedDecl>(D)) {
|
|
|
|
Out << "Read top-level variable decl: '" << SD->getName() << "'\n";
|
2008-01-12 10:05:38 +03:00
|
|
|
} else if (LinkageSpecDecl *LSD = dyn_cast<LinkageSpecDecl>(D)) {
|
|
|
|
PrintLinkageSpec(LSD);
|
2008-02-08 03:33:21 +03:00
|
|
|
} else if (FileScopeAsmDecl *AD = dyn_cast<FileScopeAsmDecl>(D)) {
|
|
|
|
Out << "asm(";
|
|
|
|
AD->getAsmString()->printPretty(Out);
|
|
|
|
Out << ")\n";
|
2008-01-03 00:04:16 +03:00
|
|
|
} else {
|
|
|
|
assert(0 && "Unknown decl type!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-28 00:46:50 +03:00
|
|
|
void DeclPrinter::PrintFunctionDeclStart(FunctionDecl *FD) {
|
2007-07-11 21:01:13 +04:00
|
|
|
bool HasBody = FD->getBody();
|
|
|
|
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << '\n';
|
2007-08-26 08:02:13 +04:00
|
|
|
|
|
|
|
switch (FD->getStorageClass()) {
|
|
|
|
default: assert(0 && "Unknown storage class");
|
|
|
|
case FunctionDecl::None: break;
|
2007-11-29 00:32:21 +03:00
|
|
|
case FunctionDecl::Extern: Out << "extern "; break;
|
|
|
|
case FunctionDecl::Static: Out << "static "; break;
|
2008-04-15 07:57:09 +04:00
|
|
|
case FunctionDecl::PrivateExtern: Out << "__private_extern__ "; break;
|
2007-08-26 08:02:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FD->isInline())
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "inline ";
|
2007-08-26 08:02:13 +04:00
|
|
|
|
2007-07-11 21:01:13 +04:00
|
|
|
std::string Proto = FD->getName();
|
2007-12-04 00:43:25 +03:00
|
|
|
const FunctionType *AFT = FD->getType()->getAsFunctionType();
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2007-12-04 00:43:25 +03:00
|
|
|
if (const FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(AFT)) {
|
2007-07-11 21:01:13 +04:00
|
|
|
Proto += "(";
|
|
|
|
for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
|
|
|
|
if (i) Proto += ", ";
|
|
|
|
std::string ParamStr;
|
|
|
|
if (HasBody) ParamStr = FD->getParamDecl(i)->getName();
|
|
|
|
|
|
|
|
FT->getArgType(i).getAsStringInternal(ParamStr);
|
|
|
|
Proto += ParamStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FT->isVariadic()) {
|
|
|
|
if (FD->getNumParams()) Proto += ", ";
|
|
|
|
Proto += "...";
|
|
|
|
}
|
|
|
|
Proto += ")";
|
|
|
|
} else {
|
|
|
|
assert(isa<FunctionTypeNoProto>(AFT));
|
|
|
|
Proto += "()";
|
|
|
|
}
|
|
|
|
|
|
|
|
AFT->getResultType().getAsStringInternal(Proto);
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << Proto;
|
2007-07-11 21:01:13 +04:00
|
|
|
|
2007-08-09 02:51:59 +04:00
|
|
|
if (!FD->getBody())
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << ";\n";
|
2007-08-09 02:51:59 +04:00
|
|
|
// Doesn't print the body.
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2007-11-28 00:46:50 +03:00
|
|
|
void DeclPrinter::PrintTypeDefDecl(TypedefDecl *TD) {
|
2007-07-11 21:01:13 +04:00
|
|
|
std::string S = TD->getName();
|
|
|
|
TD->getUnderlyingType().getAsStringInternal(S);
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "typedef " << S << ";\n";
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
|
|
|
|
2008-01-12 10:05:38 +03:00
|
|
|
void DeclPrinter::PrintLinkageSpec(LinkageSpecDecl *LS) {
|
|
|
|
const char *l;
|
|
|
|
if (LS->getLanguage() == LinkageSpecDecl::lang_c)
|
|
|
|
l = "C";
|
2008-04-08 09:52:18 +04:00
|
|
|
else {
|
|
|
|
assert(LS->getLanguage() == LinkageSpecDecl::lang_cxx &&
|
|
|
|
"unknown language in linkage specification");
|
2008-01-12 10:05:38 +03:00
|
|
|
l = "C++";
|
2008-04-08 09:52:18 +04:00
|
|
|
}
|
2008-01-12 10:05:38 +03:00
|
|
|
Out << "extern \"" << l << "\" { ";
|
|
|
|
PrintDecl(LS->getDecl());
|
|
|
|
Out << "}\n";
|
|
|
|
}
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
void DeclPrinter::PrintObjCMethodDecl(ObjCMethodDecl *OMD) {
|
2007-11-10 23:59:13 +03:00
|
|
|
if (OMD->isInstance())
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "\n- ";
|
2007-11-10 23:59:13 +03:00
|
|
|
else
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "\n+ ";
|
2007-11-10 23:59:13 +03:00
|
|
|
if (!OMD->getResultType().isNull())
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << '(' << OMD->getResultType().getAsString() << ") ";
|
2007-11-10 23:59:13 +03:00
|
|
|
// FIXME: just print original selector name!
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << OMD->getSelector().getName();
|
2007-11-10 23:59:13 +03:00
|
|
|
|
2008-03-16 04:07:14 +03:00
|
|
|
for (unsigned i = 0, e = OMD->getNumParams(); i != e; ++i) {
|
2007-11-10 23:59:13 +03:00
|
|
|
ParmVarDecl *PDecl = OMD->getParamDecl(i);
|
2007-11-29 00:32:21 +03:00
|
|
|
// FIXME: selector is missing here!
|
|
|
|
Out << " :(" << PDecl->getType().getAsString() << ") " << PDecl->getName();
|
2007-11-10 23:59:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
void DeclPrinter::PrintObjCImplementationDecl(ObjCImplementationDecl *OID) {
|
2007-11-10 23:59:13 +03:00
|
|
|
std::string I = OID->getName();
|
2008-01-07 22:49:32 +03:00
|
|
|
ObjCInterfaceDecl *SID = OID->getSuperClass();
|
2007-11-29 00:32:21 +03:00
|
|
|
|
|
|
|
if (SID)
|
|
|
|
Out << "@implementation " << I << " : " << SID->getName();
|
2007-11-10 23:59:13 +03:00
|
|
|
else
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "@implementation " << I;
|
2007-11-10 23:59:13 +03:00
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
for (ObjCImplementationDecl::instmeth_iterator I = OID->instmeth_begin(),
|
2007-12-12 10:46:12 +03:00
|
|
|
E = OID->instmeth_end(); I != E; ++I) {
|
2008-01-07 22:49:32 +03:00
|
|
|
ObjCMethodDecl *OMD = *I;
|
|
|
|
PrintObjCMethodDecl(OMD);
|
2007-11-10 23:59:13 +03:00
|
|
|
if (OMD->getBody()) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << ' ';
|
|
|
|
OMD->getBody()->printPretty(Out);
|
|
|
|
Out << '\n';
|
2007-11-10 23:59:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
for (ObjCImplementationDecl::classmeth_iterator I = OID->classmeth_begin(),
|
2007-12-12 10:46:12 +03:00
|
|
|
E = OID->classmeth_end(); I != E; ++I) {
|
2008-01-07 22:49:32 +03:00
|
|
|
ObjCMethodDecl *OMD = *I;
|
|
|
|
PrintObjCMethodDecl(OMD);
|
2007-11-10 23:59:13 +03:00
|
|
|
if (OMD->getBody()) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << ' ';
|
|
|
|
OMD->getBody()->printPretty(Out);
|
|
|
|
Out << '\n';
|
2007-11-10 23:59:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-23 04:06:01 +04:00
|
|
|
for (ObjCImplementationDecl::propimpl_iterator I = OID->propimpl_begin(),
|
|
|
|
E = OID->propimpl_end(); I != E; ++I)
|
|
|
|
PrintObjCPropertyImplDecl(*I);
|
|
|
|
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "@end\n";
|
2007-11-10 23:59:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
void DeclPrinter::PrintObjCInterfaceDecl(ObjCInterfaceDecl *OID) {
|
2007-10-09 03:06:41 +04:00
|
|
|
std::string I = OID->getName();
|
2008-01-07 22:49:32 +03:00
|
|
|
ObjCInterfaceDecl *SID = OID->getSuperClass();
|
2007-11-29 00:32:21 +03:00
|
|
|
|
|
|
|
if (SID)
|
|
|
|
Out << "@interface " << I << " : " << SID->getName();
|
2007-10-09 03:06:41 +04:00
|
|
|
else
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "@interface " << I;
|
|
|
|
|
2007-10-09 03:06:41 +04:00
|
|
|
// Protocols?
|
|
|
|
int count = OID->getNumIntfRefProtocols();
|
2007-11-29 00:32:21 +03:00
|
|
|
|
2007-10-09 03:06:41 +04:00
|
|
|
if (count > 0) {
|
2008-01-07 22:49:32 +03:00
|
|
|
ObjCProtocolDecl **refProtocols = OID->getReferencedProtocols();
|
2007-10-09 03:06:41 +04:00
|
|
|
for (int i = 0; i < count; i++)
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << (i == 0 ? '<' : ',') << refProtocols[i]->getName();
|
2007-10-09 03:06:41 +04:00
|
|
|
}
|
2007-11-29 00:32:21 +03:00
|
|
|
|
2007-10-09 03:06:41 +04:00
|
|
|
if (count > 0)
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << ">\n";
|
2007-10-09 03:06:41 +04:00
|
|
|
else
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << '\n';
|
2007-10-26 20:29:12 +04:00
|
|
|
|
2008-03-17 00:08:55 +03:00
|
|
|
if (OID->ivar_size() > 0) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << '{';
|
2008-01-07 22:49:32 +03:00
|
|
|
for (ObjCInterfaceDecl::ivar_iterator I = OID->ivar_begin(),
|
2007-12-12 10:56:42 +03:00
|
|
|
E = OID->ivar_end(); I != E; ++I) {
|
|
|
|
Out << '\t' << (*I)->getType().getAsString()
|
|
|
|
<< ' ' << (*I)->getName() << ";\n";
|
2007-10-26 20:29:12 +04:00
|
|
|
}
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "}\n";
|
2007-10-26 20:29:12 +04:00
|
|
|
}
|
2007-11-07 01:01:00 +03:00
|
|
|
|
2008-04-17 22:25:18 +04:00
|
|
|
for (ObjCInterfaceDecl::classprop_iterator I = OID->classprop_begin(),
|
|
|
|
E = OID->classprop_end(); I != E; ++I)
|
|
|
|
PrintObjCPropertyDecl(*I);
|
2007-11-29 00:32:21 +03:00
|
|
|
|
|
|
|
Out << "@end\n";
|
2007-09-11 00:51:04 +04:00
|
|
|
// FIXME: implement the rest...
|
|
|
|
}
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
void DeclPrinter::PrintObjCProtocolDecl(ObjCProtocolDecl *PID) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "@protocol " << PID->getName() << '\n';
|
2008-04-17 22:25:18 +04:00
|
|
|
|
|
|
|
for (ObjCProtocolDecl::classprop_iterator I = PID->classprop_begin(),
|
|
|
|
E = PID->classprop_end(); I != E; ++I)
|
|
|
|
PrintObjCPropertyDecl(*I);
|
|
|
|
Out << "@end\n";
|
2007-10-08 22:53:38 +04:00
|
|
|
// FIXME: implement the rest...
|
|
|
|
}
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
void DeclPrinter::PrintObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "@implementation "
|
|
|
|
<< PID->getClassInterface()->getName()
|
|
|
|
<< '(' << PID->getName() << ");\n";
|
2008-04-23 04:06:01 +04:00
|
|
|
for (ObjCCategoryImplDecl::propimpl_iterator I = PID->propimpl_begin(),
|
|
|
|
E = PID->propimpl_end(); I != E; ++I)
|
|
|
|
PrintObjCPropertyImplDecl(*I);
|
|
|
|
Out << "@end\n";
|
2007-10-08 22:53:38 +04:00
|
|
|
// FIXME: implement the rest...
|
|
|
|
}
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
void DeclPrinter::PrintObjCCategoryDecl(ObjCCategoryDecl *PID) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "@interface "
|
|
|
|
<< PID->getClassInterface()->getName()
|
|
|
|
<< '(' << PID->getName() << ");\n";
|
2008-04-17 01:08:45 +04:00
|
|
|
// Output property declarations.
|
2008-04-17 22:25:18 +04:00
|
|
|
for (ObjCCategoryDecl::classprop_iterator I = PID->classprop_begin(),
|
|
|
|
E = PID->classprop_end(); I != E; ++I)
|
|
|
|
PrintObjCPropertyDecl(*I);
|
2008-04-17 01:08:45 +04:00
|
|
|
Out << "@end\n";
|
|
|
|
|
2007-10-08 22:53:38 +04:00
|
|
|
// FIXME: implement the rest...
|
|
|
|
}
|
|
|
|
|
2008-01-07 22:49:32 +03:00
|
|
|
void DeclPrinter::PrintObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *AID) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "@compatibility_alias " << AID->getName()
|
|
|
|
<< ' ' << AID->getClassInterface()->getName() << ";\n";
|
2007-10-12 03:42:27 +04:00
|
|
|
}
|
|
|
|
|
2008-04-17 22:25:18 +04:00
|
|
|
/// PrintObjCPropertyDecl - print a property declaration.
|
|
|
|
///
|
|
|
|
void DeclPrinter::PrintObjCPropertyDecl(ObjCPropertyDecl *PDecl) {
|
2008-05-05 22:51:55 +04:00
|
|
|
if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required)
|
|
|
|
Out << "@required\n";
|
|
|
|
else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional)
|
|
|
|
Out << "@optional\n";
|
|
|
|
|
2008-04-17 22:25:18 +04:00
|
|
|
Out << "@property";
|
|
|
|
if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) {
|
|
|
|
bool first = true;
|
|
|
|
Out << " (";
|
|
|
|
if (PDecl->getPropertyAttributes() &
|
|
|
|
ObjCPropertyDecl::OBJC_PR_readonly) {
|
|
|
|
Out << (first ? ' ' : ',') << "readonly";
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
|
|
|
|
Out << (first ? ' ' : ',') << "getter = "
|
2008-05-06 22:09:04 +04:00
|
|
|
<< PDecl->getGetterName().getName();
|
2008-04-17 22:25:18 +04:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
|
|
|
|
Out << (first ? ' ' : ',') << "setter = "
|
2008-05-06 22:09:04 +04:00
|
|
|
<< PDecl->getSetterName().getName();
|
2008-04-17 22:25:18 +04:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) {
|
|
|
|
Out << (first ? ' ' : ',') << "assign";
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PDecl->getPropertyAttributes() &
|
|
|
|
ObjCPropertyDecl::OBJC_PR_readwrite) {
|
|
|
|
Out << (first ? ' ' : ',') << "readwrite";
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) {
|
|
|
|
Out << (first ? ' ' : ',') << "retain";
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) {
|
|
|
|
Out << (first ? ' ' : ',') << "copy";
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PDecl->getPropertyAttributes() &
|
|
|
|
ObjCPropertyDecl::OBJC_PR_nonatomic) {
|
|
|
|
Out << (first ? ' ' : ',') << "nonatomic";
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
Out << " )";
|
|
|
|
}
|
|
|
|
Out << ' ' << PDecl->getType().getAsString()
|
|
|
|
<< ' ' << PDecl->getName();
|
|
|
|
|
|
|
|
Out << ";\n";
|
|
|
|
}
|
2008-04-23 04:06:01 +04:00
|
|
|
|
|
|
|
/// PrintObjCPropertyImplDecl - Print an objective-c property implementation
|
|
|
|
/// declaration syntax.
|
|
|
|
///
|
|
|
|
void DeclPrinter::PrintObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) {
|
|
|
|
if (PID->getPropertyImplementation() ==
|
|
|
|
ObjCPropertyImplDecl::OBJC_PR_IMPL_SYNTHSIZE)
|
|
|
|
Out << "\n@synthesize ";
|
|
|
|
else
|
|
|
|
Out << "\n@dynamic ";
|
|
|
|
Out << PID->getPropertyDecl()->getName();
|
|
|
|
if (PID->getPropertyIvarDecl())
|
|
|
|
Out << "=" << PID->getPropertyIvarDecl()->getName();
|
|
|
|
Out << ";\n";
|
|
|
|
}
|
2007-11-28 00:46:50 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// ASTPrinter - Pretty-printer of ASTs
|
|
|
|
|
2007-09-16 03:02:28 +04:00
|
|
|
namespace {
|
2007-11-28 00:46:50 +03:00
|
|
|
class ASTPrinter : public ASTConsumer, public DeclPrinter {
|
|
|
|
public:
|
2007-11-29 00:32:21 +03:00
|
|
|
ASTPrinter(std::ostream* o = NULL) : DeclPrinter(o) {}
|
2007-11-28 00:46:50 +03:00
|
|
|
|
2007-09-16 03:02:28 +04:00
|
|
|
virtual void HandleTopLevelDecl(Decl *D) {
|
2008-01-03 00:04:16 +03:00
|
|
|
PrintDecl(D);
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2007-09-16 03:02:28 +04:00
|
|
|
};
|
2007-07-11 21:01:13 +04:00
|
|
|
}
|
2007-08-09 02:51:59 +04:00
|
|
|
|
2007-11-29 00:32:21 +03:00
|
|
|
ASTConsumer *clang::CreateASTPrinter(std::ostream* out) {
|
|
|
|
return new ASTPrinter(out);
|
|
|
|
}
|
2007-11-28 00:46:50 +03:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// ASTDumper - Low-level dumper of ASTs
|
2007-09-16 03:02:28 +04:00
|
|
|
|
|
|
|
namespace {
|
2007-11-28 00:46:50 +03:00
|
|
|
class ASTDumper : public ASTConsumer, public DeclPrinter {
|
2007-09-16 03:02:28 +04:00
|
|
|
SourceManager *SM;
|
|
|
|
public:
|
2007-11-29 00:32:21 +03:00
|
|
|
ASTDumper() : DeclPrinter() {}
|
2007-11-28 00:46:50 +03:00
|
|
|
|
2007-12-20 01:51:13 +03:00
|
|
|
void Initialize(ASTContext &Context) {
|
2007-12-12 00:27:55 +03:00
|
|
|
SM = &Context.getSourceManager();
|
2007-09-16 03:02:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void HandleTopLevelDecl(Decl *D) {
|
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
|
|
|
|
PrintFunctionDeclStart(FD);
|
|
|
|
|
|
|
|
if (FD->getBody()) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << '\n';
|
|
|
|
// FIXME: convert dumper to use std::ostream?
|
2007-09-16 03:02:28 +04:00
|
|
|
FD->getBody()->dumpAll(*SM);
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << '\n';
|
2007-09-16 03:02:28 +04:00
|
|
|
}
|
|
|
|
} else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
|
|
|
|
PrintTypeDefDecl(TD);
|
|
|
|
} else if (ScopedDecl *SD = dyn_cast<ScopedDecl>(D)) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "Read top-level variable decl: '" << SD->getName() << "'\n";
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(D)) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "Read objc interface '" << OID->getName() << "'\n";
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (ObjCProtocolDecl *OPD = dyn_cast<ObjCProtocolDecl>(D)) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "Read objc protocol '" << OPD->getName() << "'\n";
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (ObjCCategoryDecl *OCD = dyn_cast<ObjCCategoryDecl>(D)) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "Read objc category '" << OCD->getName() << "'\n";
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (isa<ObjCForwardProtocolDecl>(D)) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "Read objc fwd protocol decl\n";
|
2008-01-07 22:49:32 +03:00
|
|
|
} else if (isa<ObjCClassDecl>(D)) {
|
2007-11-29 00:32:21 +03:00
|
|
|
Out << "Read objc fwd class decl\n";
|
2008-02-08 03:33:21 +03:00
|
|
|
} else if (isa<FileScopeAsmDecl>(D)) {
|
|
|
|
Out << "Read file scope asm decl\n";
|
2008-03-14 20:31:00 +03:00
|
|
|
} else if (ObjCMethodDecl* MD = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
Out << "Read objc method decl: '" << MD->getSelector().getName()
|
|
|
|
<< "'\n";
|
|
|
|
} else if (isa<ObjCImplementationDecl>(D)) {
|
|
|
|
Out << "Read objc implementation decl\n";
|
|
|
|
}
|
|
|
|
else {
|
2007-10-06 22:52:10 +04:00
|
|
|
assert(0 && "Unknown decl type!");
|
2007-08-09 02:51:59 +04:00
|
|
|
}
|
|
|
|
}
|
2007-09-16 03:02:28 +04:00
|
|
|
};
|
2007-08-09 02:51:59 +04:00
|
|
|
}
|
|
|
|
|
2007-09-16 03:02:28 +04:00
|
|
|
ASTConsumer *clang::CreateASTDumper() { return new ASTDumper(); }
|
|
|
|
|
2007-11-28 00:46:50 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// ASTViewer - AST Visualization
|
|
|
|
|
2007-09-20 01:29:43 +04:00
|
|
|
namespace {
|
|
|
|
class ASTViewer : public ASTConsumer {
|
|
|
|
SourceManager *SM;
|
|
|
|
public:
|
2007-12-20 01:51:13 +03:00
|
|
|
void Initialize(ASTContext &Context) {
|
2007-12-12 00:27:55 +03:00
|
|
|
SM = &Context.getSourceManager();
|
2007-09-20 01:29:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void HandleTopLevelDecl(Decl *D) {
|
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
|
2007-11-29 00:32:21 +03:00
|
|
|
DeclPrinter().PrintFunctionDeclStart(FD);
|
2007-09-20 01:29:43 +04:00
|
|
|
|
|
|
|
if (FD->getBody()) {
|
2007-11-29 00:32:21 +03:00
|
|
|
llvm::cerr << '\n';
|
2007-09-20 01:29:43 +04:00
|
|
|
FD->getBody()->viewAST();
|
2007-11-29 00:32:21 +03:00
|
|
|
llvm::cerr << '\n';
|
2007-09-20 01:29:43 +04:00
|
|
|
}
|
|
|
|
}
|
2008-03-14 20:31:00 +03:00
|
|
|
else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
DeclPrinter().PrintObjCMethodDecl(MD);
|
|
|
|
|
|
|
|
if (MD->getBody()) {
|
|
|
|
llvm::cerr << '\n';
|
|
|
|
MD->getBody()->viewAST();
|
|
|
|
llvm::cerr << '\n';
|
|
|
|
}
|
|
|
|
}
|
2007-09-20 01:29:43 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
ASTConsumer *clang::CreateASTViewer() { return new ASTViewer(); }
|
|
|
|
|
|
|
|
|
2007-09-08 03:47:56 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// CFGVisitor & VisitCFGs - Boilerplate interface and logic to visit
|
|
|
|
// the CFGs for all function definitions.
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2007-09-16 03:21:08 +04:00
|
|
|
class CFGVisitor : public ASTConsumer {
|
2008-02-22 23:00:31 +03:00
|
|
|
std::string FName;
|
2007-09-08 03:47:56 +04:00
|
|
|
public:
|
2008-02-22 23:00:31 +03:00
|
|
|
CFGVisitor(const std::string& fname) : FName(fname) {}
|
|
|
|
CFGVisitor() : FName("") {}
|
|
|
|
|
2007-09-16 03:21:08 +04:00
|
|
|
// CFG Visitor interface to be implemented by subclass.
|
2008-03-14 20:31:00 +03:00
|
|
|
virtual void VisitCFG(CFG& C, Decl& CD) = 0;
|
2007-09-08 03:47:56 +04:00
|
|
|
virtual bool printFuncDeclStart() { return true; }
|
2007-09-16 03:21:08 +04:00
|
|
|
|
|
|
|
virtual void HandleTopLevelDecl(Decl *D);
|
2007-09-08 03:47:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2007-09-16 03:21:08 +04:00
|
|
|
void CFGVisitor::HandleTopLevelDecl(Decl *D) {
|
2008-03-14 20:31:00 +03:00
|
|
|
|
|
|
|
CFG *C = NULL;
|
|
|
|
|
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
|
2008-02-22 23:00:31 +03:00
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
if (!FD->getBody())
|
|
|
|
return;
|
2008-02-22 23:00:31 +03:00
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
if (FName.size() > 0 && FName != FD->getIdentifier()->getName())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (printFuncDeclStart()) {
|
|
|
|
DeclPrinter().PrintFunctionDeclStart(FD);
|
|
|
|
llvm::cerr << '\n';
|
|
|
|
}
|
2007-09-16 03:21:08 +04:00
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
C = CFG::buildCFG(FD->getBody());
|
2007-08-22 01:42:03 +04:00
|
|
|
}
|
2008-03-14 20:31:00 +03:00
|
|
|
else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
|
|
|
|
if (!MD->getBody())
|
|
|
|
return;
|
2008-03-14 21:14:50 +03:00
|
|
|
|
|
|
|
if (FName.size() > 0 && FName != MD->getSelector().getName())
|
|
|
|
return;
|
2008-03-14 20:31:00 +03:00
|
|
|
|
|
|
|
if (printFuncDeclStart()) {
|
|
|
|
DeclPrinter().PrintObjCMethodDecl(MD);
|
|
|
|
llvm::cerr << '\n';
|
|
|
|
}
|
2007-09-16 03:21:08 +04:00
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
C = CFG::buildCFG(MD->getBody());
|
|
|
|
}
|
2008-03-13 06:04:22 +03:00
|
|
|
|
|
|
|
if (C) {
|
2008-03-14 20:31:00 +03:00
|
|
|
VisitCFG(*C, *D);
|
2008-03-13 06:04:22 +03:00
|
|
|
delete C;
|
|
|
|
}
|
2007-08-22 01:42:03 +04:00
|
|
|
}
|
|
|
|
|
2007-09-08 03:47:56 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DumpCFGs - Dump CFGs to stderr or visualize with Graphviz
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class CFGDumper : public CFGVisitor {
|
|
|
|
const bool UseGraphviz;
|
|
|
|
public:
|
2008-02-22 23:00:31 +03:00
|
|
|
CFGDumper(bool use_graphviz, const std::string& fname)
|
|
|
|
: CFGVisitor(fname), UseGraphviz(use_graphviz) {}
|
2007-09-08 03:47:56 +04:00
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
virtual void VisitCFG(CFG& C, Decl&) {
|
2007-09-16 03:21:08 +04:00
|
|
|
if (UseGraphviz)
|
|
|
|
C.viewCFG();
|
|
|
|
else
|
|
|
|
C.dump();
|
|
|
|
}
|
2007-09-08 03:47:56 +04:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
2007-09-06 04:17:54 +04:00
|
|
|
|
2008-02-22 23:00:31 +03:00
|
|
|
ASTConsumer *clang::CreateCFGDumper(bool ViewGraphs, const std::string& FName) {
|
|
|
|
return new CFGDumper(ViewGraphs, FName);
|
2007-09-06 04:17:54 +04:00
|
|
|
}
|
|
|
|
|
2007-09-08 03:47:56 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AnalyzeLiveVariables - perform live variable analysis and dump results
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class LivenessVisitor : public CFGVisitor {
|
2007-09-16 03:21:08 +04:00
|
|
|
SourceManager *SM;
|
2007-09-08 03:47:56 +04:00
|
|
|
public:
|
2008-02-22 23:13:09 +03:00
|
|
|
LivenessVisitor(const std::string& fname) : CFGVisitor(fname) {}
|
|
|
|
|
2007-12-20 01:51:13 +03:00
|
|
|
virtual void Initialize(ASTContext &Context) {
|
2007-12-12 00:27:55 +03:00
|
|
|
SM = &Context.getSourceManager();
|
2007-09-16 03:21:08 +04:00
|
|
|
}
|
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
virtual void VisitCFG(CFG& C, Decl& CD) {
|
2008-03-13 19:55:07 +03:00
|
|
|
LiveVariables L(C);
|
2007-09-08 03:47:56 +04:00
|
|
|
L.runOnCFG(C);
|
2007-09-25 08:31:27 +04:00
|
|
|
L.dumpBlockLiveness(*SM);
|
2007-09-07 03:00:42 +04:00
|
|
|
}
|
2007-09-08 03:47:56 +04:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
2007-09-07 03:00:42 +04:00
|
|
|
|
2008-02-22 23:13:09 +03:00
|
|
|
ASTConsumer *clang::CreateLiveVarAnalyzer(const std::string& fname) {
|
|
|
|
return new LivenessVisitor(fname);
|
2007-09-07 03:00:42 +04:00
|
|
|
}
|
|
|
|
|
2007-09-08 03:47:56 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-09-18 00:49:30 +04:00
|
|
|
// DeadStores - run checker to locate dead stores in a function
|
2007-09-08 03:47:56 +04:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
class DeadStoreVisitor : public CFGVisitor {
|
2007-09-16 03:21:08 +04:00
|
|
|
Diagnostic &Diags;
|
|
|
|
ASTContext *Ctx;
|
2007-09-08 03:47:56 +04:00
|
|
|
public:
|
2007-09-16 03:21:08 +04:00
|
|
|
DeadStoreVisitor(Diagnostic &diags) : Diags(diags) {}
|
2007-12-20 01:51:13 +03:00
|
|
|
virtual void Initialize(ASTContext &Context) {
|
2007-09-16 03:21:08 +04:00
|
|
|
Ctx = &Context;
|
|
|
|
}
|
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
virtual void VisitCFG(CFG& C, Decl& CD) {
|
2008-03-13 19:55:07 +03:00
|
|
|
CheckDeadStores(C, *Ctx, Diags);
|
2008-01-29 08:13:23 +03:00
|
|
|
}
|
|
|
|
|
2007-09-08 03:54:15 +04:00
|
|
|
virtual bool printFuncDeclStart() { return false; }
|
2007-09-08 03:47:56 +04:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
2007-08-09 02:51:59 +04:00
|
|
|
|
2007-09-16 03:21:08 +04:00
|
|
|
ASTConsumer *clang::CreateDeadStoreChecker(Diagnostic &Diags) {
|
|
|
|
return new DeadStoreVisitor(Diags);
|
2007-09-08 03:47:56 +04:00
|
|
|
}
|
2007-09-16 23:46:59 +04:00
|
|
|
|
2007-09-18 00:49:30 +04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Unitialized Values - run checker to flag potential uses of uninitalized
|
|
|
|
// variables.
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class UninitValsVisitor : public CFGVisitor {
|
|
|
|
Diagnostic &Diags;
|
|
|
|
ASTContext *Ctx;
|
|
|
|
public:
|
|
|
|
UninitValsVisitor(Diagnostic &diags) : Diags(diags) {}
|
2007-12-20 01:51:13 +03:00
|
|
|
virtual void Initialize(ASTContext &Context) {
|
2007-09-18 00:49:30 +04:00
|
|
|
Ctx = &Context;
|
|
|
|
}
|
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
virtual void VisitCFG(CFG& C, Decl&) {
|
2008-01-29 08:13:23 +03:00
|
|
|
CheckUninitializedValues(C, *Ctx, Diags);
|
|
|
|
}
|
|
|
|
|
2007-09-18 00:49:30 +04:00
|
|
|
virtual bool printFuncDeclStart() { return false; }
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
ASTConsumer *clang::CreateUnitValsChecker(Diagnostic &Diags) {
|
|
|
|
return new UninitValsVisitor(Diags);
|
|
|
|
}
|
|
|
|
|
2008-01-08 21:04:06 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-04-16 20:39:56 +04:00
|
|
|
// CheckerConsumer - Generic Driver for running intra-procedural path-sensitive
|
2008-04-11 02:16:52 +04:00
|
|
|
// analyses.
|
2008-01-08 21:04:06 +03:00
|
|
|
|
|
|
|
namespace {
|
2008-02-19 00:21:23 +03:00
|
|
|
|
2008-04-11 02:16:52 +04:00
|
|
|
class CheckerConsumer : public CFGVisitor {
|
2008-04-11 02:58:08 +04:00
|
|
|
protected:
|
2008-04-11 02:16:52 +04:00
|
|
|
Diagnostic &Diags;
|
|
|
|
ASTContext* Ctx;
|
2008-04-16 20:39:56 +04:00
|
|
|
Preprocessor* PP;
|
2008-04-18 02:31:54 +04:00
|
|
|
PreprocessorFactory* PPF;
|
2008-04-11 02:16:52 +04:00
|
|
|
const std::string& HTMLDir;
|
|
|
|
bool Visualize;
|
|
|
|
bool TrimGraph;
|
|
|
|
llvm::OwningPtr<PathDiagnosticClient> PD;
|
2008-04-14 22:40:58 +04:00
|
|
|
bool AnalyzeAll;
|
2008-04-11 02:16:52 +04:00
|
|
|
public:
|
2008-04-18 02:31:54 +04:00
|
|
|
CheckerConsumer(Diagnostic &diags, Preprocessor* pp, PreprocessorFactory* ppf,
|
2008-04-16 20:39:56 +04:00
|
|
|
const std::string& fname,
|
|
|
|
const std::string& htmldir,
|
|
|
|
bool visualize, bool trim, bool analyzeAll)
|
2008-04-18 02:31:54 +04:00
|
|
|
: CFGVisitor(fname), Diags(diags), PP(pp), PPF(ppf), HTMLDir(htmldir),
|
2008-04-14 22:40:58 +04:00
|
|
|
Visualize(visualize), TrimGraph(trim), AnalyzeAll(analyzeAll) {}
|
2008-04-11 02:16:52 +04:00
|
|
|
|
|
|
|
virtual void Initialize(ASTContext &Context) { Ctx = &Context; }
|
|
|
|
virtual void VisitCFG(CFG& C, Decl&);
|
|
|
|
virtual bool printFuncDeclStart() { return false; }
|
|
|
|
|
|
|
|
virtual const char* getCheckerName() = 0;
|
2008-04-29 09:13:59 +04:00
|
|
|
virtual void getTransferFunctions(std::vector<GRTransferFuncs*>& TFs) = 0;
|
2008-04-11 02:16:52 +04:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
2008-01-08 21:04:06 +03:00
|
|
|
|
2008-04-11 02:16:52 +04:00
|
|
|
void CheckerConsumer::VisitCFG(CFG& C, Decl& CD) {
|
2008-02-19 00:21:23 +03:00
|
|
|
|
2008-03-27 20:14:42 +03:00
|
|
|
if (Diags.hasErrorOccurred())
|
|
|
|
return;
|
|
|
|
|
2008-03-14 20:31:00 +03:00
|
|
|
SourceLocation Loc = CD.getLocation();
|
2008-04-11 02:16:52 +04:00
|
|
|
|
2008-04-14 22:40:58 +04:00
|
|
|
if (!Loc.isFileID())
|
|
|
|
return;
|
|
|
|
|
2008-04-15 01:14:41 +04:00
|
|
|
if (!AnalyzeAll && !Ctx->getSourceManager().isFromMainFile(Loc))
|
2008-02-22 22:10:58 +03:00
|
|
|
return;
|
2008-04-11 02:16:52 +04:00
|
|
|
|
|
|
|
// Lazily create the diagnostic client.
|
|
|
|
|
|
|
|
if (!HTMLDir.empty() && PD.get() == NULL)
|
2008-04-18 02:31:54 +04:00
|
|
|
PD.reset(CreateHTMLDiagnosticClient(HTMLDir, PP, PPF));
|
2008-04-11 02:16:52 +04:00
|
|
|
|
2008-03-14 21:14:50 +03:00
|
|
|
|
2008-02-19 00:21:23 +03:00
|
|
|
if (!Visualize) {
|
2008-03-14 20:31:00 +03:00
|
|
|
|
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(&CD)) {
|
2008-04-01 03:14:05 +04:00
|
|
|
llvm::cerr << "ANALYZE: "
|
2008-04-11 02:16:52 +04:00
|
|
|
<< Ctx->getSourceManager().getSourceName(FD->getLocation())
|
|
|
|
<< ' '
|
|
|
|
<< FD->getIdentifier()->getName()
|
|
|
|
<< '\n';
|
2008-03-14 20:31:00 +03:00
|
|
|
}
|
|
|
|
else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(&CD)) {
|
2008-04-01 03:14:05 +04:00
|
|
|
llvm::cerr << "ANALYZE (ObjC Method): "
|
2008-04-11 02:16:52 +04:00
|
|
|
<< Ctx->getSourceManager().getSourceName(MD->getLocation())
|
|
|
|
<< " '"
|
|
|
|
<< MD->getSelector().getName() << "'\n";
|
2008-03-14 20:31:00 +03:00
|
|
|
}
|
2008-02-19 00:21:23 +03:00
|
|
|
}
|
2008-04-11 02:16:52 +04:00
|
|
|
else
|
2008-02-19 00:21:23 +03:00
|
|
|
llvm::cerr << '\n';
|
2008-04-11 02:16:52 +04:00
|
|
|
|
2008-04-29 09:13:59 +04:00
|
|
|
std::vector<GRTransferFuncs*> TFs;
|
|
|
|
getTransferFunctions(TFs);
|
2008-04-11 02:16:52 +04:00
|
|
|
|
2008-04-29 09:13:59 +04:00
|
|
|
while (!TFs.empty()) {
|
|
|
|
|
|
|
|
// Construct the analysis engine.
|
|
|
|
GRExprEngine Eng(C, CD, *Ctx);
|
|
|
|
|
|
|
|
// Set base transfer functions.
|
|
|
|
llvm::OwningPtr<GRTransferFuncs> TF(TFs.back());
|
|
|
|
TFs.pop_back();
|
|
|
|
|
|
|
|
Eng.setTransferFunctions(TF.get());
|
|
|
|
|
|
|
|
// Execute the worklist algorithm.
|
|
|
|
Eng.ExecuteWorkList();
|
|
|
|
|
|
|
|
// Display warnings.
|
|
|
|
Eng.EmitWarnings(Diags, PD.get());
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (Visualize) Eng.ViewGraph(TrimGraph);
|
|
|
|
#endif
|
|
|
|
}
|
2008-01-29 03:33:40 +03:00
|
|
|
}
|
|
|
|
|
2008-03-06 03:08:09 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-04-11 02:16:52 +04:00
|
|
|
// GRSimpleVals - Perform intra-procedural, path-sensitive constant propagation.
|
2008-03-06 03:08:09 +03:00
|
|
|
|
|
|
|
namespace {
|
2008-04-11 02:16:52 +04:00
|
|
|
class GRSimpleValsVisitor : public CheckerConsumer {
|
|
|
|
public:
|
2008-04-16 20:39:56 +04:00
|
|
|
GRSimpleValsVisitor(Diagnostic &diags, Preprocessor* pp,
|
2008-04-18 02:31:54 +04:00
|
|
|
PreprocessorFactory* ppf,
|
2008-04-16 20:39:56 +04:00
|
|
|
const std::string& fname, const std::string& htmldir,
|
2008-04-14 22:40:58 +04:00
|
|
|
bool visualize, bool trim, bool analyzeAll)
|
2008-04-18 02:31:54 +04:00
|
|
|
: CheckerConsumer(diags, pp, ppf, fname, htmldir, visualize,
|
|
|
|
trim, analyzeAll) {}
|
2008-03-06 03:08:09 +03:00
|
|
|
|
2008-04-11 02:16:52 +04:00
|
|
|
virtual const char* getCheckerName() { return "GRSimpleVals"; }
|
|
|
|
|
2008-04-29 09:13:59 +04:00
|
|
|
virtual void getTransferFunctions(std::vector<GRTransferFuncs*>& TFs) {
|
|
|
|
return TFs.push_back(MakeGRSimpleValsTF());
|
2008-04-11 02:16:52 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
2008-03-06 03:08:09 +03:00
|
|
|
|
2008-04-11 02:16:52 +04:00
|
|
|
ASTConsumer* clang::CreateGRSimpleVals(Diagnostic &Diags,
|
2008-04-16 20:39:56 +04:00
|
|
|
Preprocessor* PP,
|
2008-04-18 02:31:54 +04:00
|
|
|
PreprocessorFactory* PPF,
|
2008-03-31 22:26:32 +04:00
|
|
|
const std::string& FunctionName,
|
2008-04-11 02:16:52 +04:00
|
|
|
const std::string& HTMLDir,
|
2008-04-14 22:40:58 +04:00
|
|
|
bool Visualize, bool TrimGraph,
|
|
|
|
bool AnalyzeAll) {
|
2008-03-06 03:08:09 +03:00
|
|
|
|
2008-04-18 02:31:54 +04:00
|
|
|
return new GRSimpleValsVisitor(Diags, PP, PPF, FunctionName, HTMLDir,
|
2008-04-14 22:40:58 +04:00
|
|
|
Visualize, TrimGraph, AnalyzeAll);
|
2008-03-06 03:08:09 +03:00
|
|
|
}
|
|
|
|
|
2008-04-11 02:16:52 +04:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Core Foundation Reference Counting Checker
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class CFRefCountCheckerVisitor : public CheckerConsumer {
|
2008-04-29 09:13:59 +04:00
|
|
|
const LangOptions& LangOpts;
|
2008-04-11 02:16:52 +04:00
|
|
|
public:
|
2008-04-16 20:39:56 +04:00
|
|
|
CFRefCountCheckerVisitor(Diagnostic &diags, Preprocessor* pp,
|
2008-04-18 02:31:54 +04:00
|
|
|
PreprocessorFactory* ppf,
|
2008-04-29 09:13:59 +04:00
|
|
|
const LangOptions& lopts,
|
2008-04-16 20:39:56 +04:00
|
|
|
const std::string& fname,
|
|
|
|
const std::string& htmldir,
|
|
|
|
bool visualize, bool trim, bool analyzeAll)
|
2008-04-18 02:31:54 +04:00
|
|
|
: CheckerConsumer(diags, pp, ppf, fname, htmldir, visualize,
|
2008-04-29 09:13:59 +04:00
|
|
|
trim, analyzeAll), LangOpts(lopts) {}
|
2008-03-06 03:08:09 +03:00
|
|
|
|
2008-04-11 02:16:52 +04:00
|
|
|
virtual const char* getCheckerName() { return "CFRefCountChecker"; }
|
|
|
|
|
2008-04-29 09:13:59 +04:00
|
|
|
virtual void getTransferFunctions(std::vector<GRTransferFuncs*>& TFs) {
|
|
|
|
switch (LangOpts.getGCMode()) {
|
|
|
|
case LangOptions::NonGC:
|
2008-05-02 22:01:49 +04:00
|
|
|
TFs.push_back(MakeCFRefCountTF(*Ctx, false, true, LangOpts));
|
2008-04-29 09:13:59 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LangOptions::GCOnly:
|
2008-05-02 22:01:49 +04:00
|
|
|
TFs.push_back(MakeCFRefCountTF(*Ctx, true, true, LangOpts));
|
2008-04-29 09:13:59 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LangOptions::HybridGC:
|
2008-05-02 22:01:49 +04:00
|
|
|
TFs.push_back(MakeCFRefCountTF(*Ctx, false, true, LangOpts));
|
|
|
|
TFs.push_back(MakeCFRefCountTF(*Ctx, true, false, LangOpts));
|
2008-04-29 09:13:59 +04:00
|
|
|
break;
|
|
|
|
}
|
2008-04-11 02:16:52 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
ASTConsumer* clang::CreateCFRefChecker(Diagnostic &Diags,
|
2008-04-16 20:39:56 +04:00
|
|
|
Preprocessor* PP,
|
2008-04-18 02:31:54 +04:00
|
|
|
PreprocessorFactory* PPF,
|
2008-04-29 09:13:59 +04:00
|
|
|
const LangOptions& LangOpts,
|
2008-04-11 02:16:52 +04:00
|
|
|
const std::string& FunctionName,
|
|
|
|
const std::string& HTMLDir,
|
2008-04-14 22:40:58 +04:00
|
|
|
bool Visualize, bool TrimGraph,
|
|
|
|
bool AnalyzeAll) {
|
2008-04-11 02:16:52 +04:00
|
|
|
|
2008-04-29 09:13:59 +04:00
|
|
|
return new CFRefCountCheckerVisitor(Diags, PP, PPF, LangOpts, FunctionName,
|
|
|
|
HTMLDir, Visualize, TrimGraph,
|
|
|
|
AnalyzeAll);
|
2008-03-06 03:08:09 +03:00
|
|
|
}
|
|
|
|
|
2007-12-13 03:37:31 +03:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AST Serializer
|
|
|
|
|
|
|
|
namespace {
|
2007-12-20 02:49:37 +03:00
|
|
|
|
|
|
|
class ASTSerializer : public ASTConsumer {
|
|
|
|
protected:
|
|
|
|
Diagnostic &Diags;
|
2008-04-23 20:25:39 +04:00
|
|
|
const LangOptions& lang;
|
|
|
|
TranslationUnit* TU;
|
|
|
|
|
2007-12-20 02:49:37 +03:00
|
|
|
public:
|
|
|
|
ASTSerializer(Diagnostic& diags, const LangOptions& LO)
|
2008-04-23 20:25:39 +04:00
|
|
|
: Diags(diags), lang(LO), TU(0) {}
|
|
|
|
|
|
|
|
virtual ~ASTSerializer() { delete TU; }
|
2007-12-20 02:49:37 +03:00
|
|
|
|
|
|
|
virtual void Initialize(ASTContext &Context) {
|
2008-04-23 20:25:39 +04:00
|
|
|
if (!TU) TU = new TranslationUnit(Context, lang);
|
2007-12-20 02:49:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void HandleTopLevelDecl(Decl *D) {
|
|
|
|
if (Diags.hasErrorOccurred())
|
|
|
|
return;
|
2007-12-13 03:37:31 +03:00
|
|
|
|
2008-04-23 20:25:39 +04:00
|
|
|
if (TU) TU->AddTopLevelDecl(D);
|
2007-12-20 02:49:37 +03:00
|
|
|
}
|
|
|
|
};
|
2007-12-13 03:37:31 +03:00
|
|
|
|
2007-12-20 02:49:37 +03:00
|
|
|
class SingleFileSerializer : public ASTSerializer {
|
|
|
|
const llvm::sys::Path FName;
|
|
|
|
public:
|
|
|
|
SingleFileSerializer(const llvm::sys::Path& F, Diagnostic &diags,
|
|
|
|
const LangOptions &LO)
|
|
|
|
: ASTSerializer(diags,LO), FName(F) {}
|
|
|
|
|
|
|
|
~SingleFileSerializer() {
|
2008-04-23 20:25:39 +04:00
|
|
|
EmitASTBitcodeFile(TU, FName);
|
2007-12-20 02:49:37 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class BuildSerializer : public ASTSerializer {
|
|
|
|
llvm::sys::Path EmitDir;
|
|
|
|
public:
|
|
|
|
BuildSerializer(const llvm::sys::Path& dir, Diagnostic &diags,
|
|
|
|
const LangOptions &LO)
|
|
|
|
: ASTSerializer(diags,LO), EmitDir(dir) {}
|
|
|
|
|
2007-12-20 03:34:58 +03:00
|
|
|
~BuildSerializer() {
|
2008-04-23 20:25:39 +04:00
|
|
|
|
|
|
|
if (!TU)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SourceManager& SourceMgr = TU->getContext().getSourceManager();
|
2007-12-20 03:34:58 +03:00
|
|
|
unsigned ID = SourceMgr.getMainFileID();
|
|
|
|
assert (ID && "MainFileID not set!");
|
|
|
|
const FileEntry* FE = SourceMgr.getFileEntryForID(ID);
|
|
|
|
assert (FE && "No FileEntry for main file.");
|
|
|
|
|
|
|
|
// FIXME: This is not portable to Windows.
|
|
|
|
// FIXME: This logic should probably be moved elsewhere later.
|
|
|
|
|
2007-12-20 22:47:16 +03:00
|
|
|
llvm::sys::Path FName(EmitDir);
|
2007-12-20 03:34:58 +03:00
|
|
|
|
|
|
|
std::vector<char> buf;
|
|
|
|
buf.reserve(strlen(FE->getName())+100);
|
|
|
|
|
|
|
|
sprintf(&buf[0], "dev_%llx", (uint64_t) FE->getDevice());
|
2007-12-20 22:47:16 +03:00
|
|
|
FName.appendComponent(&buf[0]);
|
|
|
|
FName.createDirectoryOnDisk(true);
|
|
|
|
if (!FName.canWrite() || !FName.isDirectory()) {
|
2007-12-20 03:34:58 +03:00
|
|
|
assert (false && "Could not create 'device' serialization directory.");
|
|
|
|
return;
|
|
|
|
}
|
2007-12-20 22:47:16 +03:00
|
|
|
|
2007-12-20 03:34:58 +03:00
|
|
|
sprintf(&buf[0], "%s-%llX.ast", FE->getName(), (uint64_t) FE->getInode());
|
2007-12-20 22:47:16 +03:00
|
|
|
FName.appendComponent(&buf[0]);
|
2008-04-23 20:25:39 +04:00
|
|
|
EmitASTBitcodeFile(TU, FName);
|
2007-12-20 22:47:16 +03:00
|
|
|
|
|
|
|
// Now emit the sources.
|
2007-12-20 03:34:58 +03:00
|
|
|
|
|
|
|
}
|
2007-12-20 02:49:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-12-13 03:37:31 +03:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
|
2007-12-20 01:24:34 +03:00
|
|
|
ASTConsumer* clang::CreateASTSerializer(const std::string& InFile,
|
2007-12-20 02:49:37 +03:00
|
|
|
const std::string& OutputFile,
|
2007-12-13 03:37:31 +03:00
|
|
|
Diagnostic &Diags,
|
|
|
|
const LangOptions &Features) {
|
2007-12-19 20:25:59 +03:00
|
|
|
|
2007-12-20 02:49:37 +03:00
|
|
|
if (OutputFile.size()) {
|
2007-12-20 03:34:58 +03:00
|
|
|
if (InFile == "-") {
|
|
|
|
llvm::cerr <<
|
|
|
|
"error: Cannot use --serialize with -o for source read from STDIN.\n";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-20 02:49:37 +03:00
|
|
|
// The user specified an AST-emission directory. Determine if the path
|
|
|
|
// is absolute.
|
|
|
|
llvm::sys::Path EmitDir(OutputFile);
|
|
|
|
|
|
|
|
if (!EmitDir.isAbsolute()) {
|
|
|
|
llvm::cerr <<
|
|
|
|
"error: Output directory for --serialize must be an absolute path.\n";
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the directory if it does not exist.
|
|
|
|
EmitDir.createDirectoryOnDisk(true);
|
|
|
|
if (!EmitDir.canWrite() || !EmitDir.isDirectory()) {
|
|
|
|
llvm::cerr <<
|
|
|
|
"error: Could not create output directory for --serialize.\n";
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-20 03:34:58 +03:00
|
|
|
// FIXME: We should probably only allow using BuildSerializer when
|
|
|
|
// the ASTs come from parsed source files, and not from .ast files.
|
2007-12-20 02:49:37 +03:00
|
|
|
return new BuildSerializer(EmitDir, Diags, Features);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The user did not specify an output directory for serialized ASTs.
|
|
|
|
// Serialize the translation to a single file whose name is the same
|
|
|
|
// as the input file with the ".ast" extension appended.
|
2007-12-19 20:25:59 +03:00
|
|
|
|
2007-12-20 02:49:37 +03:00
|
|
|
llvm::sys::Path FName(InFile.c_str());
|
2007-12-20 03:34:58 +03:00
|
|
|
FName.appendSuffix("ast");
|
2007-12-20 02:49:37 +03:00
|
|
|
return new SingleFileSerializer(FName, Diags, Features);
|
2007-12-13 03:37:31 +03:00
|
|
|
}
|