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

Unified Diff: src/IceTranslator.h

Issue 395193005: Start processing function blocks in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in patch set 13. Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceInst.cpp ('k') | src/IceTypeConverter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTranslator.h
diff --git a/src/IceTranslator.h b/src/IceTranslator.h
index 51e4df0fbb01782e718afdff3ca1a282846be0c0..ec5c0328a30c56d6a93759771730092654977b89 100644
--- a/src/IceTranslator.h
+++ b/src/IceTranslator.h
@@ -29,13 +29,27 @@ class GlobalContext;
// machine instructions.
class Translator {
public:
- Translator(GlobalContext *Ctx) : Ctx(Ctx), ErrorStatus(0) {}
+ Translator(GlobalContext *Ctx, const ClFlags &Flags)
+ : Ctx(Ctx), Flags(Flags), ErrorStatus(0) {}
~Translator();
bool getErrorStatus() const { return ErrorStatus; }
+ GlobalContext *getContext() const { return Ctx; }
+
+ const ClFlags &getFlags() const { return Flags; }
+
+ /// Translates the constructed ICE function Fcn to machine code.
+ /// Takes ownership of Fcn. Note: As a side effect, Field Func is
+ /// set to Fcn.
+ void translateFcn(Cfg *Fcn);
+
+ /// Emits the constant pool.
+ void emitConstants();
+
protected:
GlobalContext *Ctx;
+ const ClFlags &Flags;
// The exit status of the translation. False is successful. True
// otherwise.
bool ErrorStatus;
@@ -49,13 +63,6 @@ protected:
// that.
llvm::OwningPtr<Cfg> Func;
- /// Translates the constructed ICE function Fcn to machine code.
- /// Note: As a side effect, Field Func is set to Fcn.
- void translateFcn(Cfg *Fcn);
-
- /// Emits the constant pool.
- void emitConstants();
-
private:
Translator(const Translator &) LLVM_DELETED_FUNCTION;
Translator &operator=(const Translator &) LLVM_DELETED_FUNCTION;
« no previous file with comments | « src/IceInst.cpp ('k') | src/IceTypeConverter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698