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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 19464002: Replaces Location::ToStackSlotAddress() with Location::ToStackSlotOffset() (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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: runtime/vm/flow_graph_compiler.h
===================================================================
--- runtime/vm/flow_graph_compiler.h (revision 25107)
+++ runtime/vm/flow_graph_compiler.h (working copy)
@@ -95,6 +95,8 @@
void StoreObject(const Address& dst, const Object& obj);
void Exchange(Register reg, const Address& mem);
void Exchange(const Address& mem1, const Address& mem2);
+ void Exchange(Register reg, intptr_t stack_offset);
+ void Exchange(intptr_t stack_offset1, intptr_t stack_offset2);
FlowGraphCompiler* compiler_;
@@ -467,7 +469,7 @@
void EmitFrameEntry();
- void EmitTrySyncMove(Address dest, Location loc, bool* push_emitted);
+ void EmitTrySyncMove(intptr_t dest_offset, Location loc, bool* push_emitted);
void AddStaticCallTarget(const Function& function);

Powered by Google App Engine
This is Rietveld 408576698