summaryrefslogtreecommitdiff
path: root/deps/v8/test/cctest/test-javascript-arm64.cc
blob: 428726fdc73ca091b5fd300e76e2ce5e433d81e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// Copyright 2013 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include <limits.h>

#include "src/v8.h"

#include "src/api.h"
#include "src/base/platform/platform.h"
#include "src/compilation-cache.h"
#include "src/execution.h"
#include "src/isolate.h"
#include "src/objects-inl.h"
#include "src/unicode-inl.h"
#include "src/utils.h"
#include "test/cctest/cctest.h"

namespace v8 {
namespace internal {
namespace test_javascript_arm64 {

static void ExpectBoolean(Local<v8::Context> context, bool expected,
                          Local<Value> result) {
  CHECK(result->IsBoolean());
  CHECK_EQ(expected, result->BooleanValue(context->GetIsolate()));
}

static void ExpectInt32(Local<v8::Context> context, int32_t expected,
                        Local<Value> result) {
  CHECK(result->IsInt32());
  CHECK_EQ(expected, result->Int32Value(context).FromJust());
}

static void ExpectNumber(Local<v8::Context> context, double expected,
                         Local<Value> result) {
  CHECK(result->IsNumber());
  CHECK_EQ(expected, result->NumberValue(context).FromJust());
}


static void ExpectUndefined(Local<Value> result) {
  CHECK(result->IsUndefined());
}


// Tests are sorted by order of implementation.

TEST(simple_value) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result = CompileRun("0x271828;");
  ExpectInt32(env.local(), 0x271828, result);
}


TEST(global_variable) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result = CompileRun("var my_global_var = 0x123; my_global_var;");
  ExpectInt32(env.local(), 0x123, result);
}


TEST(simple_function_call) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result = CompileRun(
      "function foo() { return 0x314; }"
      "foo();");
  ExpectInt32(env.local(), 0x314, result);
}


TEST(binary_op) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result = CompileRun(
      "function foo() {"
      "  var a = 0x1200;"
      "  var b = 0x0035;"
      "  return 2 * (a + b - 1);"
      "}"
      "foo();");
  ExpectInt32(env.local(), 0x2468, result);
}

static void if_comparison_testcontext_helper(Local<v8::Context> context,
                                             char const* op, char const* lhs,
                                             char const* rhs, int expect) {
  char buffer[256];
  snprintf(buffer, sizeof(buffer),
           "var lhs = %s;"
           "var rhs = %s;"
           "if ( lhs %s rhs ) { 1; }"
           "else { 0; }",
           lhs, rhs, op);
  Local<Value> result = CompileRun(buffer);
  ExpectInt32(context, expect, result);
}

static void if_comparison_effectcontext_helper(Local<v8::Context> context,
                                               char const* op, char const* lhs,
                                               char const* rhs, int expect) {
  char buffer[256];
  snprintf(buffer, sizeof(buffer),
           "var lhs = %s;"
           "var rhs = %s;"
           "var test = lhs %s rhs;"
           "if ( test ) { 1; }"
           "else { 0; }",
           lhs, rhs, op);
  Local<Value> result = CompileRun(buffer);
  ExpectInt32(context, expect, result);
}

static void if_comparison_helper(Local<v8::Context> context, char const* op,
                                 int expect_when_lt, int expect_when_eq,
                                 int expect_when_gt) {
  // TODO(all): Non-SMI tests.

  if_comparison_testcontext_helper(context, op, "1", "3", expect_when_lt);
  if_comparison_testcontext_helper(context, op, "5", "5", expect_when_eq);
  if_comparison_testcontext_helper(context, op, "9", "7", expect_when_gt);

  if_comparison_effectcontext_helper(context, op, "1", "3", expect_when_lt);
  if_comparison_effectcontext_helper(context, op, "5", "5", expect_when_eq);
  if_comparison_effectcontext_helper(context, op, "9", "7", expect_when_gt);
}


TEST(if_comparison) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());

  if_comparison_helper(env.local(), "<", 1, 0, 0);
  if_comparison_helper(env.local(), "<=", 1, 1, 0);
  if_comparison_helper(env.local(), "==", 0, 1, 0);
  if_comparison_helper(env.local(), "===", 0, 1, 0);
  if_comparison_helper(env.local(), ">=", 0, 1, 1);
  if_comparison_helper(env.local(), ">", 0, 0, 1);
  if_comparison_helper(env.local(), "!=", 1, 0, 1);
  if_comparison_helper(env.local(), "!==", 1, 0, 1);
}


TEST(unary_plus) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result;
  // SMI
  result = CompileRun("var a = 1234; +a");
  ExpectInt32(env.local(), 1234, result);
  // Number
  result = CompileRun("var a = 1234.5; +a");
  ExpectNumber(env.local(), 1234.5, result);
  // String (SMI)
  result = CompileRun("var a = '1234'; +a");
  ExpectInt32(env.local(), 1234, result);
  // String (Number)
  result = CompileRun("var a = '1234.5'; +a");
  ExpectNumber(env.local(), 1234.5, result);
  // Check side effects.
  result = CompileRun("var a = 1234; +(a = 4321); a");
  ExpectInt32(env.local(), 4321, result);
}


TEST(unary_minus) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result;
  result = CompileRun("var a = 1234; -a");
  ExpectInt32(env.local(), -1234, result);
  result = CompileRun("var a = 1234.5; -a");
  ExpectNumber(env.local(), -1234.5, result);
  result = CompileRun("var a = 1234; -(a = 4321); a");
  ExpectInt32(env.local(), 4321, result);
  result = CompileRun("var a = '1234'; -a");
  ExpectInt32(env.local(), -1234, result);
  result = CompileRun("var a = '1234.5'; -a");
  ExpectNumber(env.local(), -1234.5, result);
}


TEST(unary_void) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result;
  result = CompileRun("var a = 1234; void (a);");
  ExpectUndefined(result);
  result = CompileRun("var a = 0; void (a = 42); a");
  ExpectInt32(env.local(), 42, result);
  result = CompileRun("var a = 0; void (a = 42);");
  ExpectUndefined(result);
}


TEST(unary_not) {
  LocalContext env;
  v8::HandleScope scope(env->GetIsolate());
  Local<Value> result;
  result = CompileRun("var a = 1234; !a");
  ExpectBoolean(env.local(), false, result);
  result = CompileRun("var a = 0; !a");
  ExpectBoolean(env.local(), true, result);
  result = CompileRun("var a = 0; !(a = 1234); a");
  ExpectInt32(env.local(), 1234, result);
  result = CompileRun("var a = '1234'; !a");
  ExpectBoolean(env.local(), false, result);
  result = CompileRun("var a = ''; !a");
  ExpectBoolean(env.local(), true, result);
  result = CompileRun("var a = 1234; !!a");
  ExpectBoolean(env.local(), true, result);
  result = CompileRun("var a = 0; !!a");
  ExpectBoolean(env.local(), false, result);
  result = CompileRun("var a = 0; if ( !a ) { 1; } else { 0; }");
  ExpectInt32(env.local(), 1, result);
  result = CompileRun("var a = 1; if ( !a ) { 1; } else { 0; }");
  ExpectInt32(env.local(), 0, result);
}

}  // namespace test_javascript_arm64
}  // namespace internal
}  // namespace v8