2006-07-05 03:04:05 +08:00
|
|
|
//===--- clang.h - C-Language Front-end -----------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This is the header file that pulls together the top-level driver.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CLANG_CLANG_H
|
|
|
|
#define LLVM_CLANG_CLANG_H
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace clang {
|
2006-07-29 14:30:25 +08:00
|
|
|
class Preprocessor;
|
|
|
|
class LangOptions;
|
2006-11-06 02:39:59 +08:00
|
|
|
class MinimalAction;
|
2006-10-14 15:39:34 +08:00
|
|
|
class TargetInfo;
|
|
|
|
class Diagnostic;
|
2006-07-05 03:04:05 +08:00
|
|
|
|
|
|
|
/// DoPrintPreprocessedInput - Implement -E mode.
|
2006-07-29 14:35:08 +08:00
|
|
|
void DoPrintPreprocessedInput(unsigned MainFileID, Preprocessor &PP,
|
|
|
|
LangOptions &Options);
|
2006-07-05 03:04:05 +08:00
|
|
|
|
2006-08-17 13:51:27 +08:00
|
|
|
/// CreatePrintParserActionsAction - Return the actions implementation that
|
|
|
|
/// implements the -parse-print-callbacks option.
|
2006-11-06 02:39:59 +08:00
|
|
|
MinimalAction *CreatePrintParserActionsAction();
|
2006-08-17 13:51:27 +08:00
|
|
|
|
2006-10-14 15:39:34 +08:00
|
|
|
/// CreateTargetInfo - Return the set of target info objects as specified by
|
|
|
|
/// the -arch command line option.
|
|
|
|
TargetInfo *CreateTargetInfo(Diagnostic &Diags);
|
|
|
|
|
2006-07-05 03:04:05 +08:00
|
|
|
} // end namespace clang
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|