summaryrefslogtreecommitdiff
path: root/include/llvm/CompilerDriver/AutoGenerated.h
blob: 7b926c622c90e0b0efb1f1579b2a84725a38eb12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//===--- AutoGenerated.h - The LLVM Compiler Driver -------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open
// Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//  Interface to the autogenerated driver code.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_INCLUDE_COMPILER_DRIVER_AUTOGENERATED_H
#define LLVM_INCLUDE_COMPILER_DRIVER_AUTOGENERATED_H

namespace llvmc {
  class LanguageMap;
  class CompilationGraph;

  namespace autogenerated {

    int PreprocessOptions();
    int PopulateLanguageMap(LanguageMap& langMap);
    int PopulateCompilationGraph(CompilationGraph& graph);

    inline int RunInitialization (LanguageMap& M, CompilationGraph& G) {
      if (int ret = PreprocessOptions())
        return ret;
      if (int ret = PopulateLanguageMap(M))
        return ret;
      if (int ret = PopulateCompilationGraph(G))
        return ret;

      return 0;
    }
  }
}

#endif // LLVM_INCLUDE_COMPILER_DRIVER_AUTOGENERATED_H