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

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

Issue 71783003: Reland and fix "Add support for keyed-call on arrays of fast elements" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Test + fix Created 7 years, 1 month 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/ia32/lithium-codegen-ia32.cc ('k') | src/ic.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after
1403 LOperand* context = UseFixed(instr->context(), esi); 1403 LOperand* context = UseFixed(instr->context(), esi);
1404 LOperand* constructor = UseFixed(instr->constructor(), edi); 1404 LOperand* constructor = UseFixed(instr->constructor(), edi);
1405 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor); 1405 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor);
1406 return MarkAsCall(DefineFixed(result, eax), instr); 1406 return MarkAsCall(DefineFixed(result, eax), instr);
1407 } 1407 }
1408 1408
1409 1409
1410 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { 1410 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) {
1411 LOperand* context = UseFixed(instr->context(), esi); 1411 LOperand* context = UseFixed(instr->context(), esi);
1412 LOperand* function = UseFixed(instr->function(), edi); 1412 LOperand* function = UseFixed(instr->function(), edi);
1413 LCallFunction* result = new(zone()) LCallFunction(context, function); 1413 LCallFunction* call = new(zone()) LCallFunction(context, function);
1414 return MarkAsCall(DefineFixed(result, eax), instr); 1414 LInstruction* result = DefineFixed(call, eax);
1415 if (instr->IsTailCall()) return result;
1416 return MarkAsCall(result, instr);
1415 } 1417 }
1416 1418
1417 1419
1418 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { 1420 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) {
1419 LOperand* context = UseFixed(instr->context(), esi); 1421 LOperand* context = UseFixed(instr->context(), esi);
1420 return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), eax), instr); 1422 return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), eax), instr);
1421 } 1423 }
1422 1424
1423 1425
1424 LInstruction* LChunkBuilder::DoRor(HRor* instr) { 1426 LInstruction* LChunkBuilder::DoRor(HRor* instr) {
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after
2763 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2765 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2764 LOperand* object = UseRegister(instr->object()); 2766 LOperand* object = UseRegister(instr->object());
2765 LOperand* index = UseTempRegister(instr->index()); 2767 LOperand* index = UseTempRegister(instr->index());
2766 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); 2768 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index));
2767 } 2769 }
2768 2770
2769 2771
2770 } } // namespace v8::internal 2772 } } // namespace v8::internal
2771 2773
2772 #endif // V8_TARGET_ARCH_IA32 2774 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/ic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698