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

Unified Diff: runtime/vm/stack_frame.cc

Issue 12398029: Remove the barely used macro assemblers after merging their contents to the base (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stack_frame.cc
===================================================================
--- runtime/vm/stack_frame.cc (revision 19430)
+++ runtime/vm/stack_frame.cc (working copy)
@@ -4,7 +4,7 @@
#include "vm/stack_frame.h"
-#include "vm/assembler_macros.h"
+#include "vm/assembler.h"
#include "vm/deopt_instructions.h"
#include "vm/isolate.h"
#include "vm/object.h"
@@ -143,7 +143,7 @@
*(reinterpret_cast<uword*>(fp() + EntrypointMarkerOffsetFromFp()));
if (saved_pc != 0) {
uword entry_point =
- (saved_pc - AssemblerMacros::kOffsetOfSavedPCfromEntrypoint);
+ (saved_pc - Assembler::kOffsetOfSavedPCfromEntrypoint);
RawInstructions* instr = Instructions::FromEntryPoint(entry_point);
if (instr != Instructions::null()) {
return instr->ptr()->code_;
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698