HELLO·Android
系统源代码
IT资讯
技术文章
我的收藏
注册
登录
-
我收藏的文章
创建代码块
我的代码块
我的账号
Nougat 7.1
|
7.1.1_r28
下载
查看原文件
收藏
根目录
external
v8
test
cctest
interpreter
test-interpreter.cc
// 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 "src/v8.h" #include "src/execution.h" #include "src/handles.h" #include "src/interpreter/bytecode-array-builder.h" #include "src/interpreter/bytecode-array-iterator.h" #include "src/interpreter/bytecode-label.h" #include "src/interpreter/interpreter.h" #include "test/cctest/cctest.h" #include "test/cctest/interpreter/interpreter-tester.h" #include "test/cctest/test-feedback-vector.h" namespace v8 { namespace internal { namespace interpreter { TEST(InterpreterReturn) { HandleAndZoneScope handles; Handle
undefined_value = handles.main_isolate()->factory()->undefined_value(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(undefined_value)); } TEST(InterpreterLoadUndefined) { HandleAndZoneScope handles; Handle
undefined_value = handles.main_isolate()->factory()->undefined_value(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadUndefined().Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(undefined_value)); } TEST(InterpreterLoadNull) { HandleAndZoneScope handles; Handle
null_value = handles.main_isolate()->factory()->null_value(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadNull().Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(null_value)); } TEST(InterpreterLoadTheHole) { HandleAndZoneScope handles; Handle
the_hole_value = handles.main_isolate()->factory()->the_hole_value(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadTheHole().Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(the_hole_value)); } TEST(InterpreterLoadTrue) { HandleAndZoneScope handles; Handle
true_value = handles.main_isolate()->factory()->true_value(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadTrue().Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(true_value)); } TEST(InterpreterLoadFalse) { HandleAndZoneScope handles; Handle
false_value = handles.main_isolate()->factory()->false_value(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadFalse().Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(false_value)); } TEST(InterpreterLoadLiteral) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); // Small Smis. for (int i = -128; i < 128; i++) { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadLiteral(Smi::FromInt(i)).Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(i)); } // Large Smis. { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadLiteral(Smi::FromInt(0x12345678)).Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(0x12345678)); } // Heap numbers. { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadLiteral(factory->NewHeapNumber(-2.1e19)).Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(i::HeapNumber::cast(*return_val)->value(), -2.1e19); } // Strings. { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); Handle
string = factory->NewStringFromAsciiChecked("String"); builder.LoadLiteral(string).Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(i::String::cast(*return_val)->Equals(*string)); } } TEST(InterpreterLoadStoreRegisters) { HandleAndZoneScope handles; Handle
true_value = handles.main_isolate()->factory()->true_value(); for (int i = 0; i <= kMaxInt8; i++) { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, i + 1); Register reg(i); builder.LoadTrue() .StoreAccumulatorInRegister(reg) .LoadFalse() .LoadAccumulatorWithRegister(reg) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(true_value)); } } static const Token::Value kShiftOperators[] = { Token::Value::SHL, Token::Value::SAR, Token::Value::SHR}; static const Token::Value kArithmeticOperators[] = { Token::Value::BIT_OR, Token::Value::BIT_XOR, Token::Value::BIT_AND, Token::Value::SHL, Token::Value::SAR, Token::Value::SHR, Token::Value::ADD, Token::Value::SUB, Token::Value::MUL, Token::Value::DIV, Token::Value::MOD}; static double BinaryOpC(Token::Value op, double lhs, double rhs) { switch (op) { case Token::Value::ADD: return lhs + rhs; case Token::Value::SUB: return lhs - rhs; case Token::Value::MUL: return lhs * rhs; case Token::Value::DIV: return lhs / rhs; case Token::Value::MOD: return std::fmod(lhs, rhs); case Token::Value::BIT_OR: return (v8::internal::DoubleToInt32(lhs) | v8::internal::DoubleToInt32(rhs)); case Token::Value::BIT_XOR: return (v8::internal::DoubleToInt32(lhs) ^ v8::internal::DoubleToInt32(rhs)); case Token::Value::BIT_AND: return (v8::internal::DoubleToInt32(lhs) & v8::internal::DoubleToInt32(rhs)); case Token::Value::SHL: { int32_t val = v8::internal::DoubleToInt32(lhs); uint32_t count = v8::internal::DoubleToUint32(rhs) & 0x1F; int32_t result = val << count; return result; } case Token::Value::SAR: { int32_t val = v8::internal::DoubleToInt32(lhs); uint32_t count = v8::internal::DoubleToUint32(rhs) & 0x1F; int32_t result = val >> count; return result; } case Token::Value::SHR: { uint32_t val = v8::internal::DoubleToUint32(lhs); uint32_t count = v8::internal::DoubleToUint32(rhs) & 0x1F; uint32_t result = val >> count; return result; } default: UNREACHABLE(); return std::numeric_limits
::min(); } } TEST(InterpreterShiftOpsSmi) { int lhs_inputs[] = {0, -17, -182, 1073741823, -1}; int rhs_inputs[] = {5, 2, 1, -1, -2, 0, 31, 32, -32, 64, 37}; for (size_t l = 0; l < arraysize(lhs_inputs); l++) { for (size_t r = 0; r < arraysize(rhs_inputs); r++) { for (size_t o = 0; o < arraysize(kShiftOperators); o++) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); Register reg(0); int lhs = lhs_inputs[l]; int rhs = rhs_inputs[r]; builder.LoadLiteral(Smi::FromInt(lhs)) .StoreAccumulatorInRegister(reg) .LoadLiteral(Smi::FromInt(rhs)) .BinaryOperation(kShiftOperators[o], reg) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); Handle
expected_value = factory->NewNumber(BinaryOpC(kShiftOperators[o], lhs, rhs)); CHECK(return_value->SameValue(*expected_value)); } } } } TEST(InterpreterBinaryOpsSmi) { int lhs_inputs[] = {3266, 1024, 0, -17, -18000}; int rhs_inputs[] = {3266, 5, 4, 3, 2, 1, -1, -2}; for (size_t l = 0; l < arraysize(lhs_inputs); l++) { for (size_t r = 0; r < arraysize(rhs_inputs); r++) { for (size_t o = 0; o < arraysize(kArithmeticOperators); o++) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); Register reg(0); int lhs = lhs_inputs[l]; int rhs = rhs_inputs[r]; builder.LoadLiteral(Smi::FromInt(lhs)) .StoreAccumulatorInRegister(reg) .LoadLiteral(Smi::FromInt(rhs)) .BinaryOperation(kArithmeticOperators[o], reg) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); Handle
expected_value = factory->NewNumber(BinaryOpC(kArithmeticOperators[o], lhs, rhs)); CHECK(return_value->SameValue(*expected_value)); } } } } TEST(InterpreterBinaryOpsHeapNumber) { double lhs_inputs[] = {3266.101, 1024.12, 0.01, -17.99, -18000.833, 9.1e17}; double rhs_inputs[] = {3266.101, 5.999, 4.778, 3.331, 2.643, 1.1, -1.8, -2.9, 8.3e-27}; for (size_t l = 0; l < arraysize(lhs_inputs); l++) { for (size_t r = 0; r < arraysize(rhs_inputs); r++) { for (size_t o = 0; o < arraysize(kArithmeticOperators); o++) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); Register reg(0); double lhs = lhs_inputs[l]; double rhs = rhs_inputs[r]; builder.LoadLiteral(factory->NewNumber(lhs)) .StoreAccumulatorInRegister(reg) .LoadLiteral(factory->NewNumber(rhs)) .BinaryOperation(kArithmeticOperators[o], reg) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); Handle
expected_value = factory->NewNumber(BinaryOpC(kArithmeticOperators[o], lhs, rhs)); CHECK(return_value->SameValue(*expected_value)); } } } } TEST(InterpreterStringAdd) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); struct TestCase { Handle
lhs; Handle
rhs; Handle
expected_value; } test_cases[] = { {factory->NewStringFromStaticChars("a"), factory->NewStringFromStaticChars("b"), factory->NewStringFromStaticChars("ab")}, {factory->NewStringFromStaticChars("aaaaaa"), factory->NewStringFromStaticChars("b"), factory->NewStringFromStaticChars("aaaaaab")}, {factory->NewStringFromStaticChars("aaa"), factory->NewStringFromStaticChars("bbbbb"), factory->NewStringFromStaticChars("aaabbbbb")}, {factory->NewStringFromStaticChars(""), factory->NewStringFromStaticChars("b"), factory->NewStringFromStaticChars("b")}, {factory->NewStringFromStaticChars("a"), factory->NewStringFromStaticChars(""), factory->NewStringFromStaticChars("a")}, {factory->NewStringFromStaticChars("1.11"), factory->NewHeapNumber(2.5), factory->NewStringFromStaticChars("1.112.5")}, {factory->NewStringFromStaticChars("-1.11"), factory->NewHeapNumber(2.56), factory->NewStringFromStaticChars("-1.112.56")}, {factory->NewStringFromStaticChars(""), factory->NewHeapNumber(2.5), factory->NewStringFromStaticChars("2.5")}, }; for (size_t i = 0; i < arraysize(test_cases); i++) { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); Register reg(0); builder.LoadLiteral(test_cases[i].lhs) .StoreAccumulatorInRegister(reg) .LoadLiteral(test_cases[i].rhs) .BinaryOperation(Token::Value::ADD, reg) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*test_cases[i].expected_value)); } } TEST(InterpreterParameter1) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadAccumulatorWithRegister(builder.Parameter(0)).Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable
>(); // Check for heap objects. Handle
true_value = handles.main_isolate()->factory()->true_value(); Handle
return_val = callable(true_value).ToHandleChecked(); CHECK(return_val.is_identical_to(true_value)); // Check for Smis. return_val = callable(Handle
(Smi::FromInt(3), handles.main_isolate())) .ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(3)); } TEST(InterpreterParameter8) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 8, 0, 0); builder.LoadAccumulatorWithRegister(builder.Parameter(0)) .BinaryOperation(Token::Value::ADD, builder.Parameter(1)) .BinaryOperation(Token::Value::ADD, builder.Parameter(2)) .BinaryOperation(Token::Value::ADD, builder.Parameter(3)) .BinaryOperation(Token::Value::ADD, builder.Parameter(4)) .BinaryOperation(Token::Value::ADD, builder.Parameter(5)) .BinaryOperation(Token::Value::ADD, builder.Parameter(6)) .BinaryOperation(Token::Value::ADD, builder.Parameter(7)) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); typedef Handle
H; auto callable = tester.GetCallable
(); Handle
arg1 = Handle
(Smi::FromInt(1), handles.main_isolate()); Handle
arg2 = Handle
(Smi::FromInt(2), handles.main_isolate()); Handle
arg3 = Handle
(Smi::FromInt(3), handles.main_isolate()); Handle
arg4 = Handle
(Smi::FromInt(4), handles.main_isolate()); Handle
arg5 = Handle
(Smi::FromInt(5), handles.main_isolate()); Handle
arg6 = Handle
(Smi::FromInt(6), handles.main_isolate()); Handle
arg7 = Handle
(Smi::FromInt(7), handles.main_isolate()); Handle
arg8 = Handle
(Smi::FromInt(8), handles.main_isolate()); // Check for Smis. Handle
return_val = callable(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) .ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(36)); } TEST(InterpreterParameter1Assign) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadLiteral(Smi::FromInt(5)) .StoreAccumulatorInRegister(builder.Parameter(0)) .LoadAccumulatorWithRegister(builder.Parameter(0)) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable
>(); Handle
return_val = callable(Handle
(Smi::FromInt(3), handles.main_isolate())) .ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(5)); } TEST(InterpreterLoadGlobal) { HandleAndZoneScope handles; // Test loading a global. std::string source( "var global = 321;\n" "function " + InterpreterTester::function_name() + "() {\n" " return global;\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(321)); } TEST(InterpreterStoreGlobal) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); // Test storing to a global. std::string source( "var global = 321;\n" "function " + InterpreterTester::function_name() + "() {\n" " global = 999;\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); callable().ToHandleChecked(); Handle
name = factory->InternalizeUtf8String("global"); Handle
global_obj = Object::GetProperty(isolate->global_object(), name).ToHandleChecked(); CHECK_EQ(Smi::cast(*global_obj), Smi::FromInt(999)); } TEST(InterpreterCallGlobal) { HandleAndZoneScope handles; // Test calling a global function. std::string source( "function g_add(a, b) { return a + b; }\n" "function " + InterpreterTester::function_name() + "() {\n" " return g_add(5, 10);\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(15)); } TEST(InterpreterLoadUnallocated) { HandleAndZoneScope handles; // Test loading an unallocated global. std::string source( "unallocated = 123;\n" "function " + InterpreterTester::function_name() + "() {\n" " return unallocated;\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(123)); } TEST(InterpreterStoreUnallocated) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); // Test storing to an unallocated global. std::string source( "unallocated = 321;\n" "function " + InterpreterTester::function_name() + "() {\n" " unallocated = 999;\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); callable().ToHandleChecked(); Handle
name = factory->InternalizeUtf8String("unallocated"); Handle
global_obj = Object::GetProperty(isolate->global_object(), name).ToHandleChecked(); CHECK_EQ(Smi::cast(*global_obj), Smi::FromInt(999)); } TEST(InterpreterLoadNamedProperty) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); i::Zone zone(isolate->allocator()); i::FeedbackVectorSpec feedback_spec(&zone); i::FeedbackVectorSlot slot = feedback_spec.AddLoadICSlot(); Handle
vector = i::NewTypeFeedbackVector(isolate, &feedback_spec); Handle
name = factory->NewStringFromAsciiChecked("val"); name = factory->string_table()->LookupString(isolate, name); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadNamedProperty(builder.Parameter(0), name, vector->GetIndex(slot)) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject("({ val : 123 })"); // Test IC miss. Handle
return_val = callable(object).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(123)); // Test transition to monomorphic IC. return_val = callable(object).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(123)); // Test transition to polymorphic IC. Handle
object2 = InterpreterTester::NewObject("({ val : 456, other : 123 })"); return_val = callable(object2).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(456)); // Test transition to megamorphic IC. Handle
object3 = InterpreterTester::NewObject("({ val : 789, val2 : 123 })"); callable(object3).ToHandleChecked(); Handle
object4 = InterpreterTester::NewObject("({ val : 789, val3 : 123 })"); callable(object4).ToHandleChecked(); Handle
object5 = InterpreterTester::NewObject("({ val : 789, val4 : 123 })"); return_val = callable(object5).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(789)); } TEST(InterpreterLoadKeyedProperty) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); i::Zone zone(isolate->allocator()); i::FeedbackVectorSpec feedback_spec(&zone); i::FeedbackVectorSlot slot = feedback_spec.AddKeyedLoadICSlot(); Handle
vector = i::NewTypeFeedbackVector(isolate, &feedback_spec); Handle
key = factory->NewStringFromAsciiChecked("key"); key = factory->string_table()->LookupString(isolate, key); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); builder.LoadLiteral(key) .LoadKeyedProperty(builder.Parameter(0), vector->GetIndex(slot)) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject("({ key : 123 })"); // Test IC miss. Handle
return_val = callable(object).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(123)); // Test transition to monomorphic IC. return_val = callable(object).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(123)); // Test transition to megamorphic IC. Handle
object3 = InterpreterTester::NewObject("({ key : 789, val2 : 123 })"); return_val = callable(object3).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(789)); } TEST(InterpreterStoreNamedProperty) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); i::Zone zone(isolate->allocator()); i::FeedbackVectorSpec feedback_spec(&zone); i::FeedbackVectorSlot slot = feedback_spec.AddStoreICSlot(); Handle
vector = i::NewTypeFeedbackVector(isolate, &feedback_spec); Handle
name = factory->NewStringFromAsciiChecked("val"); name = factory->string_table()->LookupString(isolate, name); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 0); builder.LoadLiteral(Smi::FromInt(999)) .StoreNamedProperty(builder.Parameter(0), name, vector->GetIndex(slot), i::STRICT) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(isolate, bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject("({ val : 123 })"); // Test IC miss. Handle
result; callable(object).ToHandleChecked(); CHECK(Runtime::GetObjectProperty(isolate, object, name).ToHandle(&result)); CHECK_EQ(Smi::cast(*result), Smi::FromInt(999)); // Test transition to monomorphic IC. callable(object).ToHandleChecked(); CHECK(Runtime::GetObjectProperty(isolate, object, name).ToHandle(&result)); CHECK_EQ(Smi::cast(*result), Smi::FromInt(999)); // Test transition to polymorphic IC. Handle
object2 = InterpreterTester::NewObject("({ val : 456, other : 123 })"); callable(object2).ToHandleChecked(); CHECK(Runtime::GetObjectProperty(isolate, object2, name).ToHandle(&result)); CHECK_EQ(Smi::cast(*result), Smi::FromInt(999)); // Test transition to megamorphic IC. Handle
object3 = InterpreterTester::NewObject("({ val : 789, val2 : 123 })"); callable(object3).ToHandleChecked(); Handle
object4 = InterpreterTester::NewObject("({ val : 789, val3 : 123 })"); callable(object4).ToHandleChecked(); Handle
object5 = InterpreterTester::NewObject("({ val : 789, val4 : 123 })"); callable(object5).ToHandleChecked(); CHECK(Runtime::GetObjectProperty(isolate, object5, name).ToHandle(&result)); CHECK_EQ(Smi::cast(*result), Smi::FromInt(999)); } TEST(InterpreterStoreKeyedProperty) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); i::Zone zone(isolate->allocator()); i::FeedbackVectorSpec feedback_spec(&zone); i::FeedbackVectorSlot slot = feedback_spec.AddKeyedStoreICSlot(); Handle
vector = i::NewTypeFeedbackVector(isolate, &feedback_spec); Handle
name = factory->NewStringFromAsciiChecked("val"); name = factory->string_table()->LookupString(isolate, name); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); builder.LoadLiteral(name) .StoreAccumulatorInRegister(Register(0)) .LoadLiteral(Smi::FromInt(999)) .StoreKeyedProperty(builder.Parameter(0), Register(0), vector->GetIndex(slot), i::SLOPPY) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(isolate, bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject("({ val : 123 })"); // Test IC miss. Handle
result; callable(object).ToHandleChecked(); CHECK(Runtime::GetObjectProperty(isolate, object, name).ToHandle(&result)); CHECK_EQ(Smi::cast(*result), Smi::FromInt(999)); // Test transition to monomorphic IC. callable(object).ToHandleChecked(); CHECK(Runtime::GetObjectProperty(isolate, object, name).ToHandle(&result)); CHECK_EQ(Smi::cast(*result), Smi::FromInt(999)); // Test transition to megamorphic IC. Handle
object2 = InterpreterTester::NewObject("({ val : 456, other : 123 })"); callable(object2).ToHandleChecked(); CHECK(Runtime::GetObjectProperty(isolate, object2, name).ToHandle(&result)); CHECK_EQ(Smi::cast(*result), Smi::FromInt(999)); } static void TestInterpreterCall(TailCallMode tail_call_mode) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); i::Zone zone(isolate->allocator()); i::FeedbackVectorSpec feedback_spec(&zone); i::FeedbackVectorSlot slot = feedback_spec.AddLoadICSlot(); Handle
vector = i::NewTypeFeedbackVector(isolate, &feedback_spec); int slot_index = vector->GetIndex(slot); Handle
name = factory->NewStringFromAsciiChecked("func"); name = factory->string_table()->LookupString(isolate, name); // Check with no args. { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); builder.LoadNamedProperty(builder.Parameter(0), name, slot_index) .StoreAccumulatorInRegister(Register(0)) .Call(Register(0), builder.Parameter(0), 1, 0, tail_call_mode) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject( "new (function Obj() { this.func = function() { return 0x265; }})()"); Handle
return_val = callable(object).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(0x265)); } // Check that receiver is passed properly. { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); builder.LoadNamedProperty(builder.Parameter(0), name, slot_index) .StoreAccumulatorInRegister(Register(0)) .Call(Register(0), builder.Parameter(0), 1, 0, tail_call_mode) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject( "new (function Obj() {" " this.val = 1234;" " this.func = function() { return this.val; };" "})()"); Handle
return_val = callable(object).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(1234)); } // Check with two parameters (+ receiver). { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 4); builder.LoadNamedProperty(builder.Parameter(0), name, slot_index) .StoreAccumulatorInRegister(Register(0)) .LoadAccumulatorWithRegister(builder.Parameter(0)) .StoreAccumulatorInRegister(Register(1)) .LoadLiteral(Smi::FromInt(51)) .StoreAccumulatorInRegister(Register(2)) .LoadLiteral(Smi::FromInt(11)) .StoreAccumulatorInRegister(Register(3)) .Call(Register(0), Register(1), 3, 0, tail_call_mode) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject( "new (function Obj() { " " this.func = function(a, b) { return a - b; }" "})()"); Handle
return_val = callable(object).ToHandleChecked(); CHECK(return_val->SameValue(Smi::FromInt(40))); } // Check with 10 parameters (+ receiver). { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 12); builder.LoadNamedProperty(builder.Parameter(0), name, slot_index) .StoreAccumulatorInRegister(Register(0)) .LoadAccumulatorWithRegister(builder.Parameter(0)) .StoreAccumulatorInRegister(Register(1)) .LoadLiteral(factory->NewStringFromAsciiChecked("a")) .StoreAccumulatorInRegister(Register(2)) .LoadLiteral(factory->NewStringFromAsciiChecked("b")) .StoreAccumulatorInRegister(Register(3)) .LoadLiteral(factory->NewStringFromAsciiChecked("c")) .StoreAccumulatorInRegister(Register(4)) .LoadLiteral(factory->NewStringFromAsciiChecked("d")) .StoreAccumulatorInRegister(Register(5)) .LoadLiteral(factory->NewStringFromAsciiChecked("e")) .StoreAccumulatorInRegister(Register(6)) .LoadLiteral(factory->NewStringFromAsciiChecked("f")) .StoreAccumulatorInRegister(Register(7)) .LoadLiteral(factory->NewStringFromAsciiChecked("g")) .StoreAccumulatorInRegister(Register(8)) .LoadLiteral(factory->NewStringFromAsciiChecked("h")) .StoreAccumulatorInRegister(Register(9)) .LoadLiteral(factory->NewStringFromAsciiChecked("i")) .StoreAccumulatorInRegister(Register(10)) .LoadLiteral(factory->NewStringFromAsciiChecked("j")) .StoreAccumulatorInRegister(Register(11)) .Call(Register(0), Register(1), 11, 0, tail_call_mode) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array, vector); auto callable = tester.GetCallable
>(); Handle
object = InterpreterTester::NewObject( "new (function Obj() { " " this.prefix = \"prefix_\";" " this.func = function(a, b, c, d, e, f, g, h, i, j) {" " return this.prefix + a + b + c + d + e + f + g + h + i + j;" " }" "})()"); Handle
return_val = callable(object).ToHandleChecked(); Handle
expected = factory->NewStringFromAsciiChecked("prefix_abcdefghij"); CHECK(i::String::cast(*return_val)->Equals(*expected)); } } TEST(InterpreterCall) { TestInterpreterCall(TailCallMode::kDisallow); } TEST(InterpreterTailCall) { TestInterpreterCall(TailCallMode::kAllow); } static BytecodeArrayBuilder& SetRegister(BytecodeArrayBuilder& builder, Register reg, int value, Register scratch) { return builder.StoreAccumulatorInRegister(scratch) .LoadLiteral(Smi::FromInt(value)) .StoreAccumulatorInRegister(reg) .LoadAccumulatorWithRegister(scratch); } static BytecodeArrayBuilder& IncrementRegister(BytecodeArrayBuilder& builder, Register reg, int value, Register scratch) { return builder.StoreAccumulatorInRegister(scratch) .LoadLiteral(Smi::FromInt(value)) .BinaryOperation(Token::Value::ADD, reg) .StoreAccumulatorInRegister(reg) .LoadAccumulatorWithRegister(scratch); } TEST(InterpreterJumps) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 2); Register reg(0), scratch(1); BytecodeLabel label[3]; builder.LoadLiteral(Smi::FromInt(0)) .StoreAccumulatorInRegister(reg) .Jump(&label[1]); SetRegister(builder, reg, 1024, scratch).Bind(&label[0]); IncrementRegister(builder, reg, 1, scratch).Jump(&label[2]); SetRegister(builder, reg, 2048, scratch).Bind(&label[1]); IncrementRegister(builder, reg, 2, scratch).Jump(&label[0]); SetRegister(builder, reg, 4096, scratch).Bind(&label[2]); IncrementRegister(builder, reg, 4, scratch) .LoadAccumulatorWithRegister(reg) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_value)->value(), 7); } TEST(InterpreterConditionalJumps) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 2); Register reg(0), scratch(1); BytecodeLabel label[2]; BytecodeLabel done, done1; builder.LoadLiteral(Smi::FromInt(0)) .StoreAccumulatorInRegister(reg) .LoadFalse() .JumpIfFalse(&label[0]); IncrementRegister(builder, reg, 1024, scratch) .Bind(&label[0]) .LoadTrue() .JumpIfFalse(&done); IncrementRegister(builder, reg, 1, scratch).LoadTrue().JumpIfTrue(&label[1]); IncrementRegister(builder, reg, 2048, scratch).Bind(&label[1]); IncrementRegister(builder, reg, 2, scratch).LoadFalse().JumpIfTrue(&done1); IncrementRegister(builder, reg, 4, scratch) .LoadAccumulatorWithRegister(reg) .Bind(&done) .Bind(&done1) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_value)->value(), 7); } TEST(InterpreterConditionalJumps2) { // TODO(oth): Add tests for all conditional jumps near and far. HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 2); Register reg(0), scratch(1); BytecodeLabel label[2]; BytecodeLabel done, done1; builder.LoadLiteral(Smi::FromInt(0)) .StoreAccumulatorInRegister(reg) .LoadFalse() .JumpIfFalse(&label[0]); IncrementRegister(builder, reg, 1024, scratch) .Bind(&label[0]) .LoadTrue() .JumpIfFalse(&done); IncrementRegister(builder, reg, 1, scratch).LoadTrue().JumpIfTrue(&label[1]); IncrementRegister(builder, reg, 2048, scratch).Bind(&label[1]); IncrementRegister(builder, reg, 2, scratch).LoadFalse().JumpIfTrue(&done1); IncrementRegister(builder, reg, 4, scratch) .LoadAccumulatorWithRegister(reg) .Bind(&done) .Bind(&done1) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_value)->value(), 7); } TEST(InterpreterJumpConstantWith16BitOperand) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 257); Register reg(0), scratch(256); BytecodeLabel done, fake; builder.LoadLiteral(Smi::FromInt(0)); builder.StoreAccumulatorInRegister(reg); // Consume all 8-bit operands for (int i = 1; i <= 256; i++) { builder.LoadLiteral(handles.main_isolate()->factory()->NewNumber(i)); builder.BinaryOperation(Token::Value::ADD, reg); builder.StoreAccumulatorInRegister(reg); } builder.Jump(&done); // Emit more than 16-bit immediate operands worth of code to jump over. builder.Bind(&fake); for (int i = 0; i < 6600; i++) { builder.LoadLiteral(Smi::FromInt(0)); // 1-byte builder.BinaryOperation(Token::Value::ADD, scratch); // 4-bytes builder.StoreAccumulatorInRegister(scratch); // 4-bytes builder.MoveRegister(scratch, reg); // 6-bytes } builder.Bind(&done); builder.LoadAccumulatorWithRegister(reg); builder.Return(); Handle
bytecode_array = builder.ToBytecodeArray(); BytecodeArrayIterator iterator(bytecode_array); bool found_16bit_constant_jump = false; while (!iterator.done()) { if (iterator.current_bytecode() == Bytecode::kJumpConstant && iterator.current_operand_scale() == OperandScale::kDouble) { found_16bit_constant_jump = true; break; } iterator.Advance(); } CHECK(found_16bit_constant_jump); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_value)->value(), 256.0 / 2 * (1 + 256)); } TEST(InterpreterJumpWith32BitOperand) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 1); Register reg(0); BytecodeLabel done; builder.LoadLiteral(Smi::FromInt(0)); builder.StoreAccumulatorInRegister(reg); // Consume all 16-bit constant pool entries for (int i = 1; i <= 65536; i++) { builder.LoadLiteral(handles.main_isolate()->factory()->NewNumber(i)); } builder.Jump(&done); builder.LoadLiteral(Smi::FromInt(0)); builder.Bind(&done); builder.Return(); Handle
bytecode_array = builder.ToBytecodeArray(); BytecodeArrayIterator iterator(bytecode_array); bool found_32bit_jump = false; while (!iterator.done()) { if (iterator.current_bytecode() == Bytecode::kJump && iterator.current_operand_scale() == OperandScale::kQuadruple) { found_32bit_jump = true; break; } iterator.Advance(); } CHECK(found_32bit_jump); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_value)->value(), 65536.0); } static const Token::Value kComparisonTypes[] = { Token::Value::EQ, Token::Value::NE, Token::Value::EQ_STRICT, Token::Value::LT, Token::Value::LTE, Token::Value::GT, Token::Value::GTE}; template
bool CompareC(Token::Value op, T lhs, T rhs, bool types_differed = false) { switch (op) { case Token::Value::EQ: return lhs == rhs; case Token::Value::NE: return lhs != rhs; case Token::Value::EQ_STRICT: return (lhs == rhs) && !types_differed; case Token::Value::NE_STRICT: return (lhs != rhs) || types_differed; case Token::Value::LT: return lhs < rhs; case Token::Value::LTE: return lhs <= rhs; case Token::Value::GT: return lhs > rhs; case Token::Value::GTE: return lhs >= rhs; default: UNREACHABLE(); return false; } } TEST(InterpreterSmiComparisons) { // NB Constants cover 31-bit space. int inputs[] = {v8::internal::kMinInt / 2, v8::internal::kMinInt / 4, -108733832, -999, -42, -2, -1, 0, +1, +2, 42, 12345678, v8::internal::kMaxInt / 4, v8::internal::kMaxInt / 2}; for (size_t c = 0; c < arraysize(kComparisonTypes); c++) { Token::Value comparison = kComparisonTypes[c]; for (size_t i = 0; i < arraysize(inputs); i++) { for (size_t j = 0; j < arraysize(inputs); j++) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 1); Register r0(0); builder.LoadLiteral(Smi::FromInt(inputs[i])) .StoreAccumulatorInRegister(r0) .LoadLiteral(Smi::FromInt(inputs[j])) .CompareOperation(comparison, r0) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), CompareC(comparison, inputs[i], inputs[j])); } } } } TEST(InterpreterHeapNumberComparisons) { double inputs[] = {std::numeric_limits
::min(), std::numeric_limits
::max(), -0.001, 0.01, 0.1000001, 1e99, -1e-99}; for (size_t c = 0; c < arraysize(kComparisonTypes); c++) { Token::Value comparison = kComparisonTypes[c]; for (size_t i = 0; i < arraysize(inputs); i++) { for (size_t j = 0; j < arraysize(inputs); j++) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 1); Register r0(0); builder.LoadLiteral(factory->NewHeapNumber(inputs[i])) .StoreAccumulatorInRegister(r0) .LoadLiteral(factory->NewHeapNumber(inputs[j])) .CompareOperation(comparison, r0) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), CompareC(comparison, inputs[i], inputs[j])); } } } } TEST(InterpreterStringComparisons) { std::string inputs[] = {"A", "abc", "z", "", "Foo!", "Foo"}; for (size_t c = 0; c < arraysize(kComparisonTypes); c++) { Token::Value comparison = kComparisonTypes[c]; for (size_t i = 0; i < arraysize(inputs); i++) { for (size_t j = 0; j < arraysize(inputs); j++) { const char* lhs = inputs[i].c_str(); const char* rhs = inputs[j].c_str(); HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 1); Register r0(0); builder.LoadLiteral(factory->NewStringFromAsciiChecked(lhs)) .StoreAccumulatorInRegister(r0) .LoadLiteral(factory->NewStringFromAsciiChecked(rhs)) .CompareOperation(comparison, r0) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), CompareC(comparison, inputs[i], inputs[j])); } } } } TEST(InterpreterMixedComparisons) { // This test compares a HeapNumber with a String. The latter is // convertible to a HeapNumber so comparison will be between numeric // values except for the strict comparisons where no conversion is // performed. const char* inputs[] = {"-1.77", "-40.333", "0.01", "55.77e5", "2.01"}; i::UnicodeCache unicode_cache; for (size_t c = 0; c < arraysize(kComparisonTypes); c++) { Token::Value comparison = kComparisonTypes[c]; for (size_t i = 0; i < arraysize(inputs); i++) { for (size_t j = 0; j < arraysize(inputs); j++) { for (int pass = 0; pass < 2; pass++) { const char* lhs_cstr = inputs[i]; const char* rhs_cstr = inputs[j]; double lhs = StringToDouble(&unicode_cache, lhs_cstr, i::ConversionFlags::NO_FLAGS); double rhs = StringToDouble(&unicode_cache, rhs_cstr, i::ConversionFlags::NO_FLAGS); HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 1); Register r0(0); if (pass == 0) { // Comparison with HeapNumber on the lhs and String on the rhs builder.LoadLiteral(factory->NewNumber(lhs)) .StoreAccumulatorInRegister(r0) .LoadLiteral(factory->NewStringFromAsciiChecked(rhs_cstr)) .CompareOperation(comparison, r0) .Return(); } else { // Comparison with HeapNumber on the rhs and String on the lhs builder.LoadLiteral(factory->NewStringFromAsciiChecked(lhs_cstr)) .StoreAccumulatorInRegister(r0) .LoadLiteral(factory->NewNumber(rhs)) .CompareOperation(comparison, r0) .Return(); } Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), CompareC(comparison, lhs, rhs, true)); } } } } } TEST(InterpreterStrictNotEqual) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); const char* code_snippet = "function f(lhs, rhs) {\n" " return lhs !== rhs;\n" "}\n" "f(0, 0);\n"; InterpreterTester tester(handles.main_isolate(), code_snippet); auto callable = tester.GetCallable
, Handle
>(); // Test passing different types. const char* inputs[] = {"-1.77", "-40.333", "0.01", "55.77e5", "2.01"}; i::UnicodeCache unicode_cache; for (size_t i = 0; i < arraysize(inputs); i++) { for (size_t j = 0; j < arraysize(inputs); j++) { double lhs = StringToDouble(&unicode_cache, inputs[i], i::ConversionFlags::NO_FLAGS); double rhs = StringToDouble(&unicode_cache, inputs[j], i::ConversionFlags::NO_FLAGS); Handle
lhs_obj = factory->NewNumber(lhs); Handle
rhs_obj = factory->NewStringFromAsciiChecked(inputs[j]); Handle
return_value = callable(lhs_obj, rhs_obj).ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), CompareC(Token::Value::NE_STRICT, lhs, rhs, true)); } } // Test passing string types. const char* inputs_str[] = {"A", "abc", "z", "", "Foo!", "Foo"}; for (size_t i = 0; i < arraysize(inputs_str); i++) { for (size_t j = 0; j < arraysize(inputs_str); j++) { Handle
lhs_obj = factory->NewStringFromAsciiChecked(inputs_str[i]); Handle
rhs_obj = factory->NewStringFromAsciiChecked(inputs_str[j]); Handle
return_value = callable(lhs_obj, rhs_obj).ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), CompareC(Token::Value::NE_STRICT, inputs_str[i], inputs_str[j])); } } // Test passing doubles. double inputs_number[] = {std::numeric_limits
::min(), std::numeric_limits
::max(), -0.001, 0.01, 0.1000001, 1e99, -1e-99}; for (size_t i = 0; i < arraysize(inputs_number); i++) { for (size_t j = 0; j < arraysize(inputs_number); j++) { Handle
lhs_obj = factory->NewNumber(inputs_number[i]); Handle
rhs_obj = factory->NewNumber(inputs_number[j]); Handle
return_value = callable(lhs_obj, rhs_obj).ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), CompareC(Token::Value::NE_STRICT, inputs_number[i], inputs_number[j])); } } } TEST(InterpreterInstanceOf) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); Handle
name = factory->NewStringFromAsciiChecked("cons"); Handle
func = factory->NewFunction(name); Handle
instance = factory->NewJSObject(func); Handle
other = factory->NewNumber(3.3333); Handle
cases[] = {Handle
::cast(instance), other}; for (size_t i = 0; i < arraysize(cases); i++) { bool expected_value = (i == 0); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 1); Register r0(0); builder.LoadLiteral(cases[i]); builder.StoreAccumulatorInRegister(r0) .LoadLiteral(func) .CompareOperation(Token::Value::INSTANCEOF, r0) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), expected_value); } } TEST(InterpreterTestIn) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); // Allocate an array Handle
array = factory->NewJSArray(0, i::ElementsKind::FAST_SMI_ELEMENTS); // Check for these properties on the array object const char* properties[] = {"length", "fuzzle", "x", "0"}; for (size_t i = 0; i < arraysize(properties); i++) { bool expected_value = (i == 0); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 1); Register r0(0); builder.LoadLiteral(factory->NewStringFromAsciiChecked(properties[i])) .StoreAccumulatorInRegister(r0) .LoadLiteral(Handle
::cast(array)) .CompareOperation(Token::Value::IN, r0) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), expected_value); } } TEST(InterpreterUnaryNot) { HandleAndZoneScope handles; for (size_t i = 1; i < 10; i++) { bool expected_value = ((i & 1) == 1); BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 0); Register r0(0); builder.LoadFalse(); for (size_t j = 0; j < i; j++) { builder.LogicalNot(); } builder.Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), expected_value); } } static void LoadAny(BytecodeArrayBuilder* builder, v8::internal::Factory* factory, Handle
obj) { if (obj->IsOddball()) { if (obj->SameValue(*factory->true_value())) { builder->LoadTrue(); } else if (obj->SameValue(*factory->false_value())) { builder->LoadFalse(); } else if (obj->SameValue(*factory->the_hole_value())) { builder->LoadTheHole(); } else if (obj->SameValue(*factory->null_value())) { builder->LoadNull(); } else if (obj->SameValue(*factory->undefined_value())) { builder->LoadUndefined(); } else { UNREACHABLE(); } } else if (obj->IsSmi()) { builder->LoadLiteral(*Handle
::cast(obj)); } else { builder->LoadLiteral(obj); } } TEST(InterpreterUnaryNotNonBoolean) { HandleAndZoneScope handles; i::Factory* factory = handles.main_isolate()->factory(); std::pair
, bool> object_type_tuples[] = { std::make_pair(factory->undefined_value(), true), std::make_pair(factory->null_value(), true), std::make_pair(factory->false_value(), true), std::make_pair(factory->true_value(), false), std::make_pair(factory->NewNumber(9.1), false), std::make_pair(factory->NewNumberFromInt(0), true), std::make_pair( Handle
::cast(factory->NewStringFromStaticChars("hello")), false), std::make_pair( Handle
::cast(factory->NewStringFromStaticChars("")), true), }; for (size_t i = 0; i < arraysize(object_type_tuples); i++) { BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 0, 0, 0); Register r0(0); LoadAny(&builder, factory, object_type_tuples[i].first); builder.LogicalNot(); builder.Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->IsBoolean()); CHECK_EQ(return_value->BooleanValue(), object_type_tuples[i].second); } } TEST(InterpreterTypeof) { HandleAndZoneScope handles; std::pair
typeof_vals[] = { std::make_pair("return typeof undefined;", "undefined"), std::make_pair("return typeof null;", "object"), std::make_pair("return typeof true;", "boolean"), std::make_pair("return typeof false;", "boolean"), std::make_pair("return typeof 9.1;", "number"), std::make_pair("return typeof 7771;", "number"), std::make_pair("return typeof 'hello';", "string"), std::make_pair("return typeof global_unallocated;", "undefined"), }; for (size_t i = 0; i < arraysize(typeof_vals); i++) { std::string source(InterpreterTester::SourceForBody(typeof_vals[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = Handle
::cast(callable().ToHandleChecked()); auto actual = return_value->ToCString(); CHECK_EQ(strcmp(&actual[0], typeof_vals[i].second), 0); } } TEST(InterpreterCallRuntime) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 2); builder.LoadLiteral(Smi::FromInt(15)) .StoreAccumulatorInRegister(Register(0)) .LoadLiteral(Smi::FromInt(40)) .StoreAccumulatorInRegister(Register(1)) .CallRuntime(Runtime::kAdd, Register(0), 2) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(55)); } TEST(InterpreterInvokeIntrinsic) { HandleAndZoneScope handles; BytecodeArrayBuilder builder(handles.main_isolate(), handles.main_zone(), 1, 0, 2); builder.LoadLiteral(Smi::FromInt(15)) .StoreAccumulatorInRegister(Register(0)) .CallRuntime(Runtime::kInlineIsArray, Register(0), 1) .Return(); Handle
bytecode_array = builder.ToBytecodeArray(); InterpreterTester tester(handles.main_isolate(), bytecode_array); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val->IsBoolean()); CHECK_EQ(return_val->BooleanValue(), false); } TEST(InterpreterFunctionLiteral) { HandleAndZoneScope handles; // Test calling a function literal. std::string source( "function " + InterpreterTester::function_name() + "(a) {\n" " return (function(x){ return x + 2; })(a);\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable
>(); Handle
return_val = callable( Handle
(Smi::FromInt(3), handles.main_isolate())).ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(5)); } TEST(InterpreterRegExpLiterals) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> literals[] = { std::make_pair("return /abd/.exec('cccabbdd');\n", factory->null_value()), std::make_pair("return /ab+d/.exec('cccabbdd')[0];\n", factory->NewStringFromStaticChars("abbd")), std::make_pair("return /AbC/i.exec('ssaBC')[0];\n", factory->NewStringFromStaticChars("aBC")), std::make_pair("return 'ssaBC'.match(/AbC/i)[0];\n", factory->NewStringFromStaticChars("aBC")), std::make_pair("return 'ssaBCtAbC'.match(/(AbC)/gi)[1];\n", factory->NewStringFromStaticChars("AbC")), }; for (size_t i = 0; i < arraysize(literals); i++) { std::string source(InterpreterTester::SourceForBody(literals[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*literals[i].second)); } } TEST(InterpreterArrayLiterals) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> literals[] = { std::make_pair("return [][0];\n", factory->undefined_value()), std::make_pair("return [1, 3, 2][1];\n", handle(Smi::FromInt(3), isolate)), std::make_pair("return ['a', 'b', 'c'][2];\n", factory->NewStringFromStaticChars("c")), std::make_pair("var a = 100; return [a, a + 1, a + 2, a + 3][2];\n", handle(Smi::FromInt(102), isolate)), std::make_pair("return [[1, 2, 3], ['a', 'b', 'c']][1][0];\n", factory->NewStringFromStaticChars("a")), std::make_pair("var t = 't'; return [[t, t + 'est'], [1 + t]][0][1];\n", factory->NewStringFromStaticChars("test")) }; for (size_t i = 0; i < arraysize(literals); i++) { std::string source(InterpreterTester::SourceForBody(literals[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*literals[i].second)); } } TEST(InterpreterObjectLiterals) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> literals[] = { std::make_pair("return { }.name;", factory->undefined_value()), std::make_pair("return { name: 'string', val: 9.2 }.name;", factory->NewStringFromStaticChars("string")), std::make_pair("var a = 15; return { name: 'string', val: a }.val;", handle(Smi::FromInt(15), isolate)), std::make_pair("var a = 5; return { val: a, val: a + 1 }.val;", handle(Smi::FromInt(6), isolate)), std::make_pair("return { func: function() { return 'test' } }.func();", factory->NewStringFromStaticChars("test")), std::make_pair("return { func(a) { return a + 'st'; } }.func('te');", factory->NewStringFromStaticChars("test")), std::make_pair("return { get a() { return 22; } }.a;", handle(Smi::FromInt(22), isolate)), std::make_pair("var a = { get b() { return this.x + 't'; },\n" " set b(val) { this.x = val + 's' } };\n" "a.b = 'te';\n" "return a.b;", factory->NewStringFromStaticChars("test")), std::make_pair("var a = 123; return { 1: a }[1];", handle(Smi::FromInt(123), isolate)), std::make_pair("return Object.getPrototypeOf({ __proto__: null });", factory->null_value()), std::make_pair("var a = 'test'; return { [a]: 1 }.test;", handle(Smi::FromInt(1), isolate)), std::make_pair("var a = 'test'; return { b: a, [a]: a + 'ing' }['test']", factory->NewStringFromStaticChars("testing")), std::make_pair("var a = 'proto_str';\n" "var b = { [a]: 1, __proto__: { var : a } };\n" "return Object.getPrototypeOf(b).var", factory->NewStringFromStaticChars("proto_str")), std::make_pair("var n = 'name';\n" "return { [n]: 'val', get a() { return 987 } }['a'];", handle(Smi::FromInt(987), isolate)), }; for (size_t i = 0; i < arraysize(literals); i++) { std::string source(InterpreterTester::SourceForBody(literals[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*literals[i].second)); } } TEST(InterpreterConstruct) { HandleAndZoneScope handles; std::string source( "function counter() { this.count = 0; }\n" "function " + InterpreterTester::function_name() + "() {\n" " var c = new counter();\n" " return c.count;\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(0)); } TEST(InterpreterConstructWithArgument) { HandleAndZoneScope handles; std::string source( "function counter(arg0) { this.count = 17; this.x = arg0; }\n" "function " + InterpreterTester::function_name() + "() {\n" " var c = new counter(3);\n" " return c.x;\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(3)); } TEST(InterpreterConstructWithArguments) { HandleAndZoneScope handles; std::string source( "function counter(arg0, arg1) {\n" " this.count = 7; this.x = arg0; this.y = arg1;\n" "}\n" "function " + InterpreterTester::function_name() + "() {\n" " var c = new counter(3, 5);\n" " return c.count + c.x + c.y;\n" "}"); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(15)); } TEST(InterpreterContextVariables) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); std::ostringstream unique_vars; for (int i = 0; i < 250; i++) { unique_vars << "var a" << i << " = 0;"; } std::pair
> context_vars[] = { std::make_pair("var a; (function() { a = 1; })(); return a;", handle(Smi::FromInt(1), isolate)), std::make_pair("var a = 10; (function() { a; })(); return a;", handle(Smi::FromInt(10), isolate)), std::make_pair("var a = 20; var b = 30;\n" "return (function() { return a + b; })();", handle(Smi::FromInt(50), isolate)), std::make_pair("'use strict'; let a = 1;\n" "{ let b = 2; return (function() { return a + b; })(); }", handle(Smi::FromInt(3), isolate)), std::make_pair("'use strict'; let a = 10;\n" "{ let b = 20; var c = function() { [a, b] };\n" " return a + b; }", handle(Smi::FromInt(30), isolate)), std::make_pair("'use strict';" + unique_vars.str() + "eval(); var b = 100; return b;", handle(Smi::FromInt(100), isolate)), }; for (size_t i = 0; i < arraysize(context_vars); i++) { std::string source( InterpreterTester::SourceForBody(context_vars[i].first.c_str())); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*context_vars[i].second)); } } TEST(InterpreterContextParameters) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); std::pair
> context_params[] = { std::make_pair("return (function() { return arg1; })();", handle(Smi::FromInt(1), isolate)), std::make_pair("(function() { arg1 = 4; })(); return arg1;", handle(Smi::FromInt(4), isolate)), std::make_pair("(function() { arg3 = arg2 - arg1; })(); return arg3;", handle(Smi::FromInt(1), isolate)), }; for (size_t i = 0; i < arraysize(context_params); i++) { std::string source = "function " + InterpreterTester::function_name() + "(arg1, arg2, arg3) {" + context_params[i].first + "}"; InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable
, Handle
, Handle
>(); Handle
a1 = handle(Smi::FromInt(1), isolate); Handle
a2 = handle(Smi::FromInt(2), isolate); Handle
a3 = handle(Smi::FromInt(3), isolate); Handle
return_value = callable(a1, a2, a3).ToHandleChecked(); CHECK(return_value->SameValue(*context_params[i].second)); } } TEST(InterpreterOuterContextVariables) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); std::pair
> context_vars[] = { std::make_pair("return outerVar * innerArg;", handle(Smi::FromInt(200), isolate)), std::make_pair("outerVar = innerArg; return outerVar", handle(Smi::FromInt(20), isolate)), }; std::string header( "function Outer() {" " var outerVar = 10;" " function Inner(innerArg) {" " this.innerFunc = function() { "); std::string footer( " }}" " this.getInnerFunc = function() { return new Inner(20).innerFunc; }" "}" "var f = new Outer().getInnerFunc();"); for (size_t i = 0; i < arraysize(context_vars); i++) { std::string source = header + context_vars[i].first + footer; InterpreterTester tester(handles.main_isolate(), source.c_str(), "*"); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*context_vars[i].second)); } } TEST(InterpreterComma) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> literals[] = { std::make_pair("var a; return 0, a;\n", factory->undefined_value()), std::make_pair("return 'a', 2.2, 3;\n", handle(Smi::FromInt(3), isolate)), std::make_pair("return 'a', 'b', 'c';\n", factory->NewStringFromStaticChars("c")), std::make_pair("return 3.2, 2.3, 4.5;\n", factory->NewNumber(4.5)), std::make_pair("var a = 10; return b = a, b = b+1;\n", handle(Smi::FromInt(11), isolate)), std::make_pair("var a = 10; return b = a, b = b+1, b + 10;\n", handle(Smi::FromInt(21), isolate))}; for (size_t i = 0; i < arraysize(literals); i++) { std::string source(InterpreterTester::SourceForBody(literals[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*literals[i].second)); } } TEST(InterpreterLogicalOr) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> literals[] = { std::make_pair("var a, b; return a || b;\n", factory->undefined_value()), std::make_pair("var a, b = 10; return a || b;\n", handle(Smi::FromInt(10), isolate)), std::make_pair("var a = '0', b = 10; return a || b;\n", factory->NewStringFromStaticChars("0")), std::make_pair("return 0 || 3.2;\n", factory->NewNumber(3.2)), std::make_pair("return 'a' || 0;\n", factory->NewStringFromStaticChars("a")), std::make_pair("var a = '0', b = 10; return (a == 0) || b;\n", factory->true_value())}; for (size_t i = 0; i < arraysize(literals); i++) { std::string source(InterpreterTester::SourceForBody(literals[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*literals[i].second)); } } TEST(InterpreterLogicalAnd) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> literals[] = { std::make_pair("var a, b = 10; return a && b;\n", factory->undefined_value()), std::make_pair("var a = 0, b = 10; return a && b / a;\n", handle(Smi::FromInt(0), isolate)), std::make_pair("var a = '0', b = 10; return a && b;\n", handle(Smi::FromInt(10), isolate)), std::make_pair("return 0.0 && 3.2;\n", handle(Smi::FromInt(0), isolate)), std::make_pair("return 'a' && 'b';\n", factory->NewStringFromStaticChars("b")), std::make_pair("return 'a' && 0 || 'b', 'c';\n", factory->NewStringFromStaticChars("c")), std::make_pair("var x = 1, y = 3; return x && 0 + 1 || y;\n", handle(Smi::FromInt(1), isolate)), std::make_pair("var x = 1, y = 3; return (x == 1) && (3 == 3) || y;\n", factory->true_value())}; for (size_t i = 0; i < arraysize(literals); i++) { std::string source(InterpreterTester::SourceForBody(literals[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*literals[i].second)); } } TEST(InterpreterTryCatch) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); std::pair
> catches[] = { std::make_pair("var a = 1; try { a = 2 } catch(e) { a = 3 }; return a;", handle(Smi::FromInt(2), isolate)), std::make_pair("var a; try { undef.x } catch(e) { a = 2 }; return a;", handle(Smi::FromInt(2), isolate)), std::make_pair("var a; try { throw 1 } catch(e) { a = e + 2 }; return a;", handle(Smi::FromInt(3), isolate)), std::make_pair("var a; try { throw 1 } catch(e) { a = e + 2 };" " try { throw a } catch(e) { a = e + 3 }; return a;", handle(Smi::FromInt(6), isolate)), }; for (size_t i = 0; i < arraysize(catches); i++) { std::string source(InterpreterTester::SourceForBody(catches[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*catches[i].second)); } } TEST(InterpreterTryFinally) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> finallies[] = { std::make_pair( "var a = 1; try { a = a + 1; } finally { a = a + 2; }; return a;", factory->NewStringFromStaticChars("R4")), std::make_pair( "var a = 1; try { a = 2; return 23; } finally { a = 3 }; return a;", factory->NewStringFromStaticChars("R23")), std::make_pair( "var a = 1; try { a = 2; throw 23; } finally { a = 3 }; return a;", factory->NewStringFromStaticChars("E23")), std::make_pair( "var a = 1; try { a = 2; throw 23; } finally { return a; };", factory->NewStringFromStaticChars("R2")), std::make_pair( "var a = 1; try { a = 2; throw 23; } finally { throw 42; };", factory->NewStringFromStaticChars("E42")), std::make_pair("var a = 1; for (var i = 10; i < 20; i += 5) {" " try { a = 2; break; } finally { a = 3; }" "} return a + i;", factory->NewStringFromStaticChars("R13")), std::make_pair("var a = 1; for (var i = 10; i < 20; i += 5) {" " try { a = 2; continue; } finally { a = 3; }" "} return a + i;", factory->NewStringFromStaticChars("R23")), std::make_pair("var a = 1; try { a = 2;" " try { a = 3; throw 23; } finally { a = 4; }" "} catch(e) { a = a + e; } return a;", factory->NewStringFromStaticChars("R27")), std::make_pair("var func_name;" "function tcf2(a) {" " try { throw new Error('boom');} " " catch(e) {return 153; } " " finally {func_name = tcf2.name;}" "}" "tcf2();" "return func_name;", factory->NewStringFromStaticChars("Rtcf2")), }; const char* try_wrapper = "(function() { try { return 'R' + f() } catch(e) { return 'E' + e }})()"; for (size_t i = 0; i < arraysize(finallies); i++) { std::string source(InterpreterTester::SourceForBody(finallies[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); tester.GetCallable<>(); Handle
wrapped = v8::Utils::OpenHandle(*CompileRun(try_wrapper)); CHECK(wrapped->SameValue(*finallies[i].second)); } } TEST(InterpreterThrow) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> throws[] = { std::make_pair("throw undefined;\n", factory->undefined_value()), std::make_pair("throw 1;\n", handle(Smi::FromInt(1), isolate)), std::make_pair("throw 'Error';\n", factory->NewStringFromStaticChars("Error")), std::make_pair("var a = true; if (a) { throw 'Error'; }\n", factory->NewStringFromStaticChars("Error")), std::make_pair("var a = false; if (a) { throw 'Error'; }\n", factory->undefined_value()), std::make_pair("throw 'Error1'; throw 'Error2'\n", factory->NewStringFromStaticChars("Error1")), }; const char* try_wrapper = "(function() { try { f(); } catch(e) { return e; }})()"; for (size_t i = 0; i < arraysize(throws); i++) { std::string source(InterpreterTester::SourceForBody(throws[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); tester.GetCallable<>(); Handle
thrown_obj = v8::Utils::OpenHandle(*CompileRun(try_wrapper)); CHECK(thrown_obj->SameValue(*throws[i].second)); } } TEST(InterpreterCountOperators) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> count_ops[] = { std::make_pair("var a = 1; return ++a;", handle(Smi::FromInt(2), isolate)), std::make_pair("var a = 1; return a++;", handle(Smi::FromInt(1), isolate)), std::make_pair("var a = 5; return --a;", handle(Smi::FromInt(4), isolate)), std::make_pair("var a = 5; return a--;", handle(Smi::FromInt(5), isolate)), std::make_pair("var a = 5.2; return --a;", factory->NewHeapNumber(4.2)), std::make_pair("var a = 'string'; return ++a;", factory->nan_value()), std::make_pair("var a = 'string'; return a--;", factory->nan_value()), std::make_pair("var a = true; return ++a;", handle(Smi::FromInt(2), isolate)), std::make_pair("var a = false; return a--;", handle(Smi::FromInt(0), isolate)), std::make_pair("var a = { val: 11 }; return ++a.val;", handle(Smi::FromInt(12), isolate)), std::make_pair("var a = { val: 11 }; return a.val--;", handle(Smi::FromInt(11), isolate)), std::make_pair("var a = { val: 11 }; return ++a.val;", handle(Smi::FromInt(12), isolate)), std::make_pair("var name = 'val'; var a = { val: 22 }; return --a[name];", handle(Smi::FromInt(21), isolate)), std::make_pair("var name = 'val'; var a = { val: 22 }; return a[name]++;", handle(Smi::FromInt(22), isolate)), std::make_pair("var a = 1; (function() { a = 2 })(); return ++a;", handle(Smi::FromInt(3), isolate)), std::make_pair("var a = 1; (function() { a = 2 })(); return a--;", handle(Smi::FromInt(2), isolate)), std::make_pair("var i = 5; while(i--) {}; return i;", handle(Smi::FromInt(-1), isolate)), std::make_pair("var i = 1; if(i--) { return 1; } else { return 2; };", handle(Smi::FromInt(1), isolate)), std::make_pair("var i = -2; do {} while(i++) {}; return i;", handle(Smi::FromInt(1), isolate)), std::make_pair("var i = -1; for(; i++; ) {}; return i", handle(Smi::FromInt(1), isolate)), std::make_pair("var i = 20; switch(i++) {\n" " case 20: return 1;\n" " default: return 2;\n" "}", handle(Smi::FromInt(1), isolate)), }; for (size_t i = 0; i < arraysize(count_ops); i++) { std::string source(InterpreterTester::SourceForBody(count_ops[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*count_ops[i].second)); } } TEST(InterpreterGlobalCountOperators) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); std::pair
> count_ops[] = { std::make_pair("var global = 100;function f(){ return ++global; }", handle(Smi::FromInt(101), isolate)), std::make_pair("var global = 100; function f(){ return --global; }", handle(Smi::FromInt(99), isolate)), std::make_pair("var global = 100; function f(){ return global++; }", handle(Smi::FromInt(100), isolate)), std::make_pair("unallocated = 200; function f(){ return ++unallocated; }", handle(Smi::FromInt(201), isolate)), std::make_pair("unallocated = 200; function f(){ return --unallocated; }", handle(Smi::FromInt(199), isolate)), std::make_pair("unallocated = 200; function f(){ return unallocated++; }", handle(Smi::FromInt(200), isolate)), }; for (size_t i = 0; i < arraysize(count_ops); i++) { InterpreterTester tester(handles.main_isolate(), count_ops[i].first); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*count_ops[i].second)); } } TEST(InterpreterCompoundExpressions) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
> compound_expr[] = { std::make_pair("var a = 1; a += 2; return a;", Handle
(Smi::FromInt(3), isolate)), std::make_pair("var a = 10; a /= 2; return a;", Handle
(Smi::FromInt(5), isolate)), std::make_pair("var a = 'test'; a += 'ing'; return a;", factory->NewStringFromStaticChars("testing")), std::make_pair("var a = { val: 2 }; a.val *= 2; return a.val;", Handle
(Smi::FromInt(4), isolate)), std::make_pair("var a = 1; (function f() { a = 2; })(); a += 24;" "return a;", Handle
(Smi::FromInt(26), isolate)), }; for (size_t i = 0; i < arraysize(compound_expr); i++) { std::string source( InterpreterTester::SourceForBody(compound_expr[i].first)); InterpreterTester tester(handles.main_isolate(), source.c_str()); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*compound_expr[i].second)); } } TEST(InterpreterGlobalCompoundExpressions) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); std::pair
> compound_expr[2] = { std::make_pair("var global = 100;" "function f() { global += 20; return global; }", Handle
(Smi::FromInt(120), isolate)), std::make_pair("unallocated = 100;" "function f() { unallocated -= 20; return unallocated; }", Handle
(Smi::FromInt(80), isolate)), }; for (size_t i = 0; i < arraysize(compound_expr); i++) { InterpreterTester tester(handles.main_isolate(), compound_expr[i].first); auto callable = tester.GetCallable<>(); Handle
return_value = callable().ToHandleChecked(); CHECK(return_value->SameValue(*compound_expr[i].second)); } } TEST(InterpreterCreateArguments) { HandleAndZoneScope handles; i::Isolate* isolate = handles.main_isolate(); i::Factory* factory = isolate->factory(); std::pair
create_args[] = { std::make_pair("function f() { return arguments[0]; }", 0), std::make_pair("function f(a) { return arguments[0]; }", 0), std::make_pair("function f() { return arguments[2]; }", 2), std::make_pair("function f(a) { return arguments[2]; }", 2), std::make_pair("function f(a, b, c, d) { return arguments[2]; }", 2), std::make_pair("function f(a) {" "'use strict'; return arguments[0]; }", 0), std::make_pair("function f(a, b, c, d) {" "'use strict'; return arguments[2]; }", 2), // Check arguments are mapped in sloppy mode and unmapped in strict. std::make_pair("function f(a, b, c, d) {" " c = b; return arguments[2]; }", 1), std::make_pair("function f(a, b, c, d) {" " 'use strict'; c = b; return arguments[2]; }", 2), // Check arguments for duplicate parameters in sloppy mode. std::make_pair("function f(a, a, b) { return arguments[1]; }", 1), // check rest parameters std::make_pair("function f(...restArray) { return restArray[0]; }", 0), std::make_pair("function f(a, ...restArray) { return restArray[0]; }", 1), std::make_pair("function f(a, ...restArray) { return arguments[0]; }", 0), std::make_pair("function f(a, ...restArray) { return arguments[1]; }", 1), std::make_pair("function f(a, ...restArray) { return restArray[1]; }", 2), std::make_pair("function f(a, ...arguments) { return arguments[0]; }", 1), std::make_pair("function f(a, b, ...restArray) { return restArray[0]; }", 2), }; // Test passing no arguments. for (size_t i = 0; i < arraysize(create_args); i++) { InterpreterTester tester(handles.main_isolate(), create_args[i].first); auto callable = tester.GetCallable<>(); Handle
return_val = callable().ToHandleChecked(); CHECK(return_val.is_identical_to(factory->undefined_value())); } // Test passing one argument. for (size_t i = 0; i < arraysize(create_args); i++) { InterpreterTester tester(handles.main_isolate(), create_args[i].first); auto callable = tester.GetCallable
>(); Handle
return_val = callable(handle(Smi::FromInt(40), isolate)).ToHandleChecked(); if (create_args[i].second == 0) { CHECK_EQ(Smi::cast(*return_val), Smi::FromInt(40)); } else { CHECK(return_val.is_identical_to(factory->undefined_value())); } } // Test passing three argument. for (size_t i = 0; i < arraysize(create_args); i++) { Handle
args[3] = { handle(Smi::FromInt(40), isolate), handle(Smi::FromInt(60), isolate), handle(Smi::FromInt(80), isolate), }; InterpreterTester tester(handles.main_isolate(), create_args[i].first); auto callable = tester.GetCallable
, Handle
, Handle