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

Unified Diff: src/assembler.h

Issue 700263003: Rearrange emit vs emitIAS. Wait till function is done before dumping text. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 1 month 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/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index dcb83ed68b39b69485f63e2b27c6e17029875739..8d63d989e4694a21220ac3519c41755d9a389356 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -206,7 +206,7 @@ class Assembler {
Assembler &operator=(const Assembler &) = delete;
public:
- Assembler() {}
+ Assembler() : buffer_(*this) {}
virtual ~Assembler() {}
// Allocate a chunk of bytes using the per-Assembler allocator.
@@ -226,8 +226,13 @@ public:
virtual void BindCfgNodeLabel(SizeT NodeNumber) = 0;
+ void emitIASBytes(GlobalContext *Ctx) const;
+
private:
llvm::BumpPtrAllocator Allocator;
+
+protected:
+ AssemblerBuffer buffer_;
};
} // end of namespace Ice

Powered by Google App Engine
This is Rietveld 408576698