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

Unified Diff: runtime/vm/assembler_x64.h

Issue 11412106: Support VTune's JIT interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 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
« no previous file with comments | « runtime/vm/assembler_ia32.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_x64.h
diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
index ab97b2a9b1bd6968bf2260b595eea88d3a13fadc..fb73aac0f5de2dfaf94dfd9ddebf5caf8a8034fc 100644
--- a/runtime/vm/assembler_x64.h
+++ b/runtime/vm/assembler_x64.h
@@ -291,7 +291,7 @@ class CPUFeatures : public AllStatic {
class Assembler : public ValueObject {
public:
- Assembler() : buffer_(), prolog_offset_(-1), comments_() { }
+ Assembler() : buffer_(), prologue_offset_(-1), comments_() { }
~Assembler() { }
static const bool kNearJump = true;
@@ -625,7 +625,7 @@ class Assembler : public ValueObject {
const Code::Comments& GetCodeComments() const;
int CodeSize() const { return buffer_.Size(); }
- int prolog_offset() const { return prolog_offset_; }
+ int prologue_offset() const { return prologue_offset_; }
const ZoneGrowableArray<int>& GetPointerOffsets() const {
return buffer_.pointer_offsets();
}
@@ -648,7 +648,7 @@ class Assembler : public ValueObject {
private:
AssemblerBuffer buffer_;
- int prolog_offset_;
+ int prologue_offset_;
class CodeComment : public ZoneAllocated {
public:
« no previous file with comments | « runtime/vm/assembler_ia32.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698