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

Unified Diff: src/x64/assembler-x64.h

Issue 2301833004: [wasm] Trap handling: ProtectedLoad instruction (Closed)
Patch Set: Removing unrelated changes Created 4 years, 3 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/x64/assembler-x64.h
diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h
index b2154fbaf4a61a7198481747f82b6f1a50ceae84..76fe88573e9c6a180c57182f08162bd7f093e52a 100644
--- a/src/x64/assembler-x64.h
+++ b/src/x64/assembler-x64.h
@@ -1852,6 +1852,8 @@ class Assembler : public AssemblerBase {
byte byte_at(int pos) { return buffer_[pos]; }
void set_byte_at(int pos, byte value) { buffer_[pos] = value; }
+ Address GetPC() const { return pc_; }
Mircea Trofin 2016/09/02 04:05:45 for simple accessors, the naming pattern is just t
Eric Holk 2016/09/02 20:05:32 Done.
+
protected:
// Call near indirect
void call(const Operand& operand);
« src/flag-definitions.h ('K') | « src/flag-definitions.h ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698