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

Unified Diff: src/IceAssembler.h

Issue 1419903002: Subzero: Refactor x86 register definitions to use the alias mechanism. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix assembler unit tests. Fix register names. Code review changes. Rebase Created 5 years, 2 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 | « no previous file | src/IceAssembler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAssembler.h
diff --git a/src/IceAssembler.h b/src/IceAssembler.h
index d05660f58bb44b24e85bd03414f0a58729d1a6e6..599a0a0d4bb1db807de022a30e0d7571052891b9 100644
--- a/src/IceAssembler.h
+++ b/src/IceAssembler.h
@@ -310,7 +310,7 @@ public:
bool needsTextFixup() const { return Buffer.needsTextFixup(); }
- void emitIASBytes() const;
+ void emitIASBytes(GlobalContext *Ctx) const;
bool getInternal() const { return IsInternal; }
void setInternal(bool Internal) { IsInternal = Internal; }
const IceString &getFunctionName() { return FunctionName; }
@@ -324,8 +324,8 @@ public:
AssemblerKind getKind() const { return Kind; }
protected:
- explicit Assembler(AssemblerKind Kind, GlobalContext *Ctx)
- : Kind(Kind), Allocator(), Ctx(Ctx), Buffer(*this) {}
+ explicit Assembler(AssemblerKind Kind)
+ : Kind(Kind), Allocator(), Buffer(*this) {}
private:
const AssemblerKind Kind;
@@ -346,7 +346,6 @@ private:
void installFixup(AssemblerFixup *F) { Buffer.installFixup(F); }
protected:
- GlobalContext *Ctx;
// Buffer's constructor uses the Allocator, so it needs to appear after it.
// TODO(jpp): dependencies on construction order are a nice way of shooting
// yourself in the foot. Fix this.
« no previous file with comments | « no previous file | src/IceAssembler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698