blob: c39468a3fd9ca879d61de548f9a1691da086a44f [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
Daniel Dunbar9b414d32010-06-15 17:48:49 +000010#include "clang/CodeGen/CodeGenAction.h"
Daniel Dunbare2246282010-02-25 08:49:05 +000011#include "clang/Driver/Compilation.h"
12#include "clang/Driver/Driver.h"
13#include "clang/Driver/Tool.h"
Daniel Dunbare2246282010-02-25 08:49:05 +000014#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
Daniel Dunbare2246282010-02-25 08:49:05 +000020#include "llvm/Module.h"
Daniel Dunbare2246282010-02-25 08:49:05 +000021#include "llvm/ADT/OwningPtr.h"
22#include "llvm/ADT/SmallString.h"
Eli Friedman17e27942011-10-06 22:24:13 +000023#include "llvm/ExecutionEngine/JIT.h"
Daniel Dunbare2246282010-02-25 08:49:05 +000024#include "llvm/ExecutionEngine/ExecutionEngine.h"
25#include "llvm/Support/ManagedStatic.h"
26#include "llvm/Support/raw_ostream.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000027#include "llvm/Support/Host.h"
28#include "llvm/Support/Path.h"
Evan Chenga6b40452011-08-24 18:09:14 +000029#include "llvm/Support/TargetSelect.h"
Daniel Dunbare2246282010-02-25 08:49:05 +000030using namespace clang;
31using namespace clang::driver;
32
Dan Gohmanea1924e2010-11-17 17:23:53 +000033// This function isn't referenced outside its translation unit, but it
34// can't use the "static" keyword because its address is used for
35// GetMainExecutable (since some platforms don't support taking the
36// address of main, and some platforms can't implement GetMainExecutable
37// without being given the address of a function in the main executable).
Benjamin Krameraeed3da2010-10-30 17:32:40 +000038llvm::sys::Path GetExecutablePath(const char *Argv0) {
Daniel Dunbare2246282010-02-25 08:49:05 +000039 // This just needs to be some symbol in the binary; C++ doesn't
40 // allow taking the address of ::main however.
41 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
42 return llvm::sys::Path::GetMainExecutable(Argv0, MainAddr);
43}
44
Dan Gohmanf1295622010-10-29 22:41:35 +000045static int Execute(llvm::Module *Mod, char * const *envp) {
Daniel Dunbare2246282010-02-25 08:49:05 +000046 llvm::InitializeNativeTarget();
47
48 std::string Error;
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +000049 OwningPtr<llvm::ExecutionEngine> EE(
Daniel Dunbare2246282010-02-25 08:49:05 +000050 llvm::ExecutionEngine::createJIT(Mod, &Error));
51 if (!EE) {
52 llvm::errs() << "unable to make execution engine: " << Error << "\n";
53 return 255;
54 }
55
56 llvm::Function *EntryFn = Mod->getFunction("main");
57 if (!EntryFn) {
58 llvm::errs() << "'main' function not found in module.\n";
59 return 255;
60 }
61
62 // FIXME: Support passing arguments.
63 std::vector<std::string> Args;
64 Args.push_back(Mod->getModuleIdentifier());
65
66 return EE->runFunctionAsMain(EntryFn, Args, envp);
67}
68
69int main(int argc, const char **argv, char * const *envp) {
70 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
71 llvm::sys::Path Path = GetExecutablePath(argv[0]);
Benjamin Kramer06b901b2010-08-26 13:48:56 +000072 TextDiagnosticPrinter *DiagClient =
73 new TextDiagnosticPrinter(llvm::errs(), DiagnosticOptions());
Daniel Dunbare2246282010-02-25 08:49:05 +000074
Dylan Noblesmithc93dc782012-02-20 14:00:23 +000075 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
Eli Friedmand3c16612011-09-27 18:33:47 +000076 DiagnosticsEngine Diags(DiagID, DiagClient);
Sebastian Pop5d8b9542011-11-01 21:33:06 +000077 Driver TheDriver(Path.str(), llvm::sys::getDefaultTargetTriple(),
Bob Wilson10a82cd2011-10-04 05:34:14 +000078 "a.out", /*IsProduction=*/false, Diags);
Daniel Dunbare2246282010-02-25 08:49:05 +000079 TheDriver.setTitle("clang interpreter");
80
81 // FIXME: This is a hack to try to force the driver to do something we can
82 // recognize. We need to extend the driver library to support this use model
83 // (basically, exactly one input, and the operation mode is hard wired).
84 llvm::SmallVector<const char *, 16> Args(argv, argv + argc);
85 Args.push_back("-fsyntax-only");
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +000086 OwningPtr<Compilation> C(TheDriver.BuildCompilation(Args));
Daniel Dunbare2246282010-02-25 08:49:05 +000087 if (!C)
88 return 0;
89
90 // FIXME: This is copied from ASTUnit.cpp; simplify and eliminate.
91
92 // We expect to get back exactly one command job, if we didn't something
93 // failed. Extract that job from the compilation.
94 const driver::JobList &Jobs = C->getJobs();
Manuel Klimekc8b3e632011-05-23 18:25:41 +000095 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
Dylan Noblesmith36d59272012-02-13 12:32:26 +000096 SmallString<256> Msg;
Daniel Dunbare2246282010-02-25 08:49:05 +000097 llvm::raw_svector_ostream OS(Msg);
98 C->PrintJob(OS, C->getJobs(), "; ", true);
99 Diags.Report(diag::err_fe_expected_compiler_job) << OS.str();
100 return 1;
101 }
102
103 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
104 if (llvm::StringRef(Cmd->getCreator().getName()) != "clang") {
105 Diags.Report(diag::err_fe_expected_clang_command);
106 return 1;
107 }
108
109 // Initialize a compiler invocation object from the clang (-cc1) arguments.
110 const driver::ArgStringList &CCArgs = Cmd->getArguments();
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +0000111 OwningPtr<CompilerInvocation> CI(new CompilerInvocation);
Benjamin Kramer9e8635a2010-04-20 11:50:39 +0000112 CompilerInvocation::CreateFromArgs(*CI,
113 const_cast<const char **>(CCArgs.data()),
114 const_cast<const char **>(CCArgs.data()) +
115 CCArgs.size(),
Benjamin Kramera4f0a802010-04-20 11:55:38 +0000116 Diags);
Daniel Dunbare2246282010-02-25 08:49:05 +0000117
118 // Show the invocation, with -v.
119 if (CI->getHeaderSearchOpts().Verbose) {
120 llvm::errs() << "clang invocation:\n";
121 C->PrintJob(llvm::errs(), C->getJobs(), "\n", true);
122 llvm::errs() << "\n";
123 }
124
125 // FIXME: This is copied from cc1_main.cpp; simplify and eliminate.
126
127 // Create a compiler instance to handle the actual work.
128 CompilerInstance Clang;
Daniel Dunbare2246282010-02-25 08:49:05 +0000129 Clang.setInvocation(CI.take());
130
131 // Create the compilers actual diagnostics engine.
Benjamin Kramera4f0a802010-04-20 11:55:38 +0000132 Clang.createDiagnostics(int(CCArgs.size()),const_cast<char**>(CCArgs.data()));
Daniel Dunbare2246282010-02-25 08:49:05 +0000133 if (!Clang.hasDiagnostics())
134 return 1;
135
136 // Infer the builtin include path if unspecified.
137 if (Clang.getHeaderSearchOpts().UseBuiltinIncludes &&
138 Clang.getHeaderSearchOpts().ResourceDir.empty())
139 Clang.getHeaderSearchOpts().ResourceDir =
140 CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
141
142 // Create and execute the frontend to generate an LLVM bitcode module.
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +0000143 OwningPtr<CodeGenAction> Act(new EmitLLVMOnlyAction());
Daniel Dunbare2246282010-02-25 08:49:05 +0000144 if (!Clang.ExecuteAction(*Act))
145 return 1;
146
147 int Res = 255;
148 if (llvm::Module *Module = Act->takeModule())
149 Res = Execute(Module, envp);
150
151 // Shutdown.
152
153 llvm::llvm_shutdown();
154
155 return Res;
156}