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

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

Issue 12385014: Hydrogen stubs for array constructors (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE Created 7 years, 8 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
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 2328 matching lines...) Expand 10 before | Expand all | Expand 10 after
2339 2339
2340 LInstruction* LChunkBuilder::DoParameter(HParameter* instr) { 2340 LInstruction* LChunkBuilder::DoParameter(HParameter* instr) {
2341 LParameter* result = new(zone()) LParameter; 2341 LParameter* result = new(zone()) LParameter;
2342 if (instr->kind() == HParameter::STACK_PARAMETER) { 2342 if (instr->kind() == HParameter::STACK_PARAMETER) {
2343 int spill_index = chunk()->GetParameterStackSlot(instr->index()); 2343 int spill_index = chunk()->GetParameterStackSlot(instr->index());
2344 return DefineAsSpilled(result, spill_index); 2344 return DefineAsSpilled(result, spill_index);
2345 } else { 2345 } else {
2346 ASSERT(info()->IsStub()); 2346 ASSERT(info()->IsStub());
2347 CodeStubInterfaceDescriptor* descriptor = 2347 CodeStubInterfaceDescriptor* descriptor =
2348 info()->code_stub()->GetInterfaceDescriptor(info()->isolate()); 2348 info()->code_stub()->GetInterfaceDescriptor(info()->isolate());
2349 Register reg = descriptor->register_params_[instr->index()]; 2349 int index = static_cast<int>(instr->index());
2350 Register reg = DESCRIPTOR_GET_PARAMETER_REGISTER(descriptor, index);
2350 return DefineFixed(result, reg); 2351 return DefineFixed(result, reg);
2351 } 2352 }
2352 } 2353 }
2353 2354
2354 2355
2355 LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) { 2356 LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) {
2356 int spill_index = chunk()->GetNextSpillIndex(false); // Not double-width. 2357 int spill_index = chunk()->GetNextSpillIndex(false); // Not double-width.
2357 if (spill_index > LUnallocated::kMaxFixedIndex) { 2358 if (spill_index > LUnallocated::kMaxFixedIndex) {
2358 Abort("Too many spill slots needed for OSR"); 2359 Abort("Too many spill slots needed for OSR");
2359 spill_index = 0; 2360 spill_index = 0;
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
2524 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2525 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2525 LOperand* object = UseRegister(instr->object()); 2526 LOperand* object = UseRegister(instr->object());
2526 LOperand* index = UseTempRegister(instr->index()); 2527 LOperand* index = UseTempRegister(instr->index());
2527 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); 2528 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index));
2528 } 2529 }
2529 2530
2530 2531
2531 } } // namespace v8::internal 2532 } } // namespace v8::internal
2532 2533
2533 #endif // V8_TARGET_ARCH_X64 2534 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698