blob: 9557f31bd8b7f735c4114f8c58cae784348f4cbe [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
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);
Peter Collingbournefa9fe0c2010-07-24 17:59:51 +000072 Driver TheDriver(Path.str(), llvm::sys::getHostTriple(),
Daniel Dunbar5d93ed32010-04-01 18:21:41 +000073 "a.out", /*IsProduction=*/false, /*CXXIsProduction=*/false,
74 Diags);
Daniel Dunbare2246282010-02-25 08:49:05 +000075 TheDriver.setTitle("clang interpreter");
76
77 // FIXME: This is a hack to try to force the driver to do something we can
78 // recognize. We need to extend the driver library to support this use model
79 // (basically, exactly one input, and the operation mode is hard wired).
80 llvm::SmallVector<const char *, 16> Args(argv, argv + argc);
81 Args.push_back("-fsyntax-only");
82 llvm::OwningPtr<Compilation> C(TheDriver.BuildCompilation(Args.size(),
83 Args.data()));
84 if (!C)
85 return 0;
86
87 // FIXME: This is copied from ASTUnit.cpp; simplify and eliminate.
88
89 // We expect to get back exactly one command job, if we didn't something
90 // failed. Extract that job from the compilation.
91 const driver::JobList &Jobs = C->getJobs();
92 if (Jobs.size() != 1 || !isa<driver::Command>(Jobs.begin())) {
93 llvm::SmallString<256> Msg;
94 llvm::raw_svector_ostream OS(Msg);
95 C->PrintJob(OS, C->getJobs(), "; ", true);
96 Diags.Report(diag::err_fe_expected_compiler_job) << OS.str();
97 return 1;
98 }
99
100 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
101 if (llvm::StringRef(Cmd->getCreator().getName()) != "clang") {
102 Diags.Report(diag::err_fe_expected_clang_command);
103 return 1;
104 }
105
106 // Initialize a compiler invocation object from the clang (-cc1) arguments.
107 const driver::ArgStringList &CCArgs = Cmd->getArguments();
108 llvm::OwningPtr<CompilerInvocation> CI(new CompilerInvocation);
Benjamin Kramer9e8635a2010-04-20 11:50:39 +0000109 CompilerInvocation::CreateFromArgs(*CI,
110 const_cast<const char **>(CCArgs.data()),
111 const_cast<const char **>(CCArgs.data()) +
112 CCArgs.size(),
Benjamin Kramera4f0a802010-04-20 11:55:38 +0000113 Diags);
Daniel Dunbare2246282010-02-25 08:49:05 +0000114
115 // Show the invocation, with -v.
116 if (CI->getHeaderSearchOpts().Verbose) {
117 llvm::errs() << "clang invocation:\n";
118 C->PrintJob(llvm::errs(), C->getJobs(), "\n", true);
119 llvm::errs() << "\n";
120 }
121
122 // FIXME: This is copied from cc1_main.cpp; simplify and eliminate.
123
124 // Create a compiler instance to handle the actual work.
125 CompilerInstance Clang;
126 Clang.setLLVMContext(new llvm::LLVMContext);
127 Clang.setInvocation(CI.take());
128
129 // Create the compilers actual diagnostics engine.
Benjamin Kramera4f0a802010-04-20 11:55:38 +0000130 Clang.createDiagnostics(int(CCArgs.size()),const_cast<char**>(CCArgs.data()));
Daniel Dunbare2246282010-02-25 08:49:05 +0000131 if (!Clang.hasDiagnostics())
132 return 1;
133
134 // Infer the builtin include path if unspecified.
135 if (Clang.getHeaderSearchOpts().UseBuiltinIncludes &&
136 Clang.getHeaderSearchOpts().ResourceDir.empty())
137 Clang.getHeaderSearchOpts().ResourceDir =
138 CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
139
140 // Create and execute the frontend to generate an LLVM bitcode module.
141 llvm::OwningPtr<CodeGenAction> Act(new EmitLLVMOnlyAction());
142 if (!Clang.ExecuteAction(*Act))
143 return 1;
144
145 int Res = 255;
146 if (llvm::Module *Module = Act->takeModule())
147 Res = Execute(Module, envp);
148
149 // Shutdown.
150
151 llvm::llvm_shutdown();
152
153 return Res;
154}