Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: src/IceTranslator.h

Issue 892063002: Subzero: Manage each Cfg as a std::unique_ptr<Cfg>. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Commit fix + rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceTranslator.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/IceGlobalContext.cpp ('k') | src/IceTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698