| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 __ push(esi); | 63 __ push(esi); |
| 64 __ push(edi); | 64 __ push(edi); |
| 65 | 65 |
| 66 if (!source_reg.is(esp)) { | 66 if (!source_reg.is(esp)) { |
| 67 __ lea(source_reg, MemOperand(esp, 6 * kPointerSize - offset)); | 67 __ lea(source_reg, MemOperand(esp, 6 * kPointerSize - offset)); |
| 68 } | 68 } |
| 69 | 69 |
| 70 int param_offset = 7 * kPointerSize; | 70 int param_offset = 7 * kPointerSize; |
| 71 // Save registers make sure they don't get clobbered. | 71 // Save registers make sure they don't get clobbered. |
| 72 int reg_num = 0; | 72 int reg_num = 0; |
| 73 for (; reg_num < Register::kNumRegisters; ++reg_num) { | 73 for (;reg_num < Register::NumAllocatableRegisters(); ++reg_num) { |
| 74 Register reg = Register::from_code(reg_num); | 74 Register reg = Register::FromAllocationIndex(reg_num); |
| 75 if (reg.IsAllocatable()) { | 75 if (!reg.is(esp) && !reg.is(ebp) && !reg.is(destination_reg)) { |
| 76 if (!reg.is(esp) && !reg.is(ebp) && !reg.is(destination_reg)) { | 76 __ push(reg); |
| 77 __ push(reg); | 77 param_offset += kPointerSize; |
| 78 param_offset += kPointerSize; | |
| 79 } | |
| 80 } | 78 } |
| 81 } | 79 } |
| 82 | 80 |
| 83 // Re-push the double argument | 81 // Re-push the double argument |
| 84 __ push(MemOperand(esp, param_offset)); | 82 __ push(MemOperand(esp, param_offset)); |
| 85 __ push(MemOperand(esp, param_offset)); | 83 __ push(MemOperand(esp, param_offset)); |
| 86 | 84 |
| 87 // Call through to the actual stub | 85 // Call through to the actual stub |
| 88 __ call(start, RelocInfo::EXTERNAL_REFERENCE); | 86 __ call(start, RelocInfo::EXTERNAL_REFERENCE); |
| 89 | 87 |
| 90 __ add(esp, Immediate(kDoubleSize)); | 88 __ add(esp, Immediate(kDoubleSize)); |
| 91 | 89 |
| 92 // Make sure no registers have been unexpectedly clobbered | 90 // Make sure no registers have been unexpectedly clobbered |
| 93 for (--reg_num; reg_num >= 0; --reg_num) { | 91 for (--reg_num; reg_num >= 0; --reg_num) { |
| 94 Register reg = Register::from_code(reg_num); | 92 Register reg = Register::FromAllocationIndex(reg_num); |
| 95 if (reg.IsAllocatable()) { | 93 if (!reg.is(esp) && !reg.is(ebp) && !reg.is(destination_reg)) { |
| 96 if (!reg.is(esp) && !reg.is(ebp) && !reg.is(destination_reg)) { | 94 __ cmp(reg, MemOperand(esp, 0)); |
| 97 __ cmp(reg, MemOperand(esp, 0)); | 95 __ Assert(equal, kRegisterWasClobbered); |
| 98 __ Assert(equal, kRegisterWasClobbered); | 96 __ add(esp, Immediate(kPointerSize)); |
| 99 __ add(esp, Immediate(kPointerSize)); | |
| 100 } | |
| 101 } | 97 } |
| 102 } | 98 } |
| 103 | 99 |
| 104 __ mov(eax, destination_reg); | 100 __ mov(eax, destination_reg); |
| 105 | 101 |
| 106 __ pop(edi); | 102 __ pop(edi); |
| 107 __ pop(esi); | 103 __ pop(esi); |
| 108 __ pop(edx); | 104 __ pop(edx); |
| 109 __ pop(ecx); | 105 __ pop(ecx); |
| 110 __ pop(ebx); | 106 __ pop(ebx); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 139 |
| 144 for (size_t s = 0; s < sizeof(source_registers) / sizeof(Register); s++) { | 140 for (size_t s = 0; s < sizeof(source_registers) / sizeof(Register); s++) { |
| 145 for (size_t d = 0; d < sizeof(dest_registers) / sizeof(Register); d++) { | 141 for (size_t d = 0; d < sizeof(dest_registers) / sizeof(Register); d++) { |
| 146 RunAllTruncationTests( | 142 RunAllTruncationTests( |
| 147 MakeConvertDToIFuncTrampoline(isolate, | 143 MakeConvertDToIFuncTrampoline(isolate, |
| 148 source_registers[s], | 144 source_registers[s], |
| 149 dest_registers[d])); | 145 dest_registers[d])); |
| 150 } | 146 } |
| 151 } | 147 } |
| 152 } | 148 } |
| OLD | NEW |