| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Rrdistribution and use in source and binary forms, with or without | 2 // Rrdistribution 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 // * Rrdistributions of source code must retain the above copyright | 6 // * Rrdistributions 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 // * Rrdistributions in binary form must reproduce the above | 8 // * Rrdistributions 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 11 matching lines...) Expand all Loading... |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include <stdlib.h> | 28 #include <stdlib.h> |
| 29 | 29 |
| 30 #include "src/v8.h" | 30 #include "src/v8.h" |
| 31 | 31 |
| 32 #include "src/base/platform/platform.h" |
| 32 #include "src/code-stubs.h" | 33 #include "src/code-stubs.h" |
| 33 #include "src/factory.h" | 34 #include "src/factory.h" |
| 34 #include "src/macro-assembler.h" | 35 #include "src/macro-assembler.h" |
| 35 #include "src/mips/constants-mips.h" | 36 #include "src/mips/constants-mips.h" |
| 36 #include "src/platform.h" | |
| 37 #include "src/simulator.h" | 37 #include "src/simulator.h" |
| 38 #include "test/cctest/cctest.h" | 38 #include "test/cctest/cctest.h" |
| 39 #include "test/cctest/test-code-stubs.h" | 39 #include "test/cctest/test-code-stubs.h" |
| 40 | 40 |
| 41 using namespace v8::internal; | 41 using namespace v8::internal; |
| 42 | 42 |
| 43 #define __ masm. | 43 #define __ masm. |
| 44 | 44 |
| 45 ConvertDToIFunc MakeConvertDToIFuncTrampoline(Isolate* isolate, | 45 ConvertDToIFunc MakeConvertDToIFuncTrampoline(Isolate* isolate, |
| 46 Register source_reg, | 46 Register source_reg, |
| 47 Register destination_reg, | 47 Register destination_reg, |
| 48 bool inline_fastpath) { | 48 bool inline_fastpath) { |
| 49 // Allocate an executable page of memory. | 49 // Allocate an executable page of memory. |
| 50 size_t actual_size; | 50 size_t actual_size; |
| 51 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize, | 51 byte* buffer = static_cast<byte*>(v8::base::OS::Allocate( |
| 52 &actual_size, | 52 Assembler::kMinimalBufferSize, &actual_size, true)); |
| 53 true)); | |
| 54 CHECK(buffer); | 53 CHECK(buffer); |
| 55 HandleScope handles(isolate); | 54 HandleScope handles(isolate); |
| 56 MacroAssembler masm(isolate, buffer, static_cast<int>(actual_size)); | 55 MacroAssembler masm(isolate, buffer, static_cast<int>(actual_size)); |
| 57 DoubleToIStub stub(isolate, source_reg, destination_reg, 0, true, | 56 DoubleToIStub stub(isolate, source_reg, destination_reg, 0, true, |
| 58 inline_fastpath); | 57 inline_fastpath); |
| 59 | 58 |
| 60 byte* start = stub.GetCode()->instruction_start(); | 59 byte* start = stub.GetCode()->instruction_start(); |
| 61 Label done; | 60 Label done; |
| 62 | 61 |
| 63 // Save callee save registers. | 62 // Save callee save registers. |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 // Restore callee save registers. | 120 // Restore callee save registers. |
| 122 __ MultiPop(kCalleeSaved | ra.bit()); | 121 __ MultiPop(kCalleeSaved | ra.bit()); |
| 123 | 122 |
| 124 Label ok1; | 123 Label ok1; |
| 125 __ Branch(&ok1, eq, v0, Operand(zero_reg)); | 124 __ Branch(&ok1, eq, v0, Operand(zero_reg)); |
| 126 __ bind(&ok1); | 125 __ bind(&ok1); |
| 127 __ Ret(); | 126 __ Ret(); |
| 128 | 127 |
| 129 CodeDesc desc; | 128 CodeDesc desc; |
| 130 masm.GetCode(&desc); | 129 masm.GetCode(&desc); |
| 131 CPU::FlushICache(buffer, actual_size); | 130 CpuFeatures::FlushICache(buffer, actual_size); |
| 132 return (reinterpret_cast<ConvertDToIFunc>( | 131 return (reinterpret_cast<ConvertDToIFunc>( |
| 133 reinterpret_cast<intptr_t>(buffer))); | 132 reinterpret_cast<intptr_t>(buffer))); |
| 134 } | 133 } |
| 135 | 134 |
| 136 #undef __ | 135 #undef __ |
| 137 | 136 |
| 138 | 137 |
| 139 static Isolate* GetIsolateFrom(LocalContext* context) { | 138 static Isolate* GetIsolateFrom(LocalContext* context) { |
| 140 return reinterpret_cast<Isolate*>((*context)->GetIsolate()); | 139 return reinterpret_cast<Isolate*>((*context)->GetIsolate()); |
| 141 } | 140 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 false)); | 179 false)); |
| 181 RunAllTruncationTests( | 180 RunAllTruncationTests( |
| 182 RunGeneratedCodeCallWrapper, | 181 RunGeneratedCodeCallWrapper, |
| 183 MakeConvertDToIFuncTrampoline(isolate, | 182 MakeConvertDToIFuncTrampoline(isolate, |
| 184 source_registers[s], | 183 source_registers[s], |
| 185 dest_registers[d], | 184 dest_registers[d], |
| 186 true)); | 185 true)); |
| 187 } | 186 } |
| 188 } | 187 } |
| 189 } | 188 } |
| OLD | NEW |