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

Unified Diff: runtime/vm/assembler_ia32.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_arm.h ('k') | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_ia32.h
diff --git a/runtime/vm/assembler_ia32.h b/runtime/vm/assembler_ia32.h
index a738df396b888195f45c7ae30cb2565d53e6a931..78afb8f010509a897e6351f7c47657e9e4b32cf1 100644
--- a/runtime/vm/assembler_ia32.h
+++ b/runtime/vm/assembler_ia32.h
@@ -275,7 +275,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;
@@ -603,7 +603,7 @@ class Assembler : public ValueObject {
void Bind(Label* label);
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();
}
@@ -628,7 +628,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_arm.h ('k') | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698