OLD | NEW |
1 //===- subzero/src/IceTranslator.h - ICE to machine code --------*- C++ -*-===// | 1 //===- subzero/src/IceTranslator.h - ICE to machine code --------*- C++ -*-===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // This file declares the general driver class for translating ICE to | 10 // This file declares the general driver class for translating ICE to |
(...skipping 27 matching lines...) Expand all Loading... |
38 | 38 |
39 ~Translator(); | 39 ~Translator(); |
40 const ErrorCode &getErrorStatus() const { return ErrorStatus; } | 40 const ErrorCode &getErrorStatus() const { return ErrorStatus; } |
41 | 41 |
42 GlobalContext *getContext() const { return Ctx; } | 42 GlobalContext *getContext() const { return Ctx; } |
43 | 43 |
44 const ClFlags &getFlags() const { return Flags; } | 44 const ClFlags &getFlags() const { return Flags; } |
45 | 45 |
46 /// Translates the constructed ICE function Fcn to machine code. | 46 /// Translates the constructed ICE function Fcn to machine code. |
47 /// Takes ownership of Func. | 47 /// Takes ownership of Func. |
48 void translateFcn(Cfg *Func); | 48 void translateFcn(std::unique_ptr<Cfg> Func); |
49 | 49 |
50 /// Emits the constant pool. | 50 /// Emits the constant pool. |
51 void emitConstants(); | 51 void emitConstants(); |
52 | 52 |
53 /// If there was an error during bitcode reading/parsing, copy the | 53 /// If there was an error during bitcode reading/parsing, copy the |
54 /// error code into the GlobalContext. | 54 /// error code into the GlobalContext. |
55 void transferErrorCode() const; | 55 void transferErrorCode() const; |
56 | 56 |
57 /// Lowers the given list of global addresses to target. Generates | 57 /// Lowers the given list of global addresses to target. Generates |
58 /// list of corresponding variable declarations. | 58 /// list of corresponding variable declarations. |
(...skipping 12 matching lines...) Expand all Loading... |
71 GlobalContext *Ctx; | 71 GlobalContext *Ctx; |
72 const ClFlags &Flags; | 72 const ClFlags &Flags; |
73 std::unique_ptr<TargetDataLowering> DataLowering; | 73 std::unique_ptr<TargetDataLowering> DataLowering; |
74 // Exit status of the translation. False is successful. True otherwise. | 74 // Exit status of the translation. False is successful. True otherwise. |
75 ErrorCode ErrorStatus; | 75 ErrorCode ErrorStatus; |
76 }; | 76 }; |
77 | 77 |
78 } // end of namespace Ice | 78 } // end of namespace Ice |
79 | 79 |
80 #endif // SUBZERO_SRC_ICETRANSLATOR_H | 80 #endif // SUBZERO_SRC_ICETRANSLATOR_H |
OLD | NEW |