blob: 5fa83ff71f7c0659c6c59f0e2372202dda0636fa [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- clang.cpp - C-Language Front-end ---------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This utility may be invoked in the following manner:
11// clang --help - Output help info.
12// clang [options] - Read from stdin.
13// clang [options] file - Read from "file".
14// clang [options] file1 file2 - Read these files.
15//
16//===----------------------------------------------------------------------===//
17//
18// TODO: Options to support:
19//
20// -ffatal-errors
21// -ftabstop=width
22//
23//===----------------------------------------------------------------------===//
24
25#include "clang.h"
Chris Lattner97e8b6f2007-10-07 06:04:32 +000026#include "ASTConsumers.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027#include "TextDiagnosticBuffer.h"
28#include "TextDiagnosticPrinter.h"
Chris Lattner556beb72007-09-15 22:56:56 +000029#include "clang/Sema/ASTStreamer.h"
30#include "clang/AST/ASTConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000031#include "clang/Parse/Parser.h"
32#include "clang/Lex/HeaderSearch.h"
33#include "clang/Basic/FileManager.h"
34#include "clang/Basic/SourceManager.h"
35#include "clang/Basic/TargetInfo.h"
36#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/MemoryBuffer.h"
38#include "llvm/System/Signals.h"
Ted Kremenekae360762007-12-03 22:06:55 +000039#include "llvm/Config/config.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000040#include <memory>
41using namespace clang;
42
43//===----------------------------------------------------------------------===//
44// Global options.
45//===----------------------------------------------------------------------===//
46
47static llvm::cl::opt<bool>
48Verbose("v", llvm::cl::desc("Enable verbose output"));
49static llvm::cl::opt<bool>
50Stats("stats", llvm::cl::desc("Print performance metrics and statistics"));
51
52enum ProgActions {
Chris Lattner77cd2a02007-10-11 00:43:27 +000053 RewriteTest, // Rewriter testing stuff.
Reid Spencer5f016e22007-07-11 17:01:13 +000054 EmitLLVM, // Emit a .ll file.
Chris Lattner3b427b32007-10-11 00:18:28 +000055 ASTPrint, // Parse ASTs and print them.
56 ASTDump, // Parse ASTs and dump them.
57 ASTView, // Parse ASTs and view them in Graphviz.
Ted Kremenekfddd5182007-08-21 21:42:03 +000058 ParseCFGDump, // Parse ASTS. Build CFGs. Print CFGs.
Ted Kremenek055c2752007-09-06 23:00:42 +000059 ParseCFGView, // Parse ASTS. Build CFGs. View CFGs.
Ted Kremeneke4e63342007-09-06 00:17:54 +000060 AnalysisLiveVariables, // Print results of live-variable analysis.
Ted Kremenek055c2752007-09-06 23:00:42 +000061 WarnDeadStores, // Run DeadStores checker on parsed ASTs.
Ted Kremenek44579782007-09-25 18:37:20 +000062 WarnDeadStoresCheck, // Check diagnostics for "DeadStores".
Ted Kremenek2bf55142007-09-17 20:49:30 +000063 WarnUninitVals, // Run UnitializedVariables checker.
Ted Kremenekbfa82c42007-10-16 23:37:27 +000064 TestSerialization, // Run experimental serialization code.
Reid Spencer5f016e22007-07-11 17:01:13 +000065 ParsePrintCallbacks, // Parse and print each callback.
66 ParseSyntaxOnly, // Parse and perform semantic analysis.
67 ParseNoop, // Parse with noop callbacks.
68 RunPreprocessorOnly, // Just lex, no output.
69 PrintPreprocessedInput, // -E mode.
70 DumpTokens // Token dump mode.
71};
72
73static llvm::cl::opt<ProgActions>
74ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore,
75 llvm::cl::init(ParseSyntaxOnly),
76 llvm::cl::values(
77 clEnumValN(RunPreprocessorOnly, "Eonly",
78 "Just run preprocessor, no output (for timings)"),
79 clEnumValN(PrintPreprocessedInput, "E",
80 "Run preprocessor, emit preprocessed file"),
81 clEnumValN(DumpTokens, "dumptokens",
82 "Run preprocessor, dump internal rep of tokens"),
83 clEnumValN(ParseNoop, "parse-noop",
84 "Run parser with noop callbacks (for timings)"),
85 clEnumValN(ParseSyntaxOnly, "fsyntax-only",
86 "Run parser and perform semantic analysis"),
87 clEnumValN(ParsePrintCallbacks, "parse-print-callbacks",
88 "Run parser and print each callback invoked"),
Chris Lattner3b427b32007-10-11 00:18:28 +000089 clEnumValN(ASTPrint, "ast-print",
90 "Build ASTs and then pretty-print them"),
91 clEnumValN(ASTDump, "ast-dump",
92 "Build ASTs and then debug dump them"),
Chris Lattnerea254db2007-10-11 00:37:43 +000093 clEnumValN(ASTView, "ast-view",
Chris Lattner3b427b32007-10-11 00:18:28 +000094 "Build ASTs and view them with GraphViz."),
Ted Kremenekfddd5182007-08-21 21:42:03 +000095 clEnumValN(ParseCFGDump, "dump-cfg",
Ted Kremenek7dba8602007-08-29 21:56:09 +000096 "Run parser, then build and print CFGs."),
97 clEnumValN(ParseCFGView, "view-cfg",
Ted Kremeneke4e63342007-09-06 00:17:54 +000098 "Run parser, then build and view CFGs with Graphviz."),
99 clEnumValN(AnalysisLiveVariables, "dump-live-variables",
Ted Kremenek27b07c52007-09-06 21:26:58 +0000100 "Print results of live variable analysis."),
Ted Kremenek786d3372007-09-25 18:05:45 +0000101 clEnumValN(WarnDeadStores, "warn-dead-stores",
Ted Kremenek055c2752007-09-06 23:00:42 +0000102 "Flag warnings of stores to dead variables."),
Ted Kremenek786d3372007-09-25 18:05:45 +0000103 clEnumValN(WarnUninitVals, "warn-uninit-values",
Ted Kremenek2bf55142007-09-17 20:49:30 +0000104 "Flag warnings of uses of unitialized variables."),
Ted Kremenekbfa82c42007-10-16 23:37:27 +0000105 clEnumValN(TestSerialization, "test-pickling",
106 "Run prototype serializtion code."),
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 clEnumValN(EmitLLVM, "emit-llvm",
Ted Kremenek27b07c52007-09-06 21:26:58 +0000108 "Build ASTs then convert to LLVM, emit .ll file"),
Chris Lattner77cd2a02007-10-11 00:43:27 +0000109 clEnumValN(RewriteTest, "rewrite-test",
110 "Playground for the code rewriter"),
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 clEnumValEnd));
112
Ted Kremenek41193e42007-09-26 19:42:19 +0000113static llvm::cl::opt<bool>
114VerifyDiagnostics("verify",
115 llvm::cl::desc("Verify emitted diagnostics and warnings."));
116
Reid Spencer5f016e22007-07-11 17:01:13 +0000117//===----------------------------------------------------------------------===//
118// Language Options
119//===----------------------------------------------------------------------===//
120
121enum LangKind {
122 langkind_unspecified,
123 langkind_c,
124 langkind_c_cpp,
125 langkind_cxx,
126 langkind_cxx_cpp,
127 langkind_objc,
128 langkind_objc_cpp,
129 langkind_objcxx,
130 langkind_objcxx_cpp
131};
132
133/* TODO: GCC also accepts:
134 c-header c++-header objective-c-header objective-c++-header
135 assembler assembler-with-cpp
136 ada, f77*, ratfor (!), f95, java, treelang
137 */
138static llvm::cl::opt<LangKind>
139BaseLang("x", llvm::cl::desc("Base language to compile"),
140 llvm::cl::init(langkind_unspecified),
141 llvm::cl::values(clEnumValN(langkind_c, "c", "C"),
142 clEnumValN(langkind_cxx, "c++", "C++"),
143 clEnumValN(langkind_objc, "objective-c", "Objective C"),
144 clEnumValN(langkind_objcxx,"objective-c++","Objective C++"),
145 clEnumValN(langkind_c_cpp, "c-cpp-output",
146 "Preprocessed C"),
147 clEnumValN(langkind_cxx_cpp, "c++-cpp-output",
148 "Preprocessed C++"),
149 clEnumValN(langkind_objc_cpp, "objective-c-cpp-output",
150 "Preprocessed Objective C"),
151 clEnumValN(langkind_objcxx_cpp,"objective-c++-cpp-output",
152 "Preprocessed Objective C++"),
153 clEnumValEnd));
154
155static llvm::cl::opt<bool>
156LangObjC("ObjC", llvm::cl::desc("Set base language to Objective-C"),
157 llvm::cl::Hidden);
158static llvm::cl::opt<bool>
159LangObjCXX("ObjC++", llvm::cl::desc("Set base language to Objective-C++"),
160 llvm::cl::Hidden);
161
Ted Kremenek8904f152007-12-05 23:49:08 +0000162/// InitializeBaseLanguage - Handle the -x foo options.
163static void InitializeBaseLanguage() {
164 if (LangObjC)
165 BaseLang = langkind_objc;
166 else if (LangObjCXX)
167 BaseLang = langkind_objcxx;
168}
169
170static LangKind GetLanguage(const std::string &Filename) {
171 if (BaseLang != langkind_unspecified)
172 return BaseLang;
173
174 std::string::size_type DotPos = Filename.rfind('.');
175
176 if (DotPos == std::string::npos) {
177 BaseLang = langkind_c; // Default to C if no extension.
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 }
179
Ted Kremenek8904f152007-12-05 23:49:08 +0000180 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
181 // C header: .h
182 // C++ header: .hh or .H;
183 // assembler no preprocessing: .s
184 // assembler: .S
185 if (Ext == "c")
186 return langkind_c;
187 else if (Ext == "i")
188 return langkind_c_cpp;
189 else if (Ext == "ii")
190 return langkind_cxx_cpp;
191 else if (Ext == "m")
192 return langkind_objc;
193 else if (Ext == "mi")
194 return langkind_objc_cpp;
195 else if (Ext == "mm" || Ext == "M")
196 return langkind_objcxx;
197 else if (Ext == "mii")
198 return langkind_objcxx_cpp;
199 else if (Ext == "C" || Ext == "cc" || Ext == "cpp" || Ext == "CPP" ||
200 Ext == "c++" || Ext == "cp" || Ext == "cxx")
201 return langkind_cxx;
202 else
203 return langkind_c;
204}
205
206
207static void InitializeLangOptions(LangOptions &Options, LangKind LK) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000208 // FIXME: implement -fpreprocessed mode.
209 bool NoPreprocess = false;
210
Ted Kremenek8904f152007-12-05 23:49:08 +0000211 switch (LK) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000212 default: assert(0 && "Unknown language kind!");
213 case langkind_c_cpp:
214 NoPreprocess = true;
215 // FALLTHROUGH
216 case langkind_c:
217 break;
218 case langkind_cxx_cpp:
219 NoPreprocess = true;
220 // FALLTHROUGH
221 case langkind_cxx:
222 Options.CPlusPlus = 1;
223 break;
224 case langkind_objc_cpp:
225 NoPreprocess = true;
226 // FALLTHROUGH
227 case langkind_objc:
228 Options.ObjC1 = Options.ObjC2 = 1;
229 break;
230 case langkind_objcxx_cpp:
231 NoPreprocess = true;
232 // FALLTHROUGH
233 case langkind_objcxx:
234 Options.ObjC1 = Options.ObjC2 = 1;
235 Options.CPlusPlus = 1;
236 break;
237 }
238}
239
240/// LangStds - Language standards we support.
241enum LangStds {
242 lang_unspecified,
243 lang_c89, lang_c94, lang_c99,
244 lang_gnu89, lang_gnu99,
Chris Lattnerd4b80f12007-07-16 04:18:29 +0000245 lang_cxx98, lang_gnucxx98,
246 lang_cxx0x, lang_gnucxx0x
Reid Spencer5f016e22007-07-11 17:01:13 +0000247};
248
249static llvm::cl::opt<LangStds>
250LangStd("std", llvm::cl::desc("Language standard to compile for"),
251 llvm::cl::init(lang_unspecified),
252 llvm::cl::values(clEnumValN(lang_c89, "c89", "ISO C 1990"),
253 clEnumValN(lang_c89, "c90", "ISO C 1990"),
254 clEnumValN(lang_c89, "iso9899:1990", "ISO C 1990"),
255 clEnumValN(lang_c94, "iso9899:199409",
256 "ISO C 1990 with amendment 1"),
257 clEnumValN(lang_c99, "c99", "ISO C 1999"),
258// clEnumValN(lang_c99, "c9x", "ISO C 1999"),
259 clEnumValN(lang_c99, "iso9899:1999", "ISO C 1999"),
260// clEnumValN(lang_c99, "iso9899:199x", "ISO C 1999"),
261 clEnumValN(lang_gnu89, "gnu89",
262 "ISO C 1990 with GNU extensions (default for C)"),
263 clEnumValN(lang_gnu99, "gnu99",
264 "ISO C 1999 with GNU extensions"),
265 clEnumValN(lang_gnu99, "gnu9x",
266 "ISO C 1999 with GNU extensions"),
267 clEnumValN(lang_cxx98, "c++98",
268 "ISO C++ 1998 with amendments"),
269 clEnumValN(lang_gnucxx98, "gnu++98",
270 "ISO C++ 1998 with amendments and GNU "
271 "extensions (default for C++)"),
Chris Lattnerd4b80f12007-07-16 04:18:29 +0000272 clEnumValN(lang_cxx0x, "c++0x",
273 "Upcoming ISO C++ 200x with amendments"),
274 clEnumValN(lang_gnucxx0x, "gnu++0x",
275 "Upcoming ISO C++ 200x with amendments and GNU "
276 "extensions (default for C++)"),
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 clEnumValEnd));
278
279static llvm::cl::opt<bool>
280NoOperatorNames("fno-operator-names",
281 llvm::cl::desc("Do not treat C++ operator name keywords as "
282 "synonyms for operators"));
283
Anders Carlssonee98ac52007-10-15 02:50:23 +0000284static llvm::cl::opt<bool>
285PascalStrings("fpascal-strings",
286 llvm::cl::desc("Recognize and construct Pascal-style "
287 "string literals"));
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000288
289static llvm::cl::opt<bool>
290WritableStrings("fwritable-strings",
291 llvm::cl::desc("Store string literals as writable data."));
Anders Carlsson695dbb62007-11-30 04:21:22 +0000292
293static llvm::cl::opt<bool>
294LaxVectorConversions("flax-vector-conversions",
295 llvm::cl::desc("Allow implicit conversions between vectors"
296 " with a different number of elements or "
297 "different element types."));
Reid Spencer5f016e22007-07-11 17:01:13 +0000298// FIXME: add:
299// -ansi
300// -trigraphs
301// -fdollars-in-identifiers
Anders Carlssonee98ac52007-10-15 02:50:23 +0000302// -fpascal-strings
Ted Kremenek8904f152007-12-05 23:49:08 +0000303static void InitializeLanguageStandard(LangOptions &Options, LangKind LK) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000304 if (LangStd == lang_unspecified) {
305 // Based on the base language, pick one.
Ted Kremenek8904f152007-12-05 23:49:08 +0000306 switch (LK) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000307 default: assert(0 && "Unknown base language");
308 case langkind_c:
309 case langkind_c_cpp:
310 case langkind_objc:
311 case langkind_objc_cpp:
312 LangStd = lang_gnu99;
313 break;
314 case langkind_cxx:
315 case langkind_cxx_cpp:
316 case langkind_objcxx:
317 case langkind_objcxx_cpp:
318 LangStd = lang_gnucxx98;
319 break;
320 }
321 }
322
323 switch (LangStd) {
324 default: assert(0 && "Unknown language standard!");
325
326 // Fall through from newer standards to older ones. This isn't really right.
327 // FIXME: Enable specifically the right features based on the language stds.
Chris Lattnerd4b80f12007-07-16 04:18:29 +0000328 case lang_gnucxx0x:
329 case lang_cxx0x:
330 Options.CPlusPlus0x = 1;
331 // FALL THROUGH
Reid Spencer5f016e22007-07-11 17:01:13 +0000332 case lang_gnucxx98:
333 case lang_cxx98:
334 Options.CPlusPlus = 1;
335 Options.CXXOperatorNames = !NoOperatorNames;
Nate Begeman8aebcb72007-11-15 07:30:50 +0000336 Options.Boolean = 1;
Reid Spencer5f016e22007-07-11 17:01:13 +0000337 // FALL THROUGH.
338 case lang_gnu99:
339 case lang_c99:
340 Options.Digraphs = 1;
341 Options.C99 = 1;
342 Options.HexFloats = 1;
343 // FALL THROUGH.
344 case lang_gnu89:
345 Options.BCPLComment = 1; // Only for C99/C++.
346 // FALL THROUGH.
347 case lang_c94:
348 case lang_c89:
349 break;
350 }
351
352 Options.Trigraphs = 1; // -trigraphs or -ansi
353 Options.DollarIdents = 1; // FIXME: Really a target property.
Anders Carlssonee98ac52007-10-15 02:50:23 +0000354 Options.PascalStrings = PascalStrings;
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000355 Options.WritableStrings = WritableStrings;
Anders Carlsson695dbb62007-11-30 04:21:22 +0000356 Options.LaxVectorConversions = LaxVectorConversions;
Reid Spencer5f016e22007-07-11 17:01:13 +0000357}
358
359//===----------------------------------------------------------------------===//
360// Our DiagnosticClient implementation
361//===----------------------------------------------------------------------===//
362
363// FIXME: Werror should take a list of things, -Werror=foo,bar
364static llvm::cl::opt<bool>
365WarningsAsErrors("Werror", llvm::cl::desc("Treat all warnings as errors"));
366
367static llvm::cl::opt<bool>
368WarnOnExtensions("pedantic", llvm::cl::init(false),
369 llvm::cl::desc("Issue a warning on uses of GCC extensions"));
370
371static llvm::cl::opt<bool>
372ErrorOnExtensions("pedantic-errors",
373 llvm::cl::desc("Issue an error on uses of GCC extensions"));
374
375static llvm::cl::opt<bool>
376WarnUnusedMacros("Wunused_macros",
377 llvm::cl::desc("Warn for unused macros in the main translation unit"));
378
Ted Kremenekdb87bca2007-11-13 18:37:02 +0000379static llvm::cl::opt<bool>
380WarnFloatEqual("Wfloat-equal",
381 llvm::cl::desc("Warn about equality comparisons of floating point values."));
382
Reid Spencer5f016e22007-07-11 17:01:13 +0000383/// InitializeDiagnostics - Initialize the diagnostic object, based on the
384/// current command line option settings.
385static void InitializeDiagnostics(Diagnostic &Diags) {
386 Diags.setWarningsAsErrors(WarningsAsErrors);
387 Diags.setWarnOnExtensions(WarnOnExtensions);
388 Diags.setErrorOnExtensions(ErrorOnExtensions);
389
390 // Silence the "macro is not used" warning unless requested.
391 if (!WarnUnusedMacros)
392 Diags.setDiagnosticMapping(diag::pp_macro_not_used, diag::MAP_IGNORE);
Ted Kremenekdb87bca2007-11-13 18:37:02 +0000393
394 // Silence "floating point comparison" warnings unless requested.
395 if (!WarnFloatEqual)
396 Diags.setDiagnosticMapping(diag::warn_floatingpoint_eq, diag::MAP_IGNORE);
Reid Spencer5f016e22007-07-11 17:01:13 +0000397}
398
399//===----------------------------------------------------------------------===//
Ted Kremenekae360762007-12-03 22:06:55 +0000400// Target Triple Processing.
401//===----------------------------------------------------------------------===//
402
403static llvm::cl::opt<std::string>
404TargetTriple("triple",
405 llvm::cl::desc("Specify target triple (e.g. i686-apple-darwin9)."));
406
407static llvm::cl::list<std::string>
408Archs("arch",
409 llvm::cl::desc("Specify target architecture (e.g. i686)."));
410
411namespace {
412 class TripleProcessor {
413 llvm::StringMap<char> TriplesProcessed;
414 std::vector<std::string>& triples;
415 public:
416 TripleProcessor(std::vector<std::string>& t) : triples(t) {}
417
418 void addTriple(const std::string& t) {
419 if (TriplesProcessed.find(t.c_str(),t.c_str()+t.size()) ==
420 TriplesProcessed.end()) {
421 triples.push_back(t);
422 TriplesProcessed.GetOrCreateValue(t.c_str(),t.c_str()+t.size());
423 }
424 }
425 };
426}
427
428static void CreateTargetTriples(std::vector<std::string>& triples) {
429 std::string base_triple;
430
431 // Initialize base triple. If a -triple option has been specified, use
432 // that triple. Otherwise, default to the host triple.
Ted Kremenekaead4722007-12-03 23:23:21 +0000433 if (TargetTriple.getValue().empty()) {
434 // HACK: For non-darwin systems, we don't have any real target support
435 // yet. For these systems, set the target to darwin.
Ted Kremenek05ca5992007-12-03 23:25:59 +0000436 if (!strstr(LLVM_HOSTTRIPLE,"darwin"))
Ted Kremenekaead4722007-12-03 23:23:21 +0000437 base_triple = "i386-apple-darwin";
438 else
439 base_triple = LLVM_HOSTTRIPLE;
440 }
Ted Kremenekae360762007-12-03 22:06:55 +0000441 else
442 base_triple = TargetTriple.getValue();
443
444 // Decompose the base triple into "arch" and suffix.
445 std::string::size_type firstDash = base_triple.find("-");
446
Ted Kremenek9b4ebc22007-12-03 22:11:31 +0000447 if (firstDash == std::string::npos) {
448 fprintf(stderr,
449 "Malformed target triple: \"%s\" ('-' could not be found).\n",
450 base_triple.c_str());
451 exit (1);
452 }
Ted Kremenekae360762007-12-03 22:06:55 +0000453
454 std::string suffix(base_triple,firstDash+1);
Ted Kremenek9b4ebc22007-12-03 22:11:31 +0000455
456 if (suffix.empty()) {
457 fprintf(stderr,
458 "Malformed target triple: \"%s\" (no vendor or OS).\n",
459 base_triple.c_str());
460 exit (1);
461 }
Ted Kremenekae360762007-12-03 22:06:55 +0000462
463 // Create triple cacher.
464 TripleProcessor tp(triples);
465
466 // Add the primary triple to our set of triples if we are using the
467 // host-triple with no archs or using a specified target triple.
468 if (!TargetTriple.getValue().empty() || Archs.empty())
469 tp.addTriple(base_triple);
470
471 for (unsigned i = 0, e = Archs.size(); i !=e; ++i)
472 tp.addTriple(Archs[i] + "-" + suffix);
473}
474
475//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000476// Preprocessor Initialization
477//===----------------------------------------------------------------------===//
478
479// FIXME: Preprocessor builtins to support.
480// -A... - Play with #assertions
481// -undef - Undefine all predefined macros
482
483static llvm::cl::list<std::string>
484D_macros("D", llvm::cl::value_desc("macro"), llvm::cl::Prefix,
485 llvm::cl::desc("Predefine the specified macro"));
486static llvm::cl::list<std::string>
487U_macros("U", llvm::cl::value_desc("macro"), llvm::cl::Prefix,
488 llvm::cl::desc("Undefine the specified macro"));
489
490// Append a #define line to Buf for Macro. Macro should be of the form XXX,
491// in which case we emit "#define XXX 1" or "XXX=Y z W" in which case we emit
492// "#define XXX Y z W". To get a #define with no value, use "XXX=".
493static void DefineBuiltinMacro(std::vector<char> &Buf, const char *Macro,
494 const char *Command = "#define ") {
495 Buf.insert(Buf.end(), Command, Command+strlen(Command));
496 if (const char *Equal = strchr(Macro, '=')) {
497 // Turn the = into ' '.
498 Buf.insert(Buf.end(), Macro, Equal);
499 Buf.push_back(' ');
500 Buf.insert(Buf.end(), Equal+1, Equal+strlen(Equal));
501 } else {
502 // Push "macroname 1".
503 Buf.insert(Buf.end(), Macro, Macro+strlen(Macro));
504 Buf.push_back(' ');
505 Buf.push_back('1');
506 }
507 Buf.push_back('\n');
508}
509
Reid Spencer5f016e22007-07-11 17:01:13 +0000510
Chris Lattner53b0dab2007-10-09 22:10:18 +0000511/// InitializePreprocessor - Initialize the preprocessor getting it and the
512/// environment ready to process a single file. This returns the file ID for the
513/// input file. If a failure happens, it returns 0.
514///
515static unsigned InitializePreprocessor(Preprocessor &PP,
516 const std::string &InFile,
517 SourceManager &SourceMgr,
518 HeaderSearch &HeaderInfo,
519 const LangOptions &LangInfo,
520 std::vector<char> &PredefineBuffer) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000521
Chris Lattner53b0dab2007-10-09 22:10:18 +0000522 FileManager &FileMgr = HeaderInfo.getFileMgr();
Reid Spencer5f016e22007-07-11 17:01:13 +0000523
Chris Lattner53b0dab2007-10-09 22:10:18 +0000524 // Figure out where to get and map in the main file.
525 unsigned MainFileID = 0;
526 if (InFile != "-") {
527 const FileEntry *File = FileMgr.getFile(InFile);
528 if (File) MainFileID = SourceMgr.createFileID(File, SourceLocation());
529 if (MainFileID == 0) {
530 fprintf(stderr, "Error reading '%s'!\n",InFile.c_str());
531 return 0;
532 }
533 } else {
534 llvm::MemoryBuffer *SB = llvm::MemoryBuffer::getSTDIN();
535 if (SB) MainFileID = SourceMgr.createFileIDForMemBuffer(SB);
536 if (MainFileID == 0) {
537 fprintf(stderr, "Error reading standard input! Empty?\n");
538 return 0;
539 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000540 }
541
Reid Spencer5f016e22007-07-11 17:01:13 +0000542 // Add macros from the command line.
543 // FIXME: Should traverse the #define/#undef lists in parallel.
544 for (unsigned i = 0, e = D_macros.size(); i != e; ++i)
Chris Lattner53b0dab2007-10-09 22:10:18 +0000545 DefineBuiltinMacro(PredefineBuffer, D_macros[i].c_str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000546 for (unsigned i = 0, e = U_macros.size(); i != e; ++i)
Chris Lattner53b0dab2007-10-09 22:10:18 +0000547 DefineBuiltinMacro(PredefineBuffer, U_macros[i].c_str(), "#undef ");
548
549 // FIXME: Read any files specified by -imacros or -include.
550
551 // Null terminate PredefinedBuffer and add it.
552 PredefineBuffer.push_back(0);
553 PP.setPredefines(&PredefineBuffer[0]);
554
555 // Once we've read this, we're done.
556 return MainFileID;
Reid Spencer5f016e22007-07-11 17:01:13 +0000557}
Chris Lattner53b0dab2007-10-09 22:10:18 +0000558
559
Reid Spencer5f016e22007-07-11 17:01:13 +0000560
561//===----------------------------------------------------------------------===//
562// Preprocessor include path information.
563//===----------------------------------------------------------------------===//
564
565// This tool exports a large number of command line options to control how the
566// preprocessor searches for header files. At root, however, the Preprocessor
567// object takes a very simple interface: a list of directories to search for
568//
569// FIXME: -nostdinc,-nostdinc++
Chris Lattner0c946412007-08-26 17:47:35 +0000570// FIXME: -imultilib
Reid Spencer5f016e22007-07-11 17:01:13 +0000571//
572// FIXME: -include,-imacros
573
574static llvm::cl::opt<bool>
575nostdinc("nostdinc", llvm::cl::desc("Disable standard #include directories"));
576
577// Various command line options. These four add directories to each chain.
578static llvm::cl::list<std::string>
579F_dirs("F", llvm::cl::value_desc("directory"), llvm::cl::Prefix,
580 llvm::cl::desc("Add directory to framework include search path"));
581static llvm::cl::list<std::string>
582I_dirs("I", llvm::cl::value_desc("directory"), llvm::cl::Prefix,
583 llvm::cl::desc("Add directory to include search path"));
584static llvm::cl::list<std::string>
585idirafter_dirs("idirafter", llvm::cl::value_desc("directory"), llvm::cl::Prefix,
586 llvm::cl::desc("Add directory to AFTER include search path"));
587static llvm::cl::list<std::string>
588iquote_dirs("iquote", llvm::cl::value_desc("directory"), llvm::cl::Prefix,
589 llvm::cl::desc("Add directory to QUOTE include search path"));
590static llvm::cl::list<std::string>
591isystem_dirs("isystem", llvm::cl::value_desc("directory"), llvm::cl::Prefix,
592 llvm::cl::desc("Add directory to SYSTEM include search path"));
593
594// These handle -iprefix/-iwithprefix/-iwithprefixbefore.
595static llvm::cl::list<std::string>
596iprefix_vals("iprefix", llvm::cl::value_desc("prefix"), llvm::cl::Prefix,
597 llvm::cl::desc("Set the -iwithprefix/-iwithprefixbefore prefix"));
598static llvm::cl::list<std::string>
599iwithprefix_vals("iwithprefix", llvm::cl::value_desc("dir"), llvm::cl::Prefix,
600 llvm::cl::desc("Set directory to SYSTEM include search path with prefix"));
601static llvm::cl::list<std::string>
602iwithprefixbefore_vals("iwithprefixbefore", llvm::cl::value_desc("dir"),
603 llvm::cl::Prefix,
604 llvm::cl::desc("Set directory to include search path with prefix"));
605
Chris Lattner0c946412007-08-26 17:47:35 +0000606static llvm::cl::opt<std::string>
607isysroot("isysroot", llvm::cl::value_desc("dir"), llvm::cl::init("/"),
608 llvm::cl::desc("Set the system root directory (usually /)"));
609
Reid Spencer5f016e22007-07-11 17:01:13 +0000610// Finally, implement the code that groks the options above.
611enum IncludeDirGroup {
612 Quoted = 0,
613 Angled,
614 System,
615 After
616};
617
618static std::vector<DirectoryLookup> IncludeGroup[4];
619
620/// AddPath - Add the specified path to the specified group list.
621///
622static void AddPath(const std::string &Path, IncludeDirGroup Group,
623 bool isCXXAware, bool isUserSupplied,
624 bool isFramework, FileManager &FM) {
Chris Lattner0c946412007-08-26 17:47:35 +0000625 const DirectoryEntry *DE;
626 if (Group == System)
627 DE = FM.getDirectory(isysroot + "/" + Path);
628 else
629 DE = FM.getDirectory(Path);
630
Reid Spencer5f016e22007-07-11 17:01:13 +0000631 if (DE == 0) {
632 if (Verbose)
633 fprintf(stderr, "ignoring nonexistent directory \"%s\"\n",
634 Path.c_str());
635 return;
636 }
637
638 DirectoryLookup::DirType Type;
639 if (Group == Quoted || Group == Angled)
640 Type = DirectoryLookup::NormalHeaderDir;
641 else if (isCXXAware)
642 Type = DirectoryLookup::SystemHeaderDir;
643 else
644 Type = DirectoryLookup::ExternCSystemHeaderDir;
645
646 IncludeGroup[Group].push_back(DirectoryLookup(DE, Type, isUserSupplied,
647 isFramework));
648}
649
650/// RemoveDuplicates - If there are duplicate directory entries in the specified
651/// search list, remove the later (dead) ones.
652static void RemoveDuplicates(std::vector<DirectoryLookup> &SearchList) {
653 std::set<const DirectoryEntry *> SeenDirs;
654 for (unsigned i = 0; i != SearchList.size(); ++i) {
655 // If this isn't the first time we've seen this dir, remove it.
656 if (!SeenDirs.insert(SearchList[i].getDir()).second) {
657 if (Verbose)
658 fprintf(stderr, "ignoring duplicate directory \"%s\"\n",
659 SearchList[i].getDir()->getName());
660 SearchList.erase(SearchList.begin()+i);
661 --i;
662 }
663 }
664}
665
666/// InitializeIncludePaths - Process the -I options and set them in the
667/// HeaderSearch object.
668static void InitializeIncludePaths(HeaderSearch &Headers, FileManager &FM,
Chris Lattner4f037832007-12-05 23:24:17 +0000669 const LangOptions &Lang) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000670 // Handle -F... options.
671 for (unsigned i = 0, e = F_dirs.size(); i != e; ++i)
672 AddPath(F_dirs[i], Angled, false, true, true, FM);
673
674 // Handle -I... options.
Chris Lattner4f037832007-12-05 23:24:17 +0000675 for (unsigned i = 0, e = I_dirs.size(); i != e; ++i)
676 AddPath(I_dirs[i], Angled, false, true, false, FM);
Reid Spencer5f016e22007-07-11 17:01:13 +0000677
678 // Handle -idirafter... options.
679 for (unsigned i = 0, e = idirafter_dirs.size(); i != e; ++i)
680 AddPath(idirafter_dirs[i], After, false, true, false, FM);
681
682 // Handle -iquote... options.
683 for (unsigned i = 0, e = iquote_dirs.size(); i != e; ++i)
684 AddPath(iquote_dirs[i], Quoted, false, true, false, FM);
685
686 // Handle -isystem... options.
687 for (unsigned i = 0, e = isystem_dirs.size(); i != e; ++i)
688 AddPath(isystem_dirs[i], System, false, true, false, FM);
689
690 // Walk the -iprefix/-iwithprefix/-iwithprefixbefore argument lists in
691 // parallel, processing the values in order of occurance to get the right
692 // prefixes.
693 {
694 std::string Prefix = ""; // FIXME: this isn't the correct default prefix.
695 unsigned iprefix_idx = 0;
696 unsigned iwithprefix_idx = 0;
697 unsigned iwithprefixbefore_idx = 0;
698 bool iprefix_done = iprefix_vals.empty();
699 bool iwithprefix_done = iwithprefix_vals.empty();
700 bool iwithprefixbefore_done = iwithprefixbefore_vals.empty();
701 while (!iprefix_done || !iwithprefix_done || !iwithprefixbefore_done) {
702 if (!iprefix_done &&
703 (iwithprefix_done ||
704 iprefix_vals.getPosition(iprefix_idx) <
705 iwithprefix_vals.getPosition(iwithprefix_idx)) &&
706 (iwithprefixbefore_done ||
707 iprefix_vals.getPosition(iprefix_idx) <
708 iwithprefixbefore_vals.getPosition(iwithprefixbefore_idx))) {
709 Prefix = iprefix_vals[iprefix_idx];
710 ++iprefix_idx;
711 iprefix_done = iprefix_idx == iprefix_vals.size();
712 } else if (!iwithprefix_done &&
713 (iwithprefixbefore_done ||
714 iwithprefix_vals.getPosition(iwithprefix_idx) <
715 iwithprefixbefore_vals.getPosition(iwithprefixbefore_idx))) {
716 AddPath(Prefix+iwithprefix_vals[iwithprefix_idx],
717 System, false, false, false, FM);
718 ++iwithprefix_idx;
719 iwithprefix_done = iwithprefix_idx == iwithprefix_vals.size();
720 } else {
721 AddPath(Prefix+iwithprefixbefore_vals[iwithprefixbefore_idx],
722 Angled, false, false, false, FM);
723 ++iwithprefixbefore_idx;
724 iwithprefixbefore_done =
725 iwithprefixbefore_idx == iwithprefixbefore_vals.size();
726 }
727 }
728 }
729
730 // FIXME: Add contents of the CPATH, C_INCLUDE_PATH, CPLUS_INCLUDE_PATH,
731 // OBJC_INCLUDE_PATH, OBJCPLUS_INCLUDE_PATH environment variables.
732
733 // FIXME: temporary hack: hard-coded paths.
734 // FIXME: get these from the target?
735 if (!nostdinc) {
736 if (Lang.CPlusPlus) {
737 AddPath("/usr/include/c++/4.0.0", System, true, false, false, FM);
738 AddPath("/usr/include/c++/4.0.0/i686-apple-darwin8", System, true, false,
739 false, FM);
740 AddPath("/usr/include/c++/4.0.0/backward", System, true, false, false,FM);
741 }
742
743 AddPath("/usr/local/include", System, false, false, false, FM);
744 // leopard
745 AddPath("/usr/lib/gcc/i686-apple-darwin9/4.0.1/include", System,
746 false, false, false, FM);
747 AddPath("/usr/lib/gcc/powerpc-apple-darwin9/4.0.1/include",
748 System, false, false, false, FM);
749 AddPath("/usr/lib/gcc/powerpc-apple-darwin9/"
750 "4.0.1/../../../../powerpc-apple-darwin0/include",
751 System, false, false, false, FM);
752
753 // tiger
754 AddPath("/usr/lib/gcc/i686-apple-darwin8/4.0.1/include", System,
755 false, false, false, FM);
756 AddPath("/usr/lib/gcc/powerpc-apple-darwin8/4.0.1/include",
757 System, false, false, false, FM);
758 AddPath("/usr/lib/gcc/powerpc-apple-darwin8/"
759 "4.0.1/../../../../powerpc-apple-darwin8/include",
760 System, false, false, false, FM);
761
762 AddPath("/usr/include", System, false, false, false, FM);
763 AddPath("/System/Library/Frameworks", System, true, false, true, FM);
764 AddPath("/Library/Frameworks", System, true, false, true, FM);
765 }
766
767 // Now that we have collected all of the include paths, merge them all
768 // together and tell the preprocessor about them.
769
770 // Concatenate ANGLE+SYSTEM+AFTER chains together into SearchList.
771 std::vector<DirectoryLookup> SearchList;
772 SearchList = IncludeGroup[Angled];
773 SearchList.insert(SearchList.end(), IncludeGroup[System].begin(),
774 IncludeGroup[System].end());
775 SearchList.insert(SearchList.end(), IncludeGroup[After].begin(),
776 IncludeGroup[After].end());
777 RemoveDuplicates(SearchList);
778 RemoveDuplicates(IncludeGroup[Quoted]);
779
780 // Prepend QUOTED list on the search list.
781 SearchList.insert(SearchList.begin(), IncludeGroup[Quoted].begin(),
782 IncludeGroup[Quoted].end());
783
784
785 bool DontSearchCurDir = false; // TODO: set to true if -I- is set?
786 Headers.SetSearchPaths(SearchList, IncludeGroup[Quoted].size(),
787 DontSearchCurDir);
788
789 // If verbose, print the list of directories that will be searched.
790 if (Verbose) {
791 fprintf(stderr, "#include \"...\" search starts here:\n");
792 unsigned QuotedIdx = IncludeGroup[Quoted].size();
793 for (unsigned i = 0, e = SearchList.size(); i != e; ++i) {
794 if (i == QuotedIdx)
795 fprintf(stderr, "#include <...> search starts here:\n");
796 fprintf(stderr, " %s\n", SearchList[i].getDir()->getName());
797 }
798 }
799}
800
801
Reid Spencer5f016e22007-07-11 17:01:13 +0000802//===----------------------------------------------------------------------===//
803// Basic Parser driver
804//===----------------------------------------------------------------------===//
805
806static void ParseFile(Preprocessor &PP, MinimalAction *PA, unsigned MainFileID){
807 Parser P(PP, *PA);
Chris Lattner53b0dab2007-10-09 22:10:18 +0000808 PP.EnterMainSourceFile(MainFileID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000809
810 // Parsing the specified input file.
811 P.ParseTranslationUnit();
812 delete PA;
813}
814
815//===----------------------------------------------------------------------===//
816// Main driver
817//===----------------------------------------------------------------------===//
818
Ted Kremenekdb094a22007-12-05 18:27:04 +0000819/// CreateASTConsumer - Create the ASTConsumer for the corresponding program
820/// action. These consumers can operate on both ASTs that are freshly
821/// parsed from source files as well as those deserialized from Bitcode.
822static ASTConsumer* CreateASTConsumer(Diagnostic& Diag, FileManager& FileMgr,
823 const LangOptions& LangOpts) {
824 switch (ProgAction) {
825 default:
826 return NULL;
827
828 case ASTPrint:
829 return CreateASTPrinter();
830
831 case ASTDump:
832 return CreateASTDumper();
833
834 case ASTView:
835 return CreateASTViewer();
836
837 case ParseCFGDump:
838 case ParseCFGView:
839 return CreateCFGDumper(ProgAction == ParseCFGView);
840
841 case AnalysisLiveVariables:
842 return CreateLiveVarAnalyzer();
843
844 case WarnDeadStores:
845 return CreateDeadStoreChecker(Diag);
846
847 case WarnUninitVals:
848 return CreateUnitValsChecker(Diag);
849
850 case TestSerialization:
Ted Kremenekacc9f332007-12-05 21:34:36 +0000851 return CreateSerializationTest(Diag, FileMgr, LangOpts);
Ted Kremenekdb094a22007-12-05 18:27:04 +0000852
853 case EmitLLVM:
854 return CreateLLVMEmitter(Diag, LangOpts);
855
856 case RewriteTest:
857 return CreateCodeRewriterTest(Diag);
858 }
859}
860
Reid Spencer5f016e22007-07-11 17:01:13 +0000861/// ProcessInputFile - Process a single input file with the specified state.
862///
863static void ProcessInputFile(Preprocessor &PP, unsigned MainFileID,
864 const std::string &InFile,
865 SourceManager &SourceMgr,
866 TextDiagnostics &OurDiagnosticClient,
867 HeaderSearch &HeaderInfo,
868 const LangOptions &LangInfo) {
Ted Kremenekd39bcd82007-09-26 18:39:29 +0000869
870 ASTConsumer* Consumer = NULL;
Chris Lattnerbd247762007-07-22 06:05:44 +0000871 bool ClearSourceMgr = false;
Ted Kremenekd39bcd82007-09-26 18:39:29 +0000872
Reid Spencer5f016e22007-07-11 17:01:13 +0000873 switch (ProgAction) {
874 default:
Ted Kremenekdb094a22007-12-05 18:27:04 +0000875 Consumer = CreateASTConsumer(PP.getDiagnostics(), HeaderInfo.getFileMgr(),
876 PP.getLangOptions());
877
878 if (!Consumer) {
879 fprintf(stderr, "Unexpected program action!\n");
880 return;
881 }
882 break;
883
Reid Spencer5f016e22007-07-11 17:01:13 +0000884 case DumpTokens: { // Token dump mode.
Chris Lattnerd2177732007-07-20 16:59:19 +0000885 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000886 // Start parsing the specified input file.
Chris Lattner53b0dab2007-10-09 22:10:18 +0000887 PP.EnterMainSourceFile(MainFileID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000888 do {
889 PP.Lex(Tok);
890 PP.DumpToken(Tok, true);
891 fprintf(stderr, "\n");
Chris Lattner057aaf62007-10-09 18:03:42 +0000892 } while (Tok.isNot(tok::eof));
Chris Lattnerbd247762007-07-22 06:05:44 +0000893 ClearSourceMgr = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000894 break;
895 }
896 case RunPreprocessorOnly: { // Just lex as fast as we can, no output.
Chris Lattnerd2177732007-07-20 16:59:19 +0000897 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000898 // Start parsing the specified input file.
Chris Lattner53b0dab2007-10-09 22:10:18 +0000899 PP.EnterMainSourceFile(MainFileID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000900 do {
901 PP.Lex(Tok);
Chris Lattner057aaf62007-10-09 18:03:42 +0000902 } while (Tok.isNot(tok::eof));
Chris Lattnerbd247762007-07-22 06:05:44 +0000903 ClearSourceMgr = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 break;
905 }
906
907 case PrintPreprocessedInput: // -E mode.
908 DoPrintPreprocessedInput(MainFileID, PP, LangInfo);
Chris Lattnerbd247762007-07-22 06:05:44 +0000909 ClearSourceMgr = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000910 break;
911
912 case ParseNoop: // -parse-noop
Steve Naroffb4292f22007-10-31 20:55:39 +0000913 ParseFile(PP, new MinimalAction(PP.getIdentifierTable()), MainFileID);
Chris Lattnerbd247762007-07-22 06:05:44 +0000914 ClearSourceMgr = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000915 break;
916
917 case ParsePrintCallbacks:
Steve Naroffb4292f22007-10-31 20:55:39 +0000918 ParseFile(PP, CreatePrintParserActionsAction(PP.getIdentifierTable()),
919 MainFileID);
Chris Lattnerbd247762007-07-22 06:05:44 +0000920 ClearSourceMgr = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000921 break;
Ted Kremenek44579782007-09-25 18:37:20 +0000922
Ted Kremenekd39bcd82007-09-26 18:39:29 +0000923 case ParseSyntaxOnly: // -fsyntax-only
Ted Kremenekd39bcd82007-09-26 18:39:29 +0000924 Consumer = new ASTConsumer();
Ted Kremenek2bf55142007-09-17 20:49:30 +0000925 break;
Chris Lattner580980b2007-09-16 19:46:59 +0000926 }
Ted Kremenekd39bcd82007-09-26 18:39:29 +0000927
928 if (Consumer) {
Ted Kremenek9f3d9422007-09-26 20:14:22 +0000929 if (VerifyDiagnostics)
Chris Lattner31e6c7d2007-11-03 06:24:16 +0000930 exit(CheckASTConsumer(PP, MainFileID, Consumer));
931
932 // This deletes Consumer.
933 ParseAST(PP, MainFileID, Consumer, Stats);
Reid Spencer5f016e22007-07-11 17:01:13 +0000934 }
935
936 if (Stats) {
937 fprintf(stderr, "\nSTATISTICS FOR '%s':\n", InFile.c_str());
938 PP.PrintStats();
939 PP.getIdentifierTable().PrintStats();
940 HeaderInfo.PrintStats();
Chris Lattnerbd247762007-07-22 06:05:44 +0000941 if (ClearSourceMgr)
942 SourceMgr.PrintStats();
Reid Spencer5f016e22007-07-11 17:01:13 +0000943 fprintf(stderr, "\n");
944 }
Chris Lattnerbd247762007-07-22 06:05:44 +0000945
946 // For a multi-file compilation, some things are ok with nuking the source
947 // manager tables, other require stable fileid/macroid's across multiple
948 // files.
949 if (ClearSourceMgr) {
950 SourceMgr.clearIDTables();
951 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000952}
953
954static llvm::cl::list<std::string>
955InputFilenames(llvm::cl::Positional, llvm::cl::desc("<input files>"));
956
957
958int main(int argc, char **argv) {
959 llvm::cl::ParseCommandLineOptions(argc, argv, " llvm cfe\n");
960 llvm::sys::PrintStackTraceOnErrorSignal();
961
962 // If no input was specified, read from stdin.
963 if (InputFilenames.empty())
964 InputFilenames.push_back("-");
965
966 /// Create a SourceManager object. This tracks and owns all the file buffers
967 /// allocated to the program.
968 SourceManager SourceMgr;
969
970 // Create a file manager object to provide access to and cache the filesystem.
971 FileManager FileMgr;
972
973 // Initialize language options, inferring file types from input filenames.
974 // FIXME: This infers info from the first file, we should clump by language
975 // to handle 'x.c y.c a.cpp b.cpp'.
976 LangOptions LangInfo;
Ted Kremenek8904f152007-12-05 23:49:08 +0000977 InitializeBaseLanguage();
978 LangKind LK = GetLanguage(InputFilenames[0]);
979 InitializeLangOptions(LangInfo, LK);
980 InitializeLanguageStandard(LangInfo, LK);
Reid Spencer5f016e22007-07-11 17:01:13 +0000981
982 std::auto_ptr<TextDiagnostics> DiagClient;
Ted Kremenek9f3d9422007-09-26 20:14:22 +0000983 if (!VerifyDiagnostics) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 // Print diagnostics to stderr by default.
985 DiagClient.reset(new TextDiagnosticPrinter(SourceMgr));
986 } else {
987 // When checking diagnostics, just buffer them up.
988 DiagClient.reset(new TextDiagnosticBuffer(SourceMgr));
989
990 if (InputFilenames.size() != 1) {
991 fprintf(stderr,
Ted Kremenek9f3d9422007-09-26 20:14:22 +0000992 "-verify only works on single input files for now.\n");
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 return 1;
994 }
995 }
996
997 // Configure our handling of diagnostics.
998 Diagnostic Diags(*DiagClient);
999 InitializeDiagnostics(Diags);
1000
1001 // Get information about the targets being compiled for. Note that this
1002 // pointer and the TargetInfoImpl objects are never deleted by this toy
1003 // driver.
Ted Kremenekae360762007-12-03 22:06:55 +00001004 TargetInfo *Target;
1005
1006 { // Create triples, and create the TargetInfo.
1007 std::vector<std::string> triples;
1008 CreateTargetTriples(triples);
Ted Kremenekacc9f332007-12-05 21:34:36 +00001009 Target = CreateTargetInfo(triples,&Diags);
Ted Kremenekae360762007-12-03 22:06:55 +00001010
Ted Kremenekaead4722007-12-03 23:23:21 +00001011 if (Target == 0) {
1012 fprintf(stderr, "Sorry, I don't know what target this is: %s\n",
1013 triples[0].c_str());
1014 fprintf(stderr, "Please use -triple or -arch.\n");
1015 exit(1);
1016 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001017 }
1018
Chris Lattner4f037832007-12-05 23:24:17 +00001019 // -I- is a deprecated GCC feature, scan for it and reject it.
1020 for (unsigned i = 0, e = I_dirs.size(); i != e; ++i) {
1021 if (I_dirs[i] == "-") {
1022 Diags.Report(SourceLocation(), diag::err_pp_I_dash_not_supported);
1023 I_dirs.erase(I_dirs.begin()+i);
1024 --i;
1025 }
1026 }
1027
Reid Spencer5f016e22007-07-11 17:01:13 +00001028 // Process the -I options and set them in the HeaderInfo.
1029 HeaderSearch HeaderInfo(FileMgr);
1030 DiagClient->setHeaderSearch(HeaderInfo);
Chris Lattner4f037832007-12-05 23:24:17 +00001031 InitializeIncludePaths(HeaderInfo, FileMgr, LangInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00001032
1033 for (unsigned i = 0, e = InputFilenames.size(); i != e; ++i) {
1034 // Set up the preprocessor with these options.
1035 Preprocessor PP(Diags, LangInfo, *Target, SourceMgr, HeaderInfo);
Reid Spencer5f016e22007-07-11 17:01:13 +00001036 const std::string &InFile = InputFilenames[i];
Chris Lattner53b0dab2007-10-09 22:10:18 +00001037 std::vector<char> PredefineBuffer;
Reid Spencer5f016e22007-07-11 17:01:13 +00001038 unsigned MainFileID = InitializePreprocessor(PP, InFile, SourceMgr,
1039 HeaderInfo, LangInfo,
Chris Lattner53b0dab2007-10-09 22:10:18 +00001040 PredefineBuffer);
Reid Spencer5f016e22007-07-11 17:01:13 +00001041
1042 if (!MainFileID) continue;
1043
1044 ProcessInputFile(PP, MainFileID, InFile, SourceMgr,
1045 *DiagClient, HeaderInfo, LangInfo);
1046 HeaderInfo.ClearFileInfo();
1047 }
1048
1049 unsigned NumDiagnostics = Diags.getNumDiagnostics();
1050
1051 if (NumDiagnostics)
1052 fprintf(stderr, "%d diagnostic%s generated.\n", NumDiagnostics,
1053 (NumDiagnostics == 1 ? "" : "s"));
1054
1055 if (Stats) {
1056 // Printed from high-to-low level.
1057 SourceMgr.PrintStats();
1058 FileMgr.PrintStats();
1059 fprintf(stderr, "\n");
1060 }
1061
Chris Lattner96f1a642007-07-21 05:40:53 +00001062 return Diags.getNumErrors() != 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001063}