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

Unified Diff: vm/assembler_ia32.cc

Issue 10173008: Simplify representation of stack frames. Remove the special types DartFrame/StubFrame and instead u… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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 | « vm/assembler_ia32.h ('k') | vm/assembler_x64.h » ('j') | vm/code_generator.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/assembler_ia32.cc
===================================================================
--- vm/assembler_ia32.cc (revision 6912)
+++ vm/assembler_ia32.cc (working copy)
@@ -1409,16 +1409,11 @@
}
-void Assembler::CallRuntimeFromDart(const RuntimeEntry& entry) {
- entry.CallFromDart(this);
+void Assembler::CallRuntime(const RuntimeEntry& entry) {
+ entry.Call(this);
}
-void Assembler::CallRuntimeFromStub(const RuntimeEntry& entry) {
- entry.CallFromStub(this);
-}
-
-
void Assembler::Align(int alignment, int offset) {
ASSERT(Utils::IsPowerOfTwo(alignment));
int pos = offset + buffer_.GetPosition();
« no previous file with comments | « vm/assembler_ia32.h ('k') | vm/assembler_x64.h » ('j') | vm/code_generator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698