Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / v8 / test / cctest / test-macro-assembler-x87.cc
1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above
9 //       copyright notice, this list of conditions and the following
10 //       disclaimer in the documentation and/or other materials provided
11 //       with the distribution.
12 //     * Neither the name of Google Inc. nor the names of its
13 //       contributors may be used to endorse or promote products derived
14 //       from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
27
28 #include <stdlib.h>
29
30 #include "src/v8.h"
31 #include "test/cctest/cctest.h"
32
33 #include "src/base/platform/platform.h"
34 #include "src/factory.h"
35 #include "src/macro-assembler.h"
36 #include "src/serialize.h"
37
38 using namespace v8::internal;
39
40 #if __GNUC__
41 #define STDCALL  __attribute__((stdcall))
42 #else
43 #define STDCALL  __stdcall
44 #endif
45
46 typedef int STDCALL F0Type();
47 typedef F0Type* F0;
48
49 #define __ masm->
50
51
52 TEST(LoadAndStoreWithRepresentation) {
53   v8::internal::V8::Initialize(NULL);
54
55   // Allocate an executable page of memory.
56   size_t actual_size;
57   byte* buffer = static_cast<byte*>(v8::base::OS::Allocate(
58       Assembler::kMinimalBufferSize, &actual_size, true));
59   CHECK(buffer);
60   Isolate* isolate = CcTest::i_isolate();
61   HandleScope handles(isolate);
62   MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size));
63   MacroAssembler* masm = &assembler;  // Create a pointer for the __ macro.
64   __ push(ebx);
65   __ push(edx);
66   __ sub(esp, Immediate(1 * kPointerSize));
67   Label exit;
68
69   // Test 1.
70   __ mov(eax, Immediate(1));  // Test number.
71   __ mov(Operand(esp, 0 * kPointerSize), Immediate(0));
72   __ mov(ebx, Immediate(-1));
73   __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8());
74   __ mov(ebx, Operand(esp, 0 * kPointerSize));
75   __ mov(edx, Immediate(255));
76   __ cmp(ebx, edx);
77   __ j(not_equal, &exit);
78   __ Load(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8());
79   __ cmp(ebx, edx);
80   __ j(not_equal, &exit);
81
82
83   // Test 2.
84   __ mov(eax, Immediate(2));  // Test number.
85   __ mov(Operand(esp, 0 * kPointerSize), Immediate(0));
86   __ mov(ebx, Immediate(-1));
87   __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer8());
88   __ mov(ebx, Operand(esp, 0 * kPointerSize));
89   __ mov(edx, Immediate(255));
90   __ cmp(ebx, edx);
91   __ j(not_equal, &exit);
92   __ Load(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer8());
93   __ mov(edx, Immediate(-1));
94   __ cmp(ebx, edx);
95   __ j(not_equal, &exit);
96
97   // Test 3.
98   __ mov(eax, Immediate(3));  // Test number.
99   __ mov(Operand(esp, 0 * kPointerSize), Immediate(0));
100   __ mov(ebx, Immediate(-1));
101   __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer16());
102   __ mov(ebx, Operand(esp, 0 * kPointerSize));
103   __ mov(edx, Immediate(65535));
104   __ cmp(ebx, edx);
105   __ j(not_equal, &exit);
106   __ Load(edx, Operand(esp, 0 * kPointerSize), Representation::Integer16());
107   __ mov(ebx, Immediate(-1));
108   __ cmp(ebx, edx);
109   __ j(not_equal, &exit);
110
111   // Test 4.
112   __ mov(eax, Immediate(4));  // Test number.
113   __ mov(Operand(esp, 0 * kPointerSize), Immediate(0));
114   __ mov(ebx, Immediate(-1));
115   __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger16());
116   __ mov(ebx, Operand(esp, 0 * kPointerSize));
117   __ mov(edx, Immediate(65535));
118   __ cmp(ebx, edx);
119   __ j(not_equal, &exit);
120   __ Load(edx, Operand(esp, 0 * kPointerSize), Representation::UInteger16());
121   __ cmp(ebx, edx);
122   __ j(not_equal, &exit);
123
124   // Test 5.
125   __ mov(eax, Immediate(5));
126   __ Move(edx, Immediate(0));  // Test Move()
127   __ cmp(edx, Immediate(0));
128   __ j(not_equal, &exit);
129   __ Move(ecx, Immediate(-1));
130   __ cmp(ecx, Immediate(-1));
131   __ j(not_equal, &exit);
132   __ Move(ebx, Immediate(0x77));
133   __ cmp(ebx, Immediate(0x77));
134   __ j(not_equal, &exit);
135
136   __ xor_(eax, eax);  // Success.
137   __ bind(&exit);
138   __ add(esp, Immediate(1 * kPointerSize));
139   __ pop(edx);
140   __ pop(ebx);
141   __ ret(0);
142
143   CodeDesc desc;
144   masm->GetCode(&desc);
145   // Call the function from C++.
146   int result = FUNCTION_CAST<F0>(buffer)();
147   CHECK_EQ(0, result);
148 }
149
150 #undef __