Skip to content

Commit

Permalink
Run "make h2j && ./h2j" to see all of julia.h's function signatures.
Browse files Browse the repository at this point in the history
This requires downloading and compiling clang under LLVM:

  cd external/llvm-3.0/tools
  svn co http:https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_30/final/ clang
  cd ..
  make
  • Loading branch information
StefanKarpinski committed Dec 30, 2011
1 parent 4395ac5 commit cf6f13f
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
*#

/tmp
/README.html

/julia
/julia-debug-*
Expand All @@ -13,4 +12,4 @@
/libjulia-release.dylib

/sys.ji
/boot.j.inc
/h2j
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ install: release
cp -r examples $(DESTDIR)/usr/share/julia
cp -r sys.ji $(DESTDIR)/usr/share/julia

h2j: lib/libLLVM*.a lib/libclang*.a src/h2j.cpp
g++ -O2 -fno-rtti -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -Iinclude $^ -o $@

clean:
rm -f julia
rm -f *~ *#
Expand Down
77 changes: 77 additions & 0 deletions src/h2j.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
#include <iostream>

#include "llvm/Support/Host.h"
#include "llvm/Support/raw_ostream.h"

#include "clang/AST/AST.h"
#include "clang/AST/ASTConsumer.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/DeclGroup.h"
#include "clang/Basic/Diagnostic.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/Basic/TargetOptions.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Parse/ParseAST.h"
#include "clang/Parse/Parser.h"

using namespace std;
using namespace clang;

class PrintFunctionsConsumer : public ASTConsumer {
public:
virtual void HandleTopLevelDecl(DeclGroupRef DG) {
for (DeclGroupRef::iterator i = DG.begin(), e = DG.end(); i != e; ++i) {
const Decl *D = *i;
const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
if (!FD || !FD->hasPrototype() || !FD->isExternC() || !FD->isGlobal()) return;
cout << FD->getResultType().getAsString() << " ";
cout << FD->getNameAsString() << "(";
bool printComma = false;
FunctionDecl::param_const_iterator I = FD->param_begin(),
E = FD->param_end();
while (I != E) {
ParmVarDecl *PVD = *I++;
if (printComma) cout << ", ";
cout << PVD->getOriginalType().getAsString();
printComma = true;
}
cout << ");\n";
}
}
};

int main()
{
CompilerInstance ci;
ci.createDiagnostics(0,NULL);

TargetOptions to;
to.Triple = llvm::sys::getHostTriple();
TargetInfo *pti = TargetInfo::CreateTargetInfo(ci.getDiagnostics(), to);
ci.setTarget(pti);

ci.getHeaderSearchOpts().AddPath(
StringRef("lib/clang/3.0/include"), frontend::Angled, false, false, false
);
ci.getHeaderSearchOpts().AddPath(
StringRef("src/support"), frontend::Quoted, true, false, false
);

ci.createFileManager();
ci.createSourceManager(ci.getFileManager());
ci.createPreprocessor();
PrintFunctionsConsumer *astConsumer = new PrintFunctionsConsumer();
ci.setASTConsumer(astConsumer);

ci.createASTContext();
const FileEntry *pFile = ci.getFileManager().getFile("src/julia.h");
ci.getSourceManager().createMainFileID(pFile);
ci.getDiagnosticClient().BeginSourceFile(ci.getLangOpts(), &ci.getPreprocessor());
clang::ParseAST(ci.getPreprocessor(), astConsumer, ci.getASTContext());
ci.getDiagnosticClient().EndSourceFile();

return 0;
}

0 comments on commit cf6f13f

Please sign in to comment.