| 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 info()->code_stub()->GetInterfaceDescriptor(info()->isolate()); | 2377 info()->code_stub()->GetInterfaceDescriptor(info()->isolate()); |
| 2378 int index = static_cast<int>(instr->index()); | 2378 int index = static_cast<int>(instr->index()); |
| 2379 Register reg = DESCRIPTOR_GET_PARAMETER_REGISTER(descriptor, index); | 2379 Register reg = DESCRIPTOR_GET_PARAMETER_REGISTER(descriptor, index); |
| 2380 return DefineFixed(result, reg); | 2380 return DefineFixed(result, reg); |
| 2381 } | 2381 } |
| 2382 } | 2382 } |
| 2383 | 2383 |
| 2384 | 2384 |
| 2385 LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) { | 2385 LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) { |
| 2386 int spill_index = chunk()->GetNextSpillIndex(false); // Not double-width. | 2386 int spill_index = chunk()->GetNextSpillIndex(false); // Not double-width. |
| 2387 if (spill_index > LUnallocated::kMaxFixedIndex) { | 2387 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { |
| 2388 Abort("Too many spill slots needed for OSR"); | 2388 Abort("Too many spill slots needed for OSR"); |
| 2389 spill_index = 0; | 2389 spill_index = 0; |
| 2390 } | 2390 } |
| 2391 return DefineAsSpilled(new(zone()) LUnknownOSRValue, spill_index); | 2391 return DefineAsSpilled(new(zone()) LUnknownOSRValue, spill_index); |
| 2392 } | 2392 } |
| 2393 | 2393 |
| 2394 | 2394 |
| 2395 LInstruction* LChunkBuilder::DoCallStub(HCallStub* instr) { | 2395 LInstruction* LChunkBuilder::DoCallStub(HCallStub* instr) { |
| 2396 argument_count_ -= instr->argument_count(); | 2396 argument_count_ -= instr->argument_count(); |
| 2397 return MarkAsCall(DefineFixed(new(zone()) LCallStub, rax), instr); | 2397 return MarkAsCall(DefineFixed(new(zone()) LCallStub, rax), instr); |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2562 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2562 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2563 LOperand* object = UseRegister(instr->object()); | 2563 LOperand* object = UseRegister(instr->object()); |
| 2564 LOperand* index = UseTempRegister(instr->index()); | 2564 LOperand* index = UseTempRegister(instr->index()); |
| 2565 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2565 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2566 } | 2566 } |
| 2567 | 2567 |
| 2568 | 2568 |
| 2569 } } // namespace v8::internal | 2569 } } // namespace v8::internal |
| 2570 | 2570 |
| 2571 #endif // V8_TARGET_ARCH_X64 | 2571 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |