blob: 2fcbc67ef1189c433f35d7a461e3f55894814edd [file] [log] [blame]
Daniel Dunbar8305d012009-11-14 10:42:46 +00001//===--- FrontendActions.cpp ----------------------------------------------===//
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/Frontend/FrontendActions.h"
11#include "clang/AST/ASTConsumer.h"
Daniel Dunbarc72cc502010-06-11 20:10:12 +000012#include "clang/Lex/Pragma.h"
Daniel Dunbar5f3b9972009-11-14 10:42:57 +000013#include "clang/Lex/Preprocessor.h"
14#include "clang/Parse/Parser.h"
Daniel Dunbar8305d012009-11-14 10:42:46 +000015#include "clang/Basic/FileManager.h"
Daniel Dunbar8305d012009-11-14 10:42:46 +000016#include "clang/Frontend/ASTConsumers.h"
17#include "clang/Frontend/ASTUnit.h"
18#include "clang/Frontend/CompilerInstance.h"
Daniel Dunbar8305d012009-11-14 10:42:46 +000019#include "clang/Frontend/FrontendDiagnostic.h"
20#include "clang/Frontend/Utils.h"
Sebastian Redl7faa2ec2010-08-18 23:56:37 +000021#include "clang/Serialization/ASTWriter.h"
Nick Lewyckyba5f6ec2010-04-24 01:30:46 +000022#include "llvm/ADT/OwningPtr.h"
Douglas Gregorf033f1d2010-07-20 20:18:03 +000023#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbar8305d012009-11-14 10:42:46 +000024#include "llvm/Support/raw_ostream.h"
Douglas Gregor10efbaf2011-09-23 23:43:36 +000025#include "llvm/Support/system_error.h"
26
Daniel Dunbar8305d012009-11-14 10:42:46 +000027using namespace clang;
28
Daniel Dunbar5f3b9972009-11-14 10:42:57 +000029//===----------------------------------------------------------------------===//
Daniel Dunbar27585952010-03-19 19:44:04 +000030// Custom Actions
31//===----------------------------------------------------------------------===//
32
33ASTConsumer *InitOnlyAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000034 StringRef InFile) {
Daniel Dunbar27585952010-03-19 19:44:04 +000035 return new ASTConsumer();
36}
37
38void InitOnlyAction::ExecuteAction() {
39}
40
41//===----------------------------------------------------------------------===//
Daniel Dunbar5f3b9972009-11-14 10:42:57 +000042// AST Consumer Actions
43//===----------------------------------------------------------------------===//
44
Daniel Dunbar8305d012009-11-14 10:42:46 +000045ASTConsumer *ASTPrintAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000046 StringRef InFile) {
47 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
Daniel Dunbar36043592009-12-03 09:13:30 +000048 return CreateASTPrinter(OS);
49 return 0;
Daniel Dunbar8305d012009-11-14 10:42:46 +000050}
51
Daniel Dunbar8305d012009-11-14 10:42:46 +000052ASTConsumer *ASTDumpAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000053 StringRef InFile) {
Daniel Dunbar8305d012009-11-14 10:42:46 +000054 return CreateASTDumper();
55}
56
John McCallf3514242010-11-24 11:21:45 +000057ASTConsumer *ASTDumpXMLAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000058 StringRef InFile) {
59 raw_ostream *OS;
John McCallf3514242010-11-24 11:21:45 +000060 if (CI.getFrontendOpts().OutputFile.empty())
61 OS = &llvm::outs();
62 else
63 OS = CI.createDefaultOutputFile(false, InFile);
64 if (!OS) return 0;
65 return CreateASTDumperXML(*OS);
66}
67
Daniel Dunbar8305d012009-11-14 10:42:46 +000068ASTConsumer *ASTViewAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000069 StringRef InFile) {
Daniel Dunbar8305d012009-11-14 10:42:46 +000070 return CreateASTViewer();
71}
72
73ASTConsumer *DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000074 StringRef InFile) {
Daniel Dunbar8305d012009-11-14 10:42:46 +000075 return CreateDeclContextPrinter();
76}
77
Daniel Dunbar8305d012009-11-14 10:42:46 +000078ASTConsumer *GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000079 StringRef InFile) {
Douglas Gregor1d715ac2010-08-03 08:14:03 +000080 std::string Sysroot;
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +000081 std::string OutputFile;
Chris Lattner5f9e2722011-07-23 10:55:15 +000082 raw_ostream *OS = 0;
Douglas Gregor9293ba82011-08-25 22:35:51 +000083 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
Daniel Dunbar8305d012009-11-14 10:42:46 +000084 return 0;
Douglas Gregor1d715ac2010-08-03 08:14:03 +000085
Douglas Gregor832d6202011-07-22 16:35:34 +000086 if (!CI.getFrontendOpts().RelocatablePCH)
87 Sysroot.clear();
Douglas Gregorb8691df2011-11-15 21:49:36 +000088 return new PCHGenerator(CI.getPreprocessor(), OutputFile, /*Module=*/false,
Douglas Gregor7143aab2011-09-01 17:04:32 +000089 Sysroot, OS);
Douglas Gregor1d715ac2010-08-03 08:14:03 +000090}
91
92bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000093 StringRef InFile,
Douglas Gregor1d715ac2010-08-03 08:14:03 +000094 std::string &Sysroot,
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +000095 std::string &OutputFile,
Douglas Gregor9293ba82011-08-25 22:35:51 +000096 raw_ostream *&OS) {
Douglas Gregor1d715ac2010-08-03 08:14:03 +000097 Sysroot = CI.getHeaderSearchOpts().Sysroot;
98 if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
Sebastian Redl11c3dc42010-08-17 17:55:38 +000099 CI.getDiagnostics().Report(diag::err_relocatable_without_isysroot);
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000100 return true;
Daniel Dunbar8305d012009-11-14 10:42:46 +0000101 }
102
Daniel Dunbarc7a9cda2011-01-31 22:00:44 +0000103 // We use createOutputFile here because this is exposed via libclang, and we
104 // must disable the RemoveFileOnSignal behavior.
Argyrios Kyrtzidis7e909852011-07-28 00:45:10 +0000105 // We use a temporary to avoid race conditions.
Daniel Dunbarc7a9cda2011-01-31 22:00:44 +0000106 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
Argyrios Kyrtzidis7e909852011-07-28 00:45:10 +0000107 /*RemoveFileOnSignal=*/false, InFile,
108 /*Extension=*/"", /*useTemporary=*/true);
Daniel Dunbar36043592009-12-03 09:13:30 +0000109 if (!OS)
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000110 return true;
Daniel Dunbar36043592009-12-03 09:13:30 +0000111
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000112 OutputFile = CI.getFrontendOpts().OutputFile;
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000113 return false;
Daniel Dunbar8305d012009-11-14 10:42:46 +0000114}
115
Douglas Gregorb8691df2011-11-15 21:49:36 +0000116ASTConsumer *GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI,
117 StringRef InFile) {
118 std::string Sysroot;
119 std::string OutputFile;
120 raw_ostream *OS = 0;
121 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
122 return 0;
123
124 if (!CI.getFrontendOpts().RelocatablePCH)
125 Sysroot.clear();
126 return new PCHGenerator(CI.getPreprocessor(), OutputFile, /*Module=*/true,
127 Sysroot, OS);
128}
129
130bool GenerateModuleAction::ComputeASTConsumerArguments(CompilerInstance &CI,
131 StringRef InFile,
132 std::string &Sysroot,
133 std::string &OutputFile,
134 raw_ostream *&OS) {
135 Sysroot = CI.getHeaderSearchOpts().Sysroot;
136 if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
137 CI.getDiagnostics().Report(diag::err_relocatable_without_isysroot);
138 return true;
139 }
140
141 // We use createOutputFile here because this is exposed via libclang, and we
142 // must disable the RemoveFileOnSignal behavior.
143 // We use a temporary to avoid race conditions.
144 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
145 /*RemoveFileOnSignal=*/false, InFile,
146 /*Extension=*/"", /*useTemporary=*/true);
147 if (!OS)
148 return true;
149
150 OutputFile = CI.getFrontendOpts().OutputFile;
151 return false;
152}
153
Daniel Dunbar8305d012009-11-14 10:42:46 +0000154ASTConsumer *SyntaxOnlyAction::CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000155 StringRef InFile) {
Daniel Dunbar8305d012009-11-14 10:42:46 +0000156 return new ASTConsumer();
157}
158
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000159//===----------------------------------------------------------------------===//
160// Preprocessor Actions
161//===----------------------------------------------------------------------===//
162
163void DumpRawTokensAction::ExecuteAction() {
164 Preprocessor &PP = getCompilerInstance().getPreprocessor();
165 SourceManager &SM = PP.getSourceManager();
166
167 // Start lexing the specified input file.
Chris Lattner6e290142009-11-30 04:18:44 +0000168 const llvm::MemoryBuffer *FromFile = SM.getBuffer(SM.getMainFileID());
169 Lexer RawLex(SM.getMainFileID(), FromFile, SM, PP.getLangOptions());
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000170 RawLex.SetKeepWhitespaceMode(true);
171
172 Token RawTok;
173 RawLex.LexFromRawLexer(RawTok);
174 while (RawTok.isNot(tok::eof)) {
175 PP.DumpToken(RawTok, true);
Daniel Dunbar33f57f82009-11-25 10:27:48 +0000176 llvm::errs() << "\n";
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000177 RawLex.LexFromRawLexer(RawTok);
178 }
179}
180
181void DumpTokensAction::ExecuteAction() {
182 Preprocessor &PP = getCompilerInstance().getPreprocessor();
183 // Start preprocessing the specified input file.
184 Token Tok;
Chris Lattnere127a0d2010-04-20 20:35:58 +0000185 PP.EnterMainSourceFile();
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000186 do {
187 PP.Lex(Tok);
188 PP.DumpToken(Tok, true);
Daniel Dunbar33f57f82009-11-25 10:27:48 +0000189 llvm::errs() << "\n";
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000190 } while (Tok.isNot(tok::eof));
191}
192
193void GeneratePTHAction::ExecuteAction() {
194 CompilerInstance &CI = getCompilerInstance();
195 if (CI.getFrontendOpts().OutputFile.empty() ||
196 CI.getFrontendOpts().OutputFile == "-") {
197 // FIXME: Don't fail this way.
198 // FIXME: Verify that we can actually seek in the given file.
Chris Lattner83e7a782010-04-07 22:58:06 +0000199 llvm::report_fatal_error("PTH requires a seekable file for output!");
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000200 }
201 llvm::raw_fd_ostream *OS =
202 CI.createDefaultOutputFile(true, getCurrentFile());
Daniel Dunbar36043592009-12-03 09:13:30 +0000203 if (!OS) return;
204
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000205 CacheTokens(CI.getPreprocessor(), OS);
206}
207
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000208void PreprocessOnlyAction::ExecuteAction() {
209 Preprocessor &PP = getCompilerInstance().getPreprocessor();
210
Daniel Dunbarc72cc502010-06-11 20:10:12 +0000211 // Ignore unknown pragmas.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000212 PP.AddPragmaHandler(new EmptyPragmaHandler());
Daniel Dunbarc72cc502010-06-11 20:10:12 +0000213
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000214 Token Tok;
215 // Start parsing the specified input file.
Chris Lattnere127a0d2010-04-20 20:35:58 +0000216 PP.EnterMainSourceFile();
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000217 do {
218 PP.Lex(Tok);
219 } while (Tok.isNot(tok::eof));
220}
221
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000222void PrintPreprocessedAction::ExecuteAction() {
223 CompilerInstance &CI = getCompilerInstance();
Douglas Gregor10efbaf2011-09-23 23:43:36 +0000224 // Output file may need to be set to 'Binary', to avoid converting Unix style
Steve Naroffd57d7c02010-01-05 17:33:23 +0000225 // line feeds (<LF>) to Microsoft style line feeds (<CR><LF>).
Douglas Gregor10efbaf2011-09-23 23:43:36 +0000226 //
227 // Look to see what type of line endings the file uses. If there's a
228 // CRLF, then we won't open the file up in binary mode. If there is
229 // just an LF or CR, then we will open the file up in binary mode.
230 // In this fashion, the output format should match the input format, unless
231 // the input format has inconsistent line endings.
232 //
233 // This should be a relatively fast operation since most files won't have
234 // all of their source code on a single line. However, that is still a
235 // concern, so if we scan for too long, we'll just assume the file should
236 // be opened in binary mode.
237 bool BinaryMode = true;
238 bool InvalidFile = false;
239 const SourceManager& SM = CI.getSourceManager();
240 const llvm::MemoryBuffer *Buffer = SM.getBuffer(SM.getMainFileID(),
241 &InvalidFile);
242 if (!InvalidFile) {
243 const char *cur = Buffer->getBufferStart();
244 const char *end = Buffer->getBufferEnd();
245 const char *next = (cur != end) ? cur + 1 : end;
246
247 // Limit ourselves to only scanning 256 characters into the source
248 // file. This is mostly a sanity check in case the file has no
249 // newlines whatsoever.
250 if (end - cur > 256) end = cur + 256;
251
252 while (next < end) {
253 if (*cur == 0x0D) { // CR
254 if (*next == 0x0A) // CRLF
255 BinaryMode = false;
256
257 break;
258 } else if (*cur == 0x0A) // LF
259 break;
260
261 ++cur, ++next;
262 }
263 }
264
265 raw_ostream *OS = CI.createDefaultOutputFile(BinaryMode, getCurrentFile());
Daniel Dunbar36043592009-12-03 09:13:30 +0000266 if (!OS) return;
267
Daniel Dunbar5f3b9972009-11-14 10:42:57 +0000268 DoPrintPreprocessedInput(CI.getPreprocessor(), OS,
269 CI.getPreprocessorOutputOpts());
270}
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000271
272void PrintPreambleAction::ExecuteAction() {
273 switch (getCurrentFileKind()) {
274 case IK_C:
275 case IK_CXX:
276 case IK_ObjC:
277 case IK_ObjCXX:
278 case IK_OpenCL:
Peter Collingbourne895fcca2010-12-01 03:15:20 +0000279 case IK_CUDA:
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000280 break;
281
282 case IK_None:
283 case IK_Asm:
284 case IK_PreprocessedC:
285 case IK_PreprocessedCXX:
286 case IK_PreprocessedObjC:
287 case IK_PreprocessedObjCXX:
288 case IK_AST:
289 case IK_LLVM_IR:
290 // We can't do anything with these.
291 return;
292 }
293
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000294 CompilerInstance &CI = getCompilerInstance();
295 llvm::MemoryBuffer *Buffer
Chris Lattner39b49bc2010-11-23 08:35:12 +0000296 = CI.getFileManager().getBufferForFile(getCurrentFile());
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000297 if (Buffer) {
Argyrios Kyrtzidis03c107a2011-08-25 20:39:19 +0000298 unsigned Preamble = Lexer::ComputePreamble(Buffer, CI.getLangOpts()).first;
Douglas Gregorf033f1d2010-07-20 20:18:03 +0000299 llvm::outs().write(Buffer->getBufferStart(), Preamble);
300 delete Buffer;
301 }
302}