blob: 4eaa1dddc5e48ca9507eb7af57532147ecd4c6e5 [file] [log] [blame]
Daniel Dunbare2246282010-02-25 08:49:05 +00001//===-- examples/clang-interpreter/main.cpp - Clang C Interpreter Example -===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "clang/Driver/Compilation.h"
11#include "clang/Driver/Driver.h"
12#include "clang/Driver/Tool.h"
13#include "clang/Frontend/CodeGenAction.h"
14#include "clang/Frontend/CompilerInvocation.h"
15#include "clang/Frontend/CompilerInstance.h"
16#include "clang/Frontend/DiagnosticOptions.h"
17#include "clang/Frontend/FrontendDiagnostic.h"
18#include "clang/Frontend/TextDiagnosticPrinter.h"
19
20#include "llvm/LLVMContext.h"
21#include "llvm/Module.h"
22#include "llvm/Config/config.h"
23#include "llvm/ADT/OwningPtr.h"
24#include "llvm/ADT/SmallString.h"
25#include "llvm/Config/config.h"
26#include "llvm/ExecutionEngine/ExecutionEngine.h"
27#include "llvm/Support/ManagedStatic.h"
28#include "llvm/Support/raw_ostream.h"
29#include "llvm/System/Host.h"
30#include "llvm/System/Path.h"
31#include "llvm/Target/TargetSelect.h"
32using namespace clang;
33using namespace clang::driver;
34
35llvm::sys::Path GetExecutablePath(const char *Argv0) {
36 // This just needs to be some symbol in the binary; C++ doesn't
37 // allow taking the address of ::main however.
38 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
39 return llvm::sys::Path::GetMainExecutable(Argv0, MainAddr);
40}
41
42int Execute(llvm::Module *Mod, char * const *envp) {
43 llvm::InitializeNativeTarget();
44
45 std::string Error;
46 llvm::OwningPtr<llvm::ExecutionEngine> EE(
47 llvm::ExecutionEngine::createJIT(Mod, &Error));
48 if (!EE) {
49 llvm::errs() << "unable to make execution engine: " << Error << "\n";
50 return 255;
51 }
52
53 llvm::Function *EntryFn = Mod->getFunction("main");
54 if (!EntryFn) {
55 llvm::errs() << "'main' function not found in module.\n";
56 return 255;
57 }
58
59 // FIXME: Support passing arguments.
60 std::vector<std::string> Args;
61 Args.push_back(Mod->getModuleIdentifier());
62
63 return EE->runFunctionAsMain(EntryFn, Args, envp);
64}
65
66int main(int argc, const char **argv, char * const *envp) {
67 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
68 llvm::sys::Path Path = GetExecutablePath(argv[0]);
69 TextDiagnosticPrinter DiagClient(llvm::errs(), DiagnosticOptions());
70
71 Diagnostic Diags(&DiagClient);
72 Driver TheDriver(Path.getBasename(), Path.getDirname(),
73 llvm::sys::getHostTriple(),
Daniel Dunbar5d93ed32010-04-01 18:21:41 +000074 "a.out", /*IsProduction=*/false, /*CXXIsProduction=*/false,
75 Diags);
Daniel Dunbare2246282010-02-25 08:49:05 +000076 TheDriver.setTitle("clang interpreter");
77
78 // FIXME: This is a hack to try to force the driver to do something we can
79 // recognize. We need to extend the driver library to support this use model
80 // (basically, exactly one input, and the operation mode is hard wired).
81 llvm::SmallVector<const char *, 16> Args(argv, argv + argc);
82 Args.push_back("-fsyntax-only");
83 llvm::OwningPtr<Compilation> C(TheDriver.BuildCompilation(Args.size(),
84 Args.data()));
85 if (!C)
86 return 0;
87
88 // FIXME: This is copied from ASTUnit.cpp; simplify and eliminate.
89
90 // We expect to get back exactly one command job, if we didn't something
91 // failed. Extract that job from the compilation.
92 const driver::JobList &Jobs = C->getJobs();
93 if (Jobs.size() != 1 || !isa<driver::Command>(Jobs.begin())) {
94 llvm::SmallString<256> Msg;
95 llvm::raw_svector_ostream OS(Msg);
96 C->PrintJob(OS, C->getJobs(), "; ", true);
97 Diags.Report(diag::err_fe_expected_compiler_job) << OS.str();
98 return 1;
99 }
100
101 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
102 if (llvm::StringRef(Cmd->getCreator().getName()) != "clang") {
103 Diags.Report(diag::err_fe_expected_clang_command);
104 return 1;
105 }
106
107 // Initialize a compiler invocation object from the clang (-cc1) arguments.
108 const driver::ArgStringList &CCArgs = Cmd->getArguments();
109 llvm::OwningPtr<CompilerInvocation> CI(new CompilerInvocation);
110 CompilerInvocation::CreateFromArgs(*CI, (const char**) CCArgs.data(),
111 (const char**) CCArgs.data()+CCArgs.size(),
112 Diags);
113
114 // Show the invocation, with -v.
115 if (CI->getHeaderSearchOpts().Verbose) {
116 llvm::errs() << "clang invocation:\n";
117 C->PrintJob(llvm::errs(), C->getJobs(), "\n", true);
118 llvm::errs() << "\n";
119 }
120
121 // FIXME: This is copied from cc1_main.cpp; simplify and eliminate.
122
123 // Create a compiler instance to handle the actual work.
124 CompilerInstance Clang;
125 Clang.setLLVMContext(new llvm::LLVMContext);
126 Clang.setInvocation(CI.take());
127
128 // Create the compilers actual diagnostics engine.
129 Clang.createDiagnostics(int(CCArgs.size()), (char**) CCArgs.data());
130 if (!Clang.hasDiagnostics())
131 return 1;
132
133 // Infer the builtin include path if unspecified.
134 if (Clang.getHeaderSearchOpts().UseBuiltinIncludes &&
135 Clang.getHeaderSearchOpts().ResourceDir.empty())
136 Clang.getHeaderSearchOpts().ResourceDir =
137 CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
138
139 // Create and execute the frontend to generate an LLVM bitcode module.
140 llvm::OwningPtr<CodeGenAction> Act(new EmitLLVMOnlyAction());
141 if (!Clang.ExecuteAction(*Act))
142 return 1;
143
144 int Res = 255;
145 if (llvm::Module *Module = Act->takeModule())
146 Res = Execute(Module, envp);
147
148 // Shutdown.
149
150 llvm::llvm_shutdown();
151
152 return Res;
153}