blob: d968cc879f0290d42afe4018073cb5b77d1df590 [file] [log] [blame]
Daniel Dunbar3ede8d02009-03-02 19:59:07 +00001//===-- driver.cpp - Clang GCC-Compatible Driver --------------------------===//
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 Dunbar1eb4e642009-03-03 05:55:11 +000010// This is the entry point to the clang driver; it is a thin wrapper
11// for functionality in the Driver clang library.
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Driver/Compilation.h"
16#include "clang/Driver/Driver.h"
Daniel Dunbar2c6f6f32009-03-04 08:33:23 +000017#include "clang/Driver/Option.h"
18#include "clang/Driver/Options.h"
19
Daniel Dunbar510d7322009-03-18 02:11:26 +000020#include "llvm/ADT/SmallString.h"
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000021#include "llvm/ADT/OwningPtr.h"
Daniel Dunbardd98e2c2009-03-10 23:41:59 +000022#include "llvm/Config/config.h"
Daniel Dunbar8f25c792009-03-18 01:38:48 +000023#include "llvm/Support/ManagedStatic.h"
24#include "llvm/Support/PrettyStackTrace.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000025#include "llvm/Support/raw_ostream.h"
Daniel Dunbar365c02f2009-03-10 20:52:46 +000026#include "llvm/System/Path.h"
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000027#include "llvm/System/Signals.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000028using namespace clang;
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000029using namespace clang::driver;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000030
Daniel Dunbar510d7322009-03-18 02:11:26 +000031class DriverDiagnosticPrinter : public DiagnosticClient {
32 std::string ProgName;
33 llvm::raw_ostream &OS;
34
35public:
36 DriverDiagnosticPrinter(const std::string _ProgName,
37 llvm::raw_ostream &_OS)
38 : ProgName(_ProgName),
39 OS(_OS) {}
40
41 virtual void HandleDiagnostic(Diagnostic::Level DiagLevel,
42 const DiagnosticInfo &Info);
43};
44
45void DriverDiagnosticPrinter::HandleDiagnostic(Diagnostic::Level Level,
46 const DiagnosticInfo &Info) {
47 OS << ProgName << ": ";
48
49 switch (Level) {
50 case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type");
51 case Diagnostic::Note: OS << "note: "; break;
52 case Diagnostic::Warning: OS << "warning: "; break;
53 case Diagnostic::Error: OS << "error: "; break;
54 case Diagnostic::Fatal: OS << "fatal error: "; break;
55 }
56
57 llvm::SmallString<100> OutStr;
58 Info.FormatDiagnostic(OutStr);
59 OS.write(OutStr.begin(), OutStr.size());
60 OS << '\n';
61}
62
Daniel Dunbar734932c2009-03-18 20:25:53 +000063llvm::sys::Path GetExecutablePath(const char *Argv0) {
64 // This just needs to be some symbol in the binary; C++ doesn't
65 // allow taking the address of ::main however.
66 void *P = (void*) (intptr_t) GetExecutablePath;
67 return llvm::sys::Path::GetMainExecutable(Argv0, P);
68}
69
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000070int main(int argc, const char **argv) {
71 llvm::sys::PrintStackTraceOnErrorSignal();
Daniel Dunbar8f25c792009-03-18 01:38:48 +000072 llvm::PrettyStackTraceProgram X(argc, argv);
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000073
Daniel Dunbar734932c2009-03-18 20:25:53 +000074 llvm::sys::Path Path = GetExecutablePath(argv[0]);
Daniel Dunbar510d7322009-03-18 02:11:26 +000075 llvm::OwningPtr<DiagnosticClient>
76 DiagClient(new DriverDiagnosticPrinter(Path.getBasename(), llvm::errs()));
77
78 Diagnostic Diags(DiagClient.get());
79
Daniel Dunbardd98e2c2009-03-10 23:41:59 +000080 // FIXME: Use the triple of the host, not the triple that we were
81 // compiled on.
Daniel Dunbar365c02f2009-03-10 20:52:46 +000082 llvm::OwningPtr<Driver> TheDriver(new Driver(Path.getBasename().c_str(),
Daniel Dunbardd98e2c2009-03-10 23:41:59 +000083 Path.getDirname().c_str(),
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000084 LLVM_HOSTTRIPLE,
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000085 "a.out",
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000086 Diags));
87
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000088 llvm::OwningPtr<Compilation> C(TheDriver->BuildCompilation(argc, argv));
89
Daniel Dunbaraf96def2009-03-21 00:40:53 +000090 int Res = 0;
91 if (C.get())
92 Res = C->Execute();
Daniel Dunbar8f25c792009-03-18 01:38:48 +000093
94 llvm::llvm_shutdown();
95
Daniel Dunbaraf96def2009-03-21 00:40:53 +000096 return Res;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000097}
Daniel Dunbar7ec3daf2009-03-24 03:07:05 +000098