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 12 matching lines...) Expand all Loading... |
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 #include "test/cctest/cctest.h" | 31 #include "test/cctest/cctest.h" |
32 | 32 |
| 33 #include "src/base/platform/platform.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/platform.h" | |
36 #include "src/serialize.h" | 36 #include "src/serialize.h" |
37 | 37 |
38 using namespace v8::internal; | 38 using namespace v8::internal; |
39 | 39 |
40 #if __GNUC__ | 40 #if __GNUC__ |
41 #define STDCALL __attribute__((stdcall)) | 41 #define STDCALL __attribute__((stdcall)) |
42 #else | 42 #else |
43 #define STDCALL __stdcall | 43 #define STDCALL __stdcall |
44 #endif | 44 #endif |
45 | 45 |
46 typedef int STDCALL F0Type(); | 46 typedef int STDCALL F0Type(); |
47 typedef F0Type* F0; | 47 typedef F0Type* F0; |
48 | 48 |
49 #define __ masm-> | 49 #define __ masm-> |
50 | 50 |
51 | 51 |
52 TEST(LoadAndStoreWithRepresentation) { | 52 TEST(LoadAndStoreWithRepresentation) { |
53 v8::internal::V8::Initialize(NULL); | 53 v8::internal::V8::Initialize(NULL); |
54 | 54 |
55 // Allocate an executable page of memory. | 55 // Allocate an executable page of memory. |
56 size_t actual_size; | 56 size_t actual_size; |
57 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize, | 57 byte* buffer = static_cast<byte*>(v8::base::OS::Allocate( |
58 &actual_size, | 58 Assembler::kMinimalBufferSize, &actual_size, true)); |
59 true)); | |
60 CHECK(buffer); | 59 CHECK(buffer); |
61 Isolate* isolate = CcTest::i_isolate(); | 60 Isolate* isolate = CcTest::i_isolate(); |
62 HandleScope handles(isolate); | 61 HandleScope handles(isolate); |
63 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size)); | 62 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size)); |
64 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro. | 63 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro. |
65 __ push(ebx); | 64 __ push(ebx); |
66 __ push(edx); | 65 __ push(edx); |
67 __ sub(esp, Immediate(1 * kPointerSize)); | 66 __ sub(esp, Immediate(1 * kPointerSize)); |
68 Label exit; | 67 Label exit; |
69 | 68 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 __ ret(0); | 141 __ ret(0); |
143 | 142 |
144 CodeDesc desc; | 143 CodeDesc desc; |
145 masm->GetCode(&desc); | 144 masm->GetCode(&desc); |
146 // Call the function from C++. | 145 // Call the function from C++. |
147 int result = FUNCTION_CAST<F0>(buffer)(); | 146 int result = FUNCTION_CAST<F0>(buffer)(); |
148 CHECK_EQ(0, result); | 147 CHECK_EQ(0, result); |
149 } | 148 } |
150 | 149 |
151 #undef __ | 150 #undef __ |
OLD | NEW |