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

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: Code ready for review. Created 6 years, 5 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
Index: src/IceTranslator.h
diff --git a/src/IceTranslator.h b/src/IceTranslator.h
index 11899513e415337d0b1b01a53747dfa9668093e3..e3456beddc8f9dda11d9c485416116a75ec66555 100644
--- a/src/IceTranslator.h
+++ b/src/IceTranslator.h
@@ -35,6 +35,21 @@ public:
~Translator();
bool getErrorStatus() const { return ErrorStatus; }
+ GlobalContext *getContext() {
Jim Stichnoth 2014/07/17 23:00:33 Can getContext be const? (Also, I'm surprised cla
Karl 2014/07/18 20:27:42 Don't know why this wasn't converted. Ran clang-fo
+ return Ctx;
+ }
+
+ ClFlags &getFlags() {
+ return Flags;
+ }
+
+ /// 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();
+
protected:
GlobalContext *Ctx;
ClFlags &Flags;
@@ -51,13 +66,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;

Powered by Google App Engine
This is Rietveld 408576698