blob: 0093a7046acc1fcf1d984cd62adb6418bd450c72 [file] [log] [blame]
Chris Lattner97e8b6f2007-10-07 06:04:32 +00001//===--- ASTConsumers.h - ASTConsumer implementations -----------*- C++ -*-===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner97e8b6f2007-10-07 06:04:32 +000010// AST Consumers.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner97e8b6f2007-10-07 06:04:32 +000014#ifndef DRIVER_ASTCONSUMERS_H
15#define DRIVER_ASTCONSUMERS_H
Reid Spencer5f016e22007-07-11 17:01:13 +000016
Ted Kremeneka95d3752008-09-13 05:16:45 +000017#include "llvm/Support/raw_ostream.h"
Eli Friedman7df3d712008-02-16 23:17:23 +000018#include <string>
Ted Kremenekea75c552007-11-28 21:32:21 +000019#include <iosfwd>
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +000020
Chris Lattnere66b65c2008-02-06 01:42:25 +000021namespace llvm {
22 class Module;
23 namespace sys { class Path; }
24}
Reid Spencer5f016e22007-07-11 17:01:13 +000025namespace clang {
26
Chris Lattner556beb72007-09-15 22:56:56 +000027class ASTConsumer;
Chris Lattnerc0508f92007-09-15 23:21:08 +000028class Diagnostic;
Ted Kremenekdca24662007-12-05 00:26:13 +000029class FileManager;
Chris Lattner3245a0a2008-04-16 06:11:58 +000030class Preprocessor;
Ted Kremenek339b9c22008-04-17 22:31:54 +000031class PreprocessorFactory;
Daniel Dunbar70f92432008-10-23 05:50:47 +000032struct CompileOptions;
33struct LangOptions;
Ted Kremenek339b9c22008-04-17 22:31:54 +000034
Ted Kremeneka95d3752008-09-13 05:16:45 +000035ASTConsumer *CreateASTPrinter(llvm::raw_ostream* OS = NULL);
Ted Kremenekfdfc1982007-12-19 22:24:34 +000036
Chris Lattner3d4997d2007-09-15 23:02:28 +000037ASTConsumer *CreateASTDumper();
Ted Kremenekfdfc1982007-12-19 22:24:34 +000038
Ted Kremenek80de08f2007-09-19 21:29:43 +000039ASTConsumer *CreateASTViewer();
Ted Kremenekfdfc1982007-12-19 22:24:34 +000040
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +000041ASTConsumer *CreateDeclContextPrinter();
42
Fariborz Jahanianb4b2f0c2008-01-18 01:15:54 +000043ASTConsumer *CreateCodeRewriterTest(const std::string& InFile,
Chris Lattnerc68ab772008-03-22 00:08:40 +000044 const std::string& OutFile,
Steve Naroff4f943c22008-03-10 20:43:59 +000045 Diagnostic &Diags,
46 const LangOptions &LOpts);
Ted Kremenek815c78f2008-08-05 18:50:11 +000047
Daniel Dunbard69bacc2008-10-21 23:49:24 +000048enum BackendAction {
49 Backend_EmitAssembly,
50 Backend_EmitBC,
51 Backend_EmitLL
52};
53ASTConsumer *CreateBackendConsumer(BackendAction Action,
54 Diagnostic &Diags,
55 const LangOptions &Features,
Daniel Dunbar70f92432008-10-23 05:50:47 +000056 const CompileOptions &CompileOpts,
Daniel Dunbard69bacc2008-10-21 23:49:24 +000057 const std::string& InFile,
58 const std::string& OutFile,
59 bool GenerateDebugInfo);
Ted Kremenekfdfc1982007-12-19 22:24:34 +000060
Chris Lattner3245a0a2008-04-16 06:11:58 +000061ASTConsumer* CreateHTMLPrinter(const std::string &OutFile, Diagnostic &D,
Ted Kremenek339b9c22008-04-17 22:31:54 +000062 Preprocessor *PP, PreprocessorFactory* PPF);
Ted Kremenek6a340832008-03-18 21:19:49 +000063
Ted Kremenekfdfc1982007-12-19 22:24:34 +000064ASTConsumer *CreateSerializationTest(Diagnostic &Diags,
Ted Kremeneke7d07d12008-06-04 15:55:15 +000065 FileManager& FMgr);
Ted Kremeneka1fa3a12007-12-13 00:37:31 +000066
Ted Kremenekf06c9282007-12-19 23:49:37 +000067ASTConsumer *CreateASTSerializer(const std::string& InFile,
68 const std::string& EmitDir,
Ted Kremeneke7d07d12008-06-04 15:55:15 +000069 Diagnostic &Diags);
Ted Kremenek055c2752007-09-06 23:00:42 +000070
Steve Naroff1c9f81b2008-09-17 00:13:27 +000071ASTConsumer *CreateBlockRewriter(const std::string& InFile,
Steve Naroff13188952008-09-18 14:10:13 +000072 const std::string& OutFile,
Steve Naroff1c9f81b2008-09-17 00:13:27 +000073 Diagnostic &Diags,
74 const LangOptions &LangOpts);
Ted Kremenek7cae2f62008-10-23 23:36:29 +000075
76ASTConsumer *CreateInheritanceViewer(const std::string& clsname);
77
Reid Spencer5f016e22007-07-11 17:01:13 +000078} // end clang namespace
79
Ted Kremenekf4381fd2008-07-02 00:03:09 +000080#include "AnalysisConsumer.h"
81
Reid Spencer5f016e22007-07-11 17:01:13 +000082#endif