Commit a62c6788 authored by deanm@chromium.org's avatar deanm@chromium.org

Use 1 byte push REG instructions instead of the 2 byte ModRM version.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@690 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 44fe15db
......@@ -657,7 +657,7 @@ static void EnterArgumentsAdaptorFrame(MacroAssembler* masm) {
// arguments and the receiver.
ASSERT(kSmiTagSize == 1);
__ lea(ecx, Operand(eax, eax, times_1, kSmiTag));
__ push(Operand(ecx));
__ push(ecx);
}
......
......@@ -538,8 +538,8 @@ void CallIC::Generate(MacroAssembler* masm,
__ EnterInternalFrame();
// Push the receiver and the name of the function.
__ push(Operand(edx));
__ push(Operand(ebx));
__ push(edx);
__ push(ebx);
// Call the entry.
CEntryStub stub;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment