2018-05-13 10:10:44 +00:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
#include "src/base/utils/random-number-generator.h"
|
|
|
|
#include "src/builtins/builtins-promise-gen.h"
|
|
|
|
#include "src/builtins/builtins-string-gen.h"
|
|
|
|
#include "src/char-predicates.h"
|
|
|
|
#include "src/code-factory.h"
|
|
|
|
#include "src/code-stub-assembler.h"
|
|
|
|
#include "src/compiler/node.h"
|
|
|
|
#include "src/debug/debug.h"
|
|
|
|
#include "src/elements-kind.h"
|
|
|
|
#include "src/isolate.h"
|
|
|
|
#include "src/objects-inl.h"
|
|
|
|
#include "src/objects/promise-inl.h"
|
|
|
|
#include "test/cctest/compiler/code-assembler-tester.h"
|
|
|
|
#include "test/cctest/compiler/function-tester.h"
|
|
|
|
#include "torque-generated/builtins-test-from-dsl-gen.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace compiler {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
typedef CodeAssemblerLabel Label;
|
|
|
|
typedef CodeAssemblerVariable Variable;
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
TEST(TestConstexpr1) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
m.TestConstexpr1();
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
2018-05-22 12:48:29 +00:00
|
|
|
ft.Call();
|
2018-05-13 10:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TestConstexprIf) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
m.TestConstexprIf();
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
2018-05-22 12:48:29 +00:00
|
|
|
ft.Call();
|
2018-05-13 10:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TestConstexprReturn) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
m.TestConstexprReturn();
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
2018-05-22 12:48:29 +00:00
|
|
|
ft.Call();
|
2018-05-13 10:10:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-13 14:24:08 +00:00
|
|
|
TEST(TestGotoLabel) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{ m.Return(m.TestGotoLabel()); }
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.CheckCall(ft.true_value());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TestGotoLabelWithOneParameter) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{ m.Return(m.TestGotoLabelWithOneParameter()); }
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.CheckCall(ft.true_value());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TestGotoLabelWithTwoParameters) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{ m.Return(m.TestGotoLabelWithTwoParameters()); }
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.CheckCall(ft.true_value());
|
|
|
|
}
|
|
|
|
|
2018-05-14 10:53:04 +00:00
|
|
|
TEST(TestPartiallyUnusedLabel) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{ m.Return(m.TestPartiallyUnusedLabel()); }
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.CheckCall(ft.true_value());
|
|
|
|
}
|
|
|
|
|
2018-05-16 09:45:07 +00:00
|
|
|
TEST(TestBuiltinSpecialization) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
Node* temp = m.SmiConstant(0);
|
|
|
|
m.TestBuiltinSpecialization(m.UncheckedCast<Context>(temp));
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
2018-05-22 12:48:29 +00:00
|
|
|
ft.Call();
|
2018-05-16 09:45:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(TestMacroSpecialization) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
m.TestMacroSpecialization();
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
2018-05-22 12:48:29 +00:00
|
|
|
ft.Call();
|
2018-05-16 09:45:07 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 14:00:35 +00:00
|
|
|
TEST(TestFunctionPointers) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
const int kNumParams = 0;
|
|
|
|
CodeAssemblerTester asm_tester(isolate, kNumParams);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
TNode<Context> context =
|
|
|
|
m.UncheckedCast<Context>(m.Parameter(kNumParams + 2));
|
|
|
|
m.Return(m.TestFunctionPointers(context));
|
|
|
|
}
|
2018-07-03 12:02:05 +00:00
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), kNumParams);
|
2018-05-16 14:00:35 +00:00
|
|
|
ft.CheckCall(ft.true_value());
|
|
|
|
}
|
|
|
|
|
2018-07-03 12:02:05 +00:00
|
|
|
TEST(TestTernaryOperator) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
const int kNumParams = 1;
|
|
|
|
CodeAssemblerTester asm_tester(isolate, kNumParams);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
TNode<Smi> arg = m.UncheckedCast<Smi>(m.Parameter(0));
|
|
|
|
m.Return(m.TestTernaryOperator(arg));
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), kNumParams);
|
|
|
|
Handle<Object> result1 =
|
|
|
|
ft.Call(Handle<Smi>(Smi::FromInt(-5), isolate)).ToHandleChecked();
|
|
|
|
CHECK_EQ(-15, Handle<Smi>::cast(result1)->value());
|
|
|
|
Handle<Object> result2 =
|
|
|
|
ft.Call(Handle<Smi>(Smi::FromInt(3), isolate)).ToHandleChecked();
|
|
|
|
CHECK_EQ(103, Handle<Smi>::cast(result2)->value());
|
|
|
|
}
|
|
|
|
|
2018-05-22 12:48:29 +00:00
|
|
|
TEST(TestFunctionPointerToGeneric) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
Node* temp = m.SmiConstant(0);
|
|
|
|
m.TestFunctionPointerToGeneric(m.UncheckedCast<Context>(temp));
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.Call();
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:18:39 +00:00
|
|
|
TEST(TestUnsafeCast) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
Node* temp = m.SmiConstant(0);
|
|
|
|
Node* n = m.SmiConstant(10);
|
|
|
|
m.Return(m.TestUnsafeCast(m.UncheckedCast<Context>(temp),
|
|
|
|
m.UncheckedCast<Number>(n)));
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.CheckCall(ft.true_value());
|
|
|
|
}
|
|
|
|
|
2018-06-05 08:49:05 +00:00
|
|
|
TEST(TestHexLiteral) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
m.TestHexLiteral();
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.Call();
|
|
|
|
}
|
|
|
|
|
2018-07-13 08:50:22 +00:00
|
|
|
TEST(TestModuleConstBindings) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
m.TestModuleConstBindings();
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.Call();
|
|
|
|
}
|
|
|
|
|
2018-07-17 06:39:07 +00:00
|
|
|
TEST(TestLocalConstBindings) {
|
|
|
|
Isolate* isolate(CcTest::InitIsolateOnce());
|
|
|
|
CodeAssemblerTester asm_tester(isolate, 0);
|
|
|
|
TestBuiltinsFromDSLAssembler m(asm_tester.state());
|
|
|
|
{
|
|
|
|
m.TestLocalConstBindings();
|
|
|
|
m.Return(m.UndefinedConstant());
|
|
|
|
}
|
|
|
|
FunctionTester ft(asm_tester.GenerateCode(), 0);
|
|
|
|
ft.Call();
|
|
|
|
}
|
|
|
|
|
2018-05-13 10:10:44 +00:00
|
|
|
} // namespace compiler
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|