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

Side by Side Diff: src/x64/lithium-x64.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/x64/lithium-codegen-x64.cc ('k') | test/mjsunit/keyed-array-call.js » ('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 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 LOperand* context = UseFixed(instr->context(), rsi); 1316 LOperand* context = UseFixed(instr->context(), rsi);
1317 LOperand* constructor = UseFixed(instr->constructor(), rdi); 1317 LOperand* constructor = UseFixed(instr->constructor(), rdi);
1318 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor); 1318 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor);
1319 return MarkAsCall(DefineFixed(result, rax), instr); 1319 return MarkAsCall(DefineFixed(result, rax), instr);
1320 } 1320 }
1321 1321
1322 1322
1323 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { 1323 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) {
1324 LOperand* context = UseFixed(instr->context(), rsi); 1324 LOperand* context = UseFixed(instr->context(), rsi);
1325 LOperand* function = UseFixed(instr->function(), rdi); 1325 LOperand* function = UseFixed(instr->function(), rdi);
1326 LCallFunction* result = new(zone()) LCallFunction(context, function); 1326 LCallFunction* call = new(zone()) LCallFunction(context, function);
1327 return MarkAsCall(DefineFixed(result, rax), instr); 1327 LInstruction* result = DefineFixed(call, rax);
1328 if (instr->IsTailCall()) return result;
1329 return MarkAsCall(result, instr);
1328 } 1330 }
1329 1331
1330 1332
1331 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { 1333 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) {
1332 LOperand* context = UseFixed(instr->context(), rsi); 1334 LOperand* context = UseFixed(instr->context(), rsi);
1333 LCallRuntime* result = new(zone()) LCallRuntime(context); 1335 LCallRuntime* result = new(zone()) LCallRuntime(context);
1334 return MarkAsCall(DefineFixed(result, rax), instr); 1336 return MarkAsCall(DefineFixed(result, rax), instr);
1335 } 1337 }
1336 1338
1337 1339
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
2611 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2613 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2612 LOperand* object = UseRegister(instr->object()); 2614 LOperand* object = UseRegister(instr->object());
2613 LOperand* index = UseTempRegister(instr->index()); 2615 LOperand* index = UseTempRegister(instr->index());
2614 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); 2616 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index));
2615 } 2617 }
2616 2618
2617 2619
2618 } } // namespace v8::internal 2620 } } // namespace v8::internal
2619 2621
2620 #endif // V8_TARGET_ARCH_X64 2622 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | test/mjsunit/keyed-array-call.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698