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

Unified Diff: runtime/vm/stub_code_ia32.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/stub_code_arm.cc ('k') | runtime/vm/stub_code_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code_ia32.cc
===================================================================
--- runtime/vm/stub_code_ia32.cc (revision 19430)
+++ runtime/vm/stub_code_ia32.cc (working copy)
@@ -6,7 +6,6 @@
#if defined(TARGET_ARCH_IA32)
#include "vm/assembler.h"
-#include "vm/assembler_macros.h"
#include "vm/compiler.h"
#include "vm/dart_entry.h"
#include "vm/flow_graph_compiler.h"
@@ -188,7 +187,7 @@
void StubCode::GenerateCallStaticFunctionStub(Assembler* assembler) {
const Immediate& raw_null =
Immediate(reinterpret_cast<intptr_t>(Object::null()));
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EDX); // Preserve arguments descriptor array.
__ pushl(raw_null); // Setup space on stack for return value.
__ CallRuntime(kPatchStaticCallRuntimeEntry);
@@ -211,7 +210,7 @@
Immediate(reinterpret_cast<intptr_t>(Object::null()));
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EDX); // Preserve arguments descriptor array.
__ pushl(raw_null); // Setup space on stack for return value.
__ CallRuntime(kFixCallersTargetRuntimeEntry);
@@ -262,7 +261,7 @@
// when trying to resolve the call.
// Uses EDI.
void StubCode::GenerateInstanceFunctionLookupStub(Assembler* assembler) {
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
const Immediate& raw_null =
Immediate(reinterpret_cast<intptr_t>(Object::null()));
@@ -392,7 +391,7 @@
// Frame is fully rewritten at this point and it is safe to perform a GC.
// Materialize any objects that were deferred by FillFrame because they
// require allocation.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
if (preserve_eax) {
__ pushl(EBX); // Preserve result, it will be GC-d here.
}
@@ -423,7 +422,7 @@
void StubCode::GenerateMegamorphicMissStub(Assembler* assembler) {
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
// Load the receiver into EAX. The argument count in the arguments
// descriptor in EDX is a smi.
__ movl(EAX, FieldAddress(EDX, ArgumentsDescriptor::count_offset()));
@@ -587,7 +586,7 @@
__ Bind(&slow_case);
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(raw_null); // Setup space on stack for return value.
__ pushl(EDX); // Array length as Smi.
__ pushl(ECX); // Element type.
@@ -644,7 +643,7 @@
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EDX); // Preserve arguments descriptor array.
__ pushl(ECX); // Preserve read-only function object argument.
@@ -676,7 +675,7 @@
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(raw_null); // Setup space on stack for result from error reporting.
__ pushl(EDX); // Arguments descriptor.
@@ -938,7 +937,7 @@
}
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(raw_null); // Setup space on stack for return value.
__ SmiTag(EDX);
__ pushl(EDX);
@@ -1162,7 +1161,7 @@
}
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(raw_null); // Setup space on stack for return value.
__ PushObject(cls); // Push class of object to be allocated.
if (is_cls_parameterized) {
@@ -1302,7 +1301,7 @@
}
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(raw_null); // Setup space on stack for return value.
__ PushObject(func);
if (is_implicit_static_closure) {
@@ -1356,7 +1355,7 @@
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(raw_null); // Setup space on stack for result from noSuchMethod.
__ pushl(EAX); // Receiver.
@@ -1400,7 +1399,7 @@
Register ic_reg = ECX;
Register func_reg = EDI;
if (FLAG_trace_optimized_ic_calls) {
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(func_reg); // Preserve
__ pushl(argdesc_reg); // Preserve.
__ pushl(ic_reg); // Preserve.
@@ -1541,7 +1540,7 @@
__ leal(EAX, Address(ESP, EAX, TIMES_2, 0)); // EAX is Smi.
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EDX); // Preserve arguments descriptor array.
__ pushl(ECX); // Preserve IC data object.
__ pushl(raw_null); // Setup space on stack for result (target code object).
@@ -1693,7 +1692,7 @@
void StubCode::GenerateBreakpointStaticStub(Assembler* assembler) {
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EDX); // Preserve arguments descriptor.
const Immediate& raw_null =
Immediate(reinterpret_cast<intptr_t>(Object::null()));
@@ -1715,7 +1714,7 @@
void StubCode::GenerateBreakpointReturnStub(Assembler* assembler) {
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EAX);
__ CallRuntime(kBreakpointReturnHandlerRuntimeEntry);
__ popl(EAX);
@@ -1736,7 +1735,7 @@
void StubCode::GenerateBreakpointDynamicStub(Assembler* assembler) {
// Create a stub frame as we are pushing some objects on the stack before
// calling into the runtime.
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(ECX);
__ pushl(EDX);
__ CallRuntime(kBreakpointDynamicHandlerRuntimeEntry);
@@ -2005,7 +2004,7 @@
// ECX: ICData
__ movl(EAX, Address(ESP, 1 * kWordSize));
__ movl(EDI, Address(ESP, 2 * kWordSize));
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EDI); // arg 0
__ pushl(EAX); // arg 1
__ PushObject(Symbols::EqualOperator()); // Target's name.
@@ -2024,7 +2023,7 @@
void StubCode::GenerateOptimizeFunctionStub(Assembler* assembler) {
const Immediate& raw_null =
Immediate(reinterpret_cast<intptr_t>(Object::null()));
- AssemblerMacros::EnterStubFrame(assembler);
+ __ EnterStubFrame();
__ pushl(EDX);
__ pushl(raw_null); // Setup space on stack for return value.
__ pushl(EDI);
« no previous file with comments | « runtime/vm/stub_code_arm.cc ('k') | runtime/vm/stub_code_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698