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

Side by Side Diff: src/ia32/lithium-ia32.cc

Issue 6482021: Merge revision 6714 to the 3.0 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.0/build/ia32
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/version.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 UseFixed(instr->value(), InstanceofStub::left()), 1116 UseFixed(instr->value(), InstanceofStub::left()),
1117 FixedTemp(edi)); 1117 FixedTemp(edi));
1118 MarkAsSaveDoubles(result); 1118 MarkAsSaveDoubles(result);
1119 return AssignEnvironment(AssignPointerMap(DefineFixed(result, eax))); 1119 return AssignEnvironment(AssignPointerMap(DefineFixed(result, eax)));
1120 } 1120 }
1121 1121
1122 1122
1123 LInstruction* LChunkBuilder::DoApplyArguments(HApplyArguments* instr) { 1123 LInstruction* LChunkBuilder::DoApplyArguments(HApplyArguments* instr) {
1124 LOperand* function = UseFixed(instr->function(), edi); 1124 LOperand* function = UseFixed(instr->function(), edi);
1125 LOperand* receiver = UseFixed(instr->receiver(), eax); 1125 LOperand* receiver = UseFixed(instr->receiver(), eax);
1126 LOperand* length = UseRegisterAtStart(instr->length()); 1126 LOperand* length = UseFixed(instr->length(), ebx);
1127 LOperand* elements = UseRegisterAtStart(instr->elements()); 1127 LOperand* elements = UseFixed(instr->elements(), ecx);
1128 LOperand* temp = FixedTemp(ebx); 1128 LOperand* temp = FixedTemp(edx);
1129 LApplyArguments* result = new LApplyArguments(function, 1129 LApplyArguments* result = new LApplyArguments(function,
1130 receiver, 1130 receiver,
1131 length, 1131 length,
1132 elements, 1132 elements,
1133 temp); 1133 temp);
1134 return MarkAsCall(DefineFixed(result, eax), instr, CAN_DEOPTIMIZE_EAGERLY); 1134 return MarkAsCall(DefineFixed(result, eax), instr, CAN_DEOPTIMIZE_EAGERLY);
1135 } 1135 }
1136 1136
1137 1137
1138 LInstruction* LChunkBuilder::DoPushArgument(HPushArgument* instr) { 1138 LInstruction* LChunkBuilder::DoPushArgument(HPushArgument* instr) {
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
1919 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { 1919 LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) {
1920 HEnvironment* outer = current_block_->last_environment()->outer(); 1920 HEnvironment* outer = current_block_->last_environment()->outer();
1921 current_block_->UpdateEnvironment(outer); 1921 current_block_->UpdateEnvironment(outer);
1922 return NULL; 1922 return NULL;
1923 } 1923 }
1924 1924
1925 1925
1926 } } // namespace v8::internal 1926 } } // namespace v8::internal
1927 1927
1928 #endif // V8_TARGET_ARCH_IA32 1928 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698