OLD | NEW |
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 2366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2377 | 2377 |
2378 LInstruction* LChunkBuilder::DoParameter(HParameter* instr) { | 2378 LInstruction* LChunkBuilder::DoParameter(HParameter* instr) { |
2379 LParameter* result = new(zone()) LParameter; | 2379 LParameter* result = new(zone()) LParameter; |
2380 if (instr->kind() == HParameter::STACK_PARAMETER) { | 2380 if (instr->kind() == HParameter::STACK_PARAMETER) { |
2381 int spill_index = chunk()->GetParameterStackSlot(instr->index()); | 2381 int spill_index = chunk()->GetParameterStackSlot(instr->index()); |
2382 return DefineAsSpilled(result, spill_index); | 2382 return DefineAsSpilled(result, spill_index); |
2383 } else { | 2383 } else { |
2384 ASSERT(info()->IsStub()); | 2384 ASSERT(info()->IsStub()); |
2385 CodeStubInterfaceDescriptor* descriptor = | 2385 CodeStubInterfaceDescriptor* descriptor = |
2386 info()->code_stub()->GetInterfaceDescriptor(info()->isolate()); | 2386 info()->code_stub()->GetInterfaceDescriptor(info()->isolate()); |
2387 Register reg = descriptor->register_params_[instr->index()]; | 2387 int index = static_cast<int>(instr->index()); |
| 2388 Register reg = DESCRIPTOR_GET_PARAMETER_REGISTER(descriptor, index); |
2388 return DefineFixed(result, reg); | 2389 return DefineFixed(result, reg); |
2389 } | 2390 } |
2390 } | 2391 } |
2391 | 2392 |
2392 | 2393 |
2393 LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) { | 2394 LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) { |
2394 int spill_index = chunk()->GetNextSpillIndex(false); // Not double-width. | 2395 int spill_index = chunk()->GetNextSpillIndex(false); // Not double-width. |
2395 if (spill_index > LUnallocated::kMaxFixedIndex) { | 2396 if (spill_index > LUnallocated::kMaxFixedIndex) { |
2396 Abort("Too many spill slots needed for OSR"); | 2397 Abort("Too many spill slots needed for OSR"); |
2397 spill_index = 0; | 2398 spill_index = 0; |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2570 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2571 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2571 LOperand* object = UseRegister(instr->object()); | 2572 LOperand* object = UseRegister(instr->object()); |
2572 LOperand* index = UseTempRegister(instr->index()); | 2573 LOperand* index = UseTempRegister(instr->index()); |
2573 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2574 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2574 } | 2575 } |
2575 | 2576 |
2576 | 2577 |
2577 } } // namespace v8::internal | 2578 } } // namespace v8::internal |
2578 | 2579 |
2579 #endif // V8_TARGET_ARCH_X64 | 2580 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |