2015-08-18 13:46:43 +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 "src/v8.h"
|
|
|
|
|
|
|
|
#include "src/compiler.h"
|
2015-09-24 11:48:22 +00:00
|
|
|
#include "src/interpreter/bytecode-array-iterator.h"
|
2015-08-18 13:46:43 +00:00
|
|
|
#include "src/interpreter/bytecode-generator.h"
|
|
|
|
#include "src/interpreter/interpreter.h"
|
|
|
|
#include "test/cctest/cctest.h"
|
2015-10-01 13:48:05 +00:00
|
|
|
#include "test/cctest/test-feedback-vector.h"
|
2015-08-18 13:46:43 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace interpreter {
|
|
|
|
|
|
|
|
class BytecodeGeneratorHelper {
|
|
|
|
public:
|
2015-08-27 10:32:26 +00:00
|
|
|
const char* kFunctionName = "f";
|
2015-08-18 13:46:43 +00:00
|
|
|
|
2015-09-28 18:05:56 +00:00
|
|
|
static const int kLastParamIndex =
|
2015-09-02 13:03:06 +00:00
|
|
|
-InterpreterFrameConstants::kLastParamFromRegisterPointer / kPointerSize;
|
|
|
|
|
2015-08-18 13:46:43 +00:00
|
|
|
BytecodeGeneratorHelper() {
|
2015-09-09 15:46:04 +00:00
|
|
|
i::FLAG_vector_stores = true;
|
2015-08-18 13:46:43 +00:00
|
|
|
i::FLAG_ignition = true;
|
2015-10-15 10:35:18 +00:00
|
|
|
i::FLAG_ignition_fake_try_catch = true;
|
2015-09-10 16:21:34 +00:00
|
|
|
i::FLAG_ignition_filter = StrDup(kFunctionName);
|
|
|
|
i::FLAG_always_opt = false;
|
2015-10-02 18:13:41 +00:00
|
|
|
i::FLAG_allow_natives_syntax = true;
|
2015-08-18 13:46:43 +00:00
|
|
|
CcTest::i_isolate()->interpreter()->Initialize();
|
|
|
|
}
|
|
|
|
|
2015-10-01 13:48:05 +00:00
|
|
|
Isolate* isolate() { return CcTest::i_isolate(); }
|
2015-09-02 13:03:06 +00:00
|
|
|
Factory* factory() { return CcTest::i_isolate()->factory(); }
|
|
|
|
|
|
|
|
|
2015-10-07 21:18:58 +00:00
|
|
|
Handle<BytecodeArray> MakeTopLevelBytecode(const char* source) {
|
|
|
|
const char* old_ignition_filter = i::FLAG_ignition_filter;
|
|
|
|
i::FLAG_ignition_filter = "*";
|
|
|
|
Local<v8::Script> script = v8_compile(source);
|
|
|
|
i::FLAG_ignition_filter = old_ignition_filter;
|
|
|
|
i::Handle<i::JSFunction> js_function = v8::Utils::OpenHandle(*script);
|
|
|
|
return handle(js_function->shared()->bytecode_array(), CcTest::i_isolate());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-18 13:46:43 +00:00
|
|
|
Handle<BytecodeArray> MakeBytecode(const char* script,
|
|
|
|
const char* function_name) {
|
|
|
|
CompileRun(script);
|
|
|
|
Local<Function> function =
|
|
|
|
Local<Function>::Cast(CcTest::global()->Get(v8_str(function_name)));
|
2015-10-23 12:26:49 +00:00
|
|
|
i::Handle<i::JSFunction> js_function =
|
|
|
|
i::Handle<i::JSFunction>::cast(v8::Utils::OpenHandle(*function));
|
2015-08-18 13:46:43 +00:00
|
|
|
return handle(js_function->shared()->bytecode_array(), CcTest::i_isolate());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Handle<BytecodeArray> MakeBytecodeForFunctionBody(const char* body) {
|
|
|
|
ScopedVector<char> program(1024);
|
|
|
|
SNPrintF(program, "function %s() { %s }\n%s();", kFunctionName, body,
|
|
|
|
kFunctionName);
|
|
|
|
return MakeBytecode(program.start(), kFunctionName);
|
|
|
|
}
|
2015-08-27 10:32:26 +00:00
|
|
|
|
|
|
|
Handle<BytecodeArray> MakeBytecodeForFunction(const char* function) {
|
|
|
|
ScopedVector<char> program(1024);
|
|
|
|
SNPrintF(program, "%s\n%s();", function, kFunctionName);
|
|
|
|
return MakeBytecode(program.start(), kFunctionName);
|
|
|
|
}
|
2015-08-18 13:46:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-09-24 11:48:22 +00:00
|
|
|
// Helper macros for handcrafting bytecode sequences.
|
|
|
|
#define B(x) static_cast<uint8_t>(Bytecode::k##x)
|
|
|
|
#define U8(x) static_cast<uint8_t>((x) & 0xff)
|
|
|
|
#define R(x) static_cast<uint8_t>(-(x) & 0xff)
|
2015-10-21 15:28:55 +00:00
|
|
|
#define A(x, n) R(helper.kLastParamIndex - (n) + 1 + (x))
|
|
|
|
#define THIS(n) A(0, n)
|
2015-10-02 18:13:41 +00:00
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
|
|
|
#define U16(x) static_cast<uint8_t>((x) & 0xff), \
|
|
|
|
static_cast<uint8_t>(((x) >> kBitsPerByte) & 0xff)
|
|
|
|
#elif defined(V8_TARGET_BIG_ENDIAN)
|
|
|
|
#define U16(x) static_cast<uint8_t>(((x) >> kBitsPerByte) & 0xff), \
|
|
|
|
static_cast<uint8_t>((x) & 0xff)
|
|
|
|
#else
|
|
|
|
#error Unknown byte ordering
|
|
|
|
#endif
|
2015-09-24 11:48:22 +00:00
|
|
|
|
|
|
|
|
2015-08-18 13:46:43 +00:00
|
|
|
// Structure for containing expected bytecode snippets.
|
2015-08-28 15:40:52 +00:00
|
|
|
template<typename T>
|
2015-08-18 13:46:43 +00:00
|
|
|
struct ExpectedSnippet {
|
2015-09-02 13:03:06 +00:00
|
|
|
const char* code_snippet;
|
2015-08-18 13:46:43 +00:00
|
|
|
int frame_size;
|
2015-08-27 10:32:26 +00:00
|
|
|
int parameter_count;
|
2015-08-18 13:46:43 +00:00
|
|
|
int bytecode_length;
|
2015-09-24 15:20:47 +00:00
|
|
|
const uint8_t bytecode[512];
|
2015-08-28 15:40:52 +00:00
|
|
|
int constant_count;
|
2015-10-14 10:10:01 +00:00
|
|
|
T constants[6];
|
2015-08-18 13:46:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-09-24 11:48:22 +00:00
|
|
|
static void CheckConstant(int expected, Object* actual) {
|
|
|
|
CHECK_EQ(expected, Smi::cast(actual)->value());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void CheckConstant(double expected, Object* actual) {
|
|
|
|
CHECK_EQ(expected, HeapNumber::cast(actual)->value());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void CheckConstant(const char* expected, Object* actual) {
|
|
|
|
Handle<String> expected_string =
|
|
|
|
CcTest::i_isolate()->factory()->NewStringFromAsciiChecked(expected);
|
|
|
|
CHECK(String::cast(actual)->Equals(*expected_string));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
static void CheckConstant(Handle<Object> expected, Object* actual) {
|
|
|
|
CHECK(actual == *expected || expected->StrictEquals(actual));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-13 09:39:55 +00:00
|
|
|
static void CheckConstant(InstanceType expected, Object* actual) {
|
|
|
|
CHECK_EQ(expected, HeapObject::cast(actual)->map()->instance_type());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-24 11:48:22 +00:00
|
|
|
template <typename T>
|
2015-10-21 15:28:55 +00:00
|
|
|
static void CheckBytecodeArrayEqual(const ExpectedSnippet<T>& expected,
|
2015-10-22 20:42:22 +00:00
|
|
|
Handle<BytecodeArray> actual) {
|
2015-10-21 13:00:31 +00:00
|
|
|
CHECK_EQ(expected.frame_size, actual->frame_size());
|
|
|
|
CHECK_EQ(expected.parameter_count, actual->parameter_count());
|
|
|
|
CHECK_EQ(expected.bytecode_length, actual->length());
|
2015-10-16 15:29:07 +00:00
|
|
|
if (expected.constant_count == 0) {
|
2015-10-21 13:00:31 +00:00
|
|
|
CHECK_EQ(CcTest::heap()->empty_fixed_array(), actual->constant_pool());
|
2015-10-16 15:29:07 +00:00
|
|
|
} else {
|
2015-10-21 13:00:31 +00:00
|
|
|
CHECK_EQ(expected.constant_count, actual->constant_pool()->length());
|
2015-10-16 15:29:07 +00:00
|
|
|
for (int i = 0; i < expected.constant_count; i++) {
|
|
|
|
CheckConstant(expected.constants[i], actual->constant_pool()->get(i));
|
2015-09-24 11:48:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BytecodeArrayIterator iterator(actual);
|
|
|
|
int i = 0;
|
|
|
|
while (!iterator.done()) {
|
|
|
|
int bytecode_index = i++;
|
|
|
|
Bytecode bytecode = iterator.current_bytecode();
|
|
|
|
if (Bytecodes::ToByte(bytecode) != expected.bytecode[bytecode_index]) {
|
|
|
|
std::ostringstream stream;
|
|
|
|
stream << "Check failed: expected bytecode [" << bytecode_index
|
|
|
|
<< "] to be " << Bytecodes::ToString(static_cast<Bytecode>(
|
|
|
|
expected.bytecode[bytecode_index]))
|
|
|
|
<< " but got " << Bytecodes::ToString(bytecode);
|
|
|
|
FATAL(stream.str().c_str());
|
|
|
|
}
|
2015-10-01 17:22:58 +00:00
|
|
|
for (int j = 0; j < Bytecodes::NumberOfOperands(bytecode); ++j) {
|
|
|
|
OperandType operand_type = Bytecodes::GetOperandType(bytecode, j);
|
|
|
|
int operand_index = i;
|
|
|
|
i += static_cast<int>(Bytecodes::SizeOfOperand(operand_type));
|
|
|
|
uint32_t raw_operand = iterator.GetRawOperand(j, operand_type);
|
|
|
|
uint32_t expected_operand;
|
|
|
|
switch (Bytecodes::SizeOfOperand(operand_type)) {
|
|
|
|
case OperandSize::kNone:
|
|
|
|
UNREACHABLE();
|
2015-10-08 19:02:29 +00:00
|
|
|
return;
|
2015-10-01 17:22:58 +00:00
|
|
|
case OperandSize::kByte:
|
|
|
|
expected_operand =
|
|
|
|
static_cast<uint32_t>(expected.bytecode[operand_index]);
|
|
|
|
break;
|
|
|
|
case OperandSize::kShort:
|
|
|
|
expected_operand = Bytecodes::ShortOperandFromBytes(
|
|
|
|
&expected.bytecode[operand_index]);
|
|
|
|
break;
|
2015-10-08 19:02:29 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return;
|
2015-10-01 17:22:58 +00:00
|
|
|
}
|
|
|
|
if (raw_operand != expected_operand) {
|
2015-09-24 11:48:22 +00:00
|
|
|
std::ostringstream stream;
|
|
|
|
stream << "Check failed: expected operand [" << j << "] for bytecode ["
|
|
|
|
<< bytecode_index << "] to be "
|
2015-10-01 17:22:58 +00:00
|
|
|
<< static_cast<unsigned int>(expected_operand) << " but got "
|
2015-09-24 11:48:22 +00:00
|
|
|
<< static_cast<unsigned int>(raw_operand);
|
|
|
|
FATAL(stream.str().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
iterator.Advance();
|
|
|
|
}
|
|
|
|
}
|
2015-08-18 13:46:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST(PrimitiveReturnStatements) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
2015-09-24 11:48:22 +00:00
|
|
|
ExpectedSnippet<int> snippets[] = {
|
2015-09-08 15:02:44 +00:00
|
|
|
{"", 0, 1, 2, {B(LdaUndefined), B(Return)}, 0},
|
2015-08-28 15:40:52 +00:00
|
|
|
{"return;", 0, 1, 2, {B(LdaUndefined), B(Return)}, 0},
|
|
|
|
{"return null;", 0, 1, 2, {B(LdaNull), B(Return)}, 0},
|
|
|
|
{"return true;", 0, 1, 2, {B(LdaTrue), B(Return)}, 0},
|
|
|
|
{"return false;", 0, 1, 2, {B(LdaFalse), B(Return)}, 0},
|
|
|
|
{"return 0;", 0, 1, 2, {B(LdaZero), B(Return)}, 0},
|
|
|
|
{"return +1;", 0, 1, 3, {B(LdaSmi8), U8(1), B(Return)}, 0},
|
|
|
|
{"return -1;", 0, 1, 3, {B(LdaSmi8), U8(-1), B(Return)}, 0},
|
|
|
|
{"return +127;", 0, 1, 3, {B(LdaSmi8), U8(127), B(Return)}, 0},
|
|
|
|
{"return -128;", 0, 1, 3, {B(LdaSmi8), U8(-128), B(Return)}, 0},
|
2015-08-18 13:46:43 +00:00
|
|
|
};
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
2015-09-02 13:03:06 +00:00
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
2015-09-24 11:48:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-08-18 13:46:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(PrimitiveExpressions) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
2015-09-24 11:48:22 +00:00
|
|
|
ExpectedSnippet<int> snippets[] = {
|
2015-08-18 13:46:43 +00:00
|
|
|
{"var x = 0; return x;",
|
|
|
|
kPointerSize,
|
2015-08-27 10:32:26 +00:00
|
|
|
1,
|
2015-08-18 13:46:43 +00:00
|
|
|
6,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return)},
|
2015-10-12 10:45:19 +00:00
|
|
|
0},
|
2015-08-18 13:46:43 +00:00
|
|
|
{"var x = 0; return x + 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-08-27 10:32:26 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
8,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 10:45:19 +00:00
|
|
|
0},
|
2015-10-12 13:35:57 +00:00
|
|
|
{"var x = 0; return x - 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 13:35:57 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
8,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Sub), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 13:35:57 +00:00
|
|
|
0},
|
|
|
|
{"var x = 4; return x * 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 13:35:57 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(4), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Mul), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 13:35:57 +00:00
|
|
|
0},
|
|
|
|
{"var x = 4; return x / 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 13:35:57 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(4), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Div), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 13:35:57 +00:00
|
|
|
0},
|
|
|
|
{"var x = 4; return x % 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 13:35:57 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(4), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Mod), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 13:35:57 +00:00
|
|
|
0},
|
|
|
|
{"var x = 1; return x | 2;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 13:35:57 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(BitwiseOr), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 13:35:57 +00:00
|
|
|
0},
|
|
|
|
{"var x = 1; return x ^ 2;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 13:35:57 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(BitwiseXor), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 13:35:57 +00:00
|
|
|
0},
|
|
|
|
{"var x = 1; return x & 2;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 13:35:57 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(BitwiseAnd), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 13:35:57 +00:00
|
|
|
0},
|
2015-10-12 10:45:19 +00:00
|
|
|
{"var x = 10; return x << 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 10:45:19 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(10), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(ShiftLeft), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 10:45:19 +00:00
|
|
|
0},
|
|
|
|
{"var x = 10; return x >> 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 10:45:19 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(10), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(ShiftRight), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
2015-10-12 10:45:19 +00:00
|
|
|
0},
|
|
|
|
{"var x = 10; return x >>> 3;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-12 10:45:19 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
9,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaSmi8), U8(10), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(ShiftRightLogical), R(0), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
|
|
|
0},
|
|
|
|
{"var x = 0; return (x, 3);",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-15 09:11:40 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
6,
|
2015-10-15 09:11:40 +00:00
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Return)},
|
|
|
|
0}};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(LogicalExpressions) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
|
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{"var x = 0; return x || 3;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
10,
|
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(JumpIfToBooleanTrue), U8(4), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Return)},
|
|
|
|
0},
|
|
|
|
{"var x = 0; return x && 3;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
10,
|
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(JumpIfToBooleanFalse), U8(4), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Return)},
|
|
|
|
0},
|
2015-10-21 15:28:55 +00:00
|
|
|
{"var x = 0; return x || (1, 2, 3);",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
10,
|
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(JumpIfToBooleanTrue), U8(4), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Return)},
|
|
|
|
0},
|
|
|
|
{"var a = 2, b = 3, c = 4; return a || (a, b, a, b, c = 5, 3);",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
23,
|
|
|
|
{B(LdaSmi8), U8(2), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(4), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(JumpIfToBooleanTrue), U8(8), //
|
|
|
|
B(LdaSmi8), U8(5), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Return)},
|
|
|
|
0},
|
2015-10-15 09:11:40 +00:00
|
|
|
{"var x = 1; var a = 2, b = 3; return x || ("
|
2015-10-21 15:28:55 +00:00
|
|
|
#define X "a = 1, b = 2, "
|
2015-10-15 09:11:40 +00:00
|
|
|
X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X
|
|
|
|
#undef X
|
|
|
|
"3);",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
283,
|
|
|
|
{B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(JumpIfToBooleanTrueConstant), U8(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
#define X B(LdaSmi8), U8(1), B(Star), R(1), B(LdaSmi8), U8(2), B(Star), R(2),
|
2015-10-15 09:11:40 +00:00
|
|
|
X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X
|
|
|
|
#undef X
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Return)},
|
|
|
|
1,
|
|
|
|
{268, 0, 0, 0}},
|
|
|
|
{"var x = 0; var a = 2, b = 3; return x && ("
|
2015-10-21 15:28:55 +00:00
|
|
|
#define X "a = 1, b = 2, "
|
2015-10-15 09:11:40 +00:00
|
|
|
X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X
|
|
|
|
#undef X
|
|
|
|
"3);",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
282,
|
|
|
|
{B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(JumpIfToBooleanFalseConstant), U8(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
#define X B(LdaSmi8), U8(1), B(Star), R(1), B(LdaSmi8), U8(2), B(Star), R(2),
|
2015-10-15 09:11:40 +00:00
|
|
|
X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X
|
|
|
|
#undef X
|
2015-10-21 15:28:55 +00:00
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
|
|
|
1,
|
|
|
|
{268, 0, 0, 0}},
|
|
|
|
{"return 0 && 3;",
|
|
|
|
0 * kPointerSize,
|
|
|
|
1,
|
|
|
|
2,
|
2015-10-21 15:28:55 +00:00
|
|
|
{B(LdaZero), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
|
|
|
0},
|
|
|
|
{"return 1 || 3;",
|
|
|
|
0 * kPointerSize,
|
|
|
|
1,
|
|
|
|
3,
|
2015-10-21 15:28:55 +00:00
|
|
|
{B(LdaSmi8), U8(1), //
|
2015-10-15 09:11:40 +00:00
|
|
|
B(Return)},
|
|
|
|
0},
|
|
|
|
{"var x = 1; return x && 3 || 0, 1;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
16,
|
|
|
|
{B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(JumpIfToBooleanFalse), U8(4), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(JumpIfToBooleanTrue), U8(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Return)},
|
2015-10-12 10:45:19 +00:00
|
|
|
0}};
|
2015-08-18 13:46:43 +00:00
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
2015-09-02 13:03:06 +00:00
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
2015-09-24 11:48:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-08-27 10:32:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(Parameters) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
2015-09-24 11:48:22 +00:00
|
|
|
ExpectedSnippet<int> snippets[] = {
|
2015-08-27 10:32:26 +00:00
|
|
|
{"function f() { return this; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
{B(Ldar), THIS(1), B(Return)},
|
|
|
|
0},
|
2015-08-27 10:32:26 +00:00
|
|
|
{"function f(arg1) { return arg1; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
{B(Ldar), A(1, 2), B(Return)},
|
|
|
|
0},
|
2015-08-27 10:32:26 +00:00
|
|
|
{"function f(arg1) { return this; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
{B(Ldar), THIS(2), B(Return)},
|
|
|
|
0},
|
2015-08-27 10:32:26 +00:00
|
|
|
{"function f(arg1, arg2, arg3, arg4, arg5, arg6, arg7) { return arg4; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
|
|
|
8,
|
|
|
|
3,
|
|
|
|
{B(Ldar), A(4, 8), B(Return)},
|
|
|
|
0},
|
2015-08-27 10:32:26 +00:00
|
|
|
{"function f(arg1, arg2, arg3, arg4, arg5, arg6, arg7) { return this; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
|
|
|
8,
|
|
|
|
3,
|
|
|
|
{B(Ldar), THIS(8), B(Return)},
|
|
|
|
0},
|
2015-10-07 21:18:58 +00:00
|
|
|
{"function f(arg1) { arg1 = 1; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
|
|
|
2,
|
|
|
|
6,
|
|
|
|
{B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), A(1, 2), //
|
|
|
|
B(LdaUndefined), //
|
2015-10-07 21:18:58 +00:00
|
|
|
B(Return)},
|
|
|
|
0},
|
|
|
|
{"function f(arg1, arg2, arg3, arg4) { arg2 = 1; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
|
|
|
5,
|
|
|
|
6,
|
|
|
|
{B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), A(2, 5), //
|
|
|
|
B(LdaUndefined), //
|
2015-10-07 21:18:58 +00:00
|
|
|
B(Return)},
|
|
|
|
0},
|
2015-08-27 10:32:26 +00:00
|
|
|
};
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
2015-09-02 13:03:06 +00:00
|
|
|
helper.MakeBytecodeForFunction(snippets[i].code_snippet);
|
2015-09-24 11:48:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-08-18 13:46:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-28 15:40:52 +00:00
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
TEST(IntegerConstants) {
|
2015-08-28 15:40:52 +00:00
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{"return 12345678;",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{12345678}},
|
|
|
|
{"var a = 1234; return 5678;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{1234, 5678}},
|
|
|
|
{"var a = 1234; return 1234;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{1234}}};
|
2015-08-28 15:40:52 +00:00
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
2015-09-24 11:48:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-08-28 15:40:52 +00:00
|
|
|
}
|
2015-09-24 15:20:47 +00:00
|
|
|
}
|
2015-08-28 15:40:52 +00:00
|
|
|
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
TEST(HeapNumberConstants) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<double> snippets[] = {
|
|
|
|
{"return 1.2;",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{1.2}},
|
|
|
|
{"var a = 1.2; return 2.6;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{1.2, 2.6}},
|
|
|
|
{"var a = 3.14; return 3.14;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{3.14, 3.14}}};
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-08-28 15:40:52 +00:00
|
|
|
}
|
2015-09-24 15:20:47 +00:00
|
|
|
}
|
2015-08-28 15:40:52 +00:00
|
|
|
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
TEST(StringConstants) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"return \"This is a string\";",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"This is a string"}},
|
|
|
|
{"var a = \"First string\"; return \"Second string\";",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{"First string", "Second string"}},
|
|
|
|
{"var a = \"Same string\"; return \"Same string\";",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"Same string"}}};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-08-28 15:40:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-02 13:03:06 +00:00
|
|
|
TEST(PropertyLoads) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-01 13:48:05 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddLoadICSlot();
|
2015-09-02 13:03:06 +00:00
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
2015-10-07 10:33:22 +00:00
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
2015-09-02 13:03:06 +00:00
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"function f(a) { return a.name; }\nf({name : \"test\"})",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
5,
|
2015-09-02 13:03:06 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LoadICSloppy), A(1, 2), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Return), //
|
2015-09-02 13:03:06 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
|
|
|
{"name"}},
|
2015-09-02 13:03:06 +00:00
|
|
|
{"function f(a) { return a[\"key\"]; }\nf({key : \"test\"})",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
5,
|
2015-09-02 13:03:06 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LoadICSloppy), A(1, 2), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Return) //
|
2015-09-02 13:03:06 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
|
|
|
{"key"}},
|
2015-09-02 13:03:06 +00:00
|
|
|
{"function f(a) { return a[100]; }\nf({100 : \"test\"})",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-21 15:28:55 +00:00
|
|
|
6,
|
2015-09-02 13:03:06 +00:00
|
|
|
{
|
2015-10-21 15:28:55 +00:00
|
|
|
B(LdaSmi8), U8(100), //
|
|
|
|
B(KeyedLoadICSloppy), A(1, 2), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Return) //
|
2015-09-24 15:20:47 +00:00
|
|
|
},
|
|
|
|
0},
|
2015-09-02 13:03:06 +00:00
|
|
|
{"function f(a, b) { return a[b]; }\nf({arg : \"test\"}, \"arg\")",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
3,
|
2015-10-21 15:28:55 +00:00
|
|
|
6,
|
2015-09-02 13:03:06 +00:00
|
|
|
{
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Ldar), A(1, 2), //
|
|
|
|
B(KeyedLoadICSloppy), A(1, 3), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Return) //
|
2015-09-24 15:20:47 +00:00
|
|
|
},
|
|
|
|
0},
|
2015-09-02 13:03:06 +00:00
|
|
|
{"function f(a) { var b = a.name; return a[-124]; }\n"
|
|
|
|
"f({\"-124\" : \"test\", name : 123 })",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
12,
|
2015-09-02 13:03:06 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LoadICSloppy), A(1, 2), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(-124), //
|
|
|
|
B(KeyedLoadICSloppy), A(1, 2), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Return), //
|
2015-09-02 13:03:06 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
2015-10-07 07:54:07 +00:00
|
|
|
{"name"}},
|
|
|
|
{"function f(a) { \"use strict\"; return a.name; }\nf({name : \"test\"})",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-10-07 07:54:07 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
5,
|
2015-10-07 07:54:07 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LoadICStrict), A(1, 2), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Return), //
|
2015-10-07 07:54:07 +00:00
|
|
|
},
|
2015-10-21 15:28:55 +00:00
|
|
|
1,
|
|
|
|
{"name"}},
|
2015-10-22 14:55:32 +00:00
|
|
|
{
|
|
|
|
"function f(a, b) { \"use strict\"; return a[b]; }\n"
|
|
|
|
"f({arg : \"test\"}, \"arg\")",
|
|
|
|
0,
|
|
|
|
3,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(Ldar), A(2, 3), //
|
|
|
|
B(KeyedLoadICStrict), A(1, 3), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0,
|
|
|
|
}};
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
2015-09-28 18:05:56 +00:00
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, helper.kFunctionName);
|
2015-09-24 11:48:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-09-02 13:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 15:46:04 +00:00
|
|
|
|
|
|
|
TEST(PropertyStores) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-01 13:48:05 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddStoreICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddStoreICSlot();
|
2015-09-09 15:46:04 +00:00
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
2015-10-07 10:33:22 +00:00
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
2015-09-09 15:46:04 +00:00
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"function f(a) { a.name = \"val\"; }\nf({name : \"test\"})",
|
2015-10-22 14:55:32 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
8,
|
2015-09-09 15:46:04 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(StoreICSloppy), A(1, 2), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
2015-09-09 15:46:04 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
|
|
|
{"name", "val"}},
|
2015-09-09 15:46:04 +00:00
|
|
|
{"function f(a) { a[\"key\"] = \"val\"; }\nf({key : \"test\"})",
|
2015-10-22 14:55:32 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
8,
|
2015-09-09 15:46:04 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(StoreICSloppy), A(1, 2), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
2015-09-09 15:46:04 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
|
|
|
{"key", "val"}},
|
2015-09-09 15:46:04 +00:00
|
|
|
{"function f(a) { a[100] = \"val\"; }\nf({100 : \"test\"})",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-21 15:28:55 +00:00
|
|
|
12,
|
2015-09-09 15:46:04 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaSmi8), U8(100), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(KeyedStoreICSloppy), A(1, 2), R(0), //
|
|
|
|
U8(vector->GetIndex(slot1)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
2015-09-09 15:46:04 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
|
|
|
{"val"}},
|
2015-09-09 15:46:04 +00:00
|
|
|
{"function f(a, b) { a[b] = \"val\"; }\nf({arg : \"test\"}, \"arg\")",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
3,
|
2015-10-21 15:28:55 +00:00
|
|
|
8,
|
2015-09-09 15:46:04 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(KeyedStoreICSloppy), A(1, 3), A(2, 3), //
|
|
|
|
U8(vector->GetIndex(slot1)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
2015-09-09 15:46:04 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
|
|
|
{"val"}},
|
2015-09-09 15:46:04 +00:00
|
|
|
{"function f(a) { a.name = a[-124]; }\n"
|
|
|
|
"f({\"-124\" : \"test\", name : 123 })",
|
2015-10-22 14:55:32 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
11,
|
2015-09-09 15:46:04 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaSmi8), U8(-124), //
|
|
|
|
B(KeyedLoadICSloppy), A(1, 2), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(StoreICSloppy), A(1, 2), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
2015-09-09 15:46:04 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
2015-10-07 07:54:07 +00:00
|
|
|
{"name"}},
|
|
|
|
{"function f(a) { \"use strict\"; a.name = \"val\"; }\n"
|
|
|
|
"f({name : \"test\"})",
|
2015-10-22 14:55:32 +00:00
|
|
|
0,
|
2015-10-07 07:54:07 +00:00
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
8,
|
2015-10-07 07:54:07 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(StoreICStrict), A(1, 2), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
2015-10-07 07:54:07 +00:00
|
|
|
},
|
2015-10-21 15:28:55 +00:00
|
|
|
2,
|
|
|
|
{"name", "val"}},
|
2015-10-07 07:54:07 +00:00
|
|
|
{"function f(a, b) { \"use strict\"; a[b] = \"val\"; }\n"
|
|
|
|
"f({arg : \"test\"}, \"arg\")",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-10-07 07:54:07 +00:00
|
|
|
3,
|
2015-10-21 15:28:55 +00:00
|
|
|
8,
|
2015-10-07 07:54:07 +00:00
|
|
|
{
|
2015-10-21 15:28:55 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(KeyedStoreICStrict), A(1, 3), A(2, 3), //
|
|
|
|
U8(vector->GetIndex(slot1)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
2015-10-07 07:54:07 +00:00
|
|
|
},
|
2015-10-21 15:28:55 +00:00
|
|
|
1,
|
|
|
|
{"val"}}};
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
2015-09-28 18:05:56 +00:00
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, helper.kFunctionName);
|
2015-09-24 11:48:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-09-09 15:46:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 10:05:18 +00:00
|
|
|
|
|
|
|
#define FUNC_ARG "new (function Obj() { this.func = function() { return; }})()"
|
|
|
|
|
|
|
|
|
|
|
|
TEST(PropertyCall) {
|
|
|
|
InitializedHandleScope handle_scope;
|
2015-10-07 21:18:58 +00:00
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-01 13:48:05 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddLoadICSlot();
|
|
|
|
USE(slot1);
|
2015-09-14 10:05:18 +00:00
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
2015-10-07 10:33:22 +00:00
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
2015-09-14 10:05:18 +00:00
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"function f(a) { return a.func(); }\nf(" FUNC_ARG ")",
|
2015-09-24 15:20:47 +00:00
|
|
|
2 * kPointerSize,
|
|
|
|
2,
|
2015-10-22 14:55:32 +00:00
|
|
|
15,
|
2015-09-14 10:05:18 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(Ldar), A(1, 2), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LoadICSloppy), R(1), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Call), R(0), R(1), U8(0), //
|
|
|
|
B(Return), //
|
2015-09-14 10:05:18 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
|
|
|
{"func"}},
|
2015-09-14 10:05:18 +00:00
|
|
|
{"function f(a, b, c) { return a.func(b, c); }\nf(" FUNC_ARG ", 1, 2)",
|
2015-09-24 15:20:47 +00:00
|
|
|
4 * kPointerSize,
|
|
|
|
4,
|
2015-10-22 14:55:32 +00:00
|
|
|
23,
|
2015-09-14 10:05:18 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(Ldar), A(1, 4), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LoadICSloppy), R(1), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), A(2, 4), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Ldar), A(3, 4), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(Call), R(0), R(1), U8(2), //
|
|
|
|
B(Return) //
|
2015-09-14 10:05:18 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
|
|
|
{"func"}},
|
|
|
|
{"function f(a, b) { return a.func(b + b, b); }\nf(" FUNC_ARG ", 1)",
|
|
|
|
4 * kPointerSize,
|
|
|
|
3,
|
2015-10-22 14:55:32 +00:00
|
|
|
25,
|
2015-09-24 15:20:47 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(Ldar), A(1, 3), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LoadICSloppy), R(1), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), A(2, 3), //
|
|
|
|
B(Add), A(2, 3), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Ldar), A(2, 3), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(Call), R(0), R(1), U8(2), //
|
|
|
|
B(Return), //
|
2015-09-14 10:05:18 +00:00
|
|
|
},
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
|
|
|
{"func"}}};
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
2015-09-28 18:05:56 +00:00
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, helper.kFunctionName);
|
2015-09-24 11:48:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(LoadGlobal) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-22 09:17:02 +00:00
|
|
|
Zone zone;
|
2015-09-24 11:48:22 +00:00
|
|
|
|
2015-10-22 09:17:02 +00:00
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
2015-10-22 14:55:32 +00:00
|
|
|
FeedbackVectorSlot slot = feedback_spec.AddLoadICSlot();
|
2015-10-22 09:17:02 +00:00
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
2015-10-22 14:55:32 +00:00
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"var a = 1;\nfunction f() { return a; }\nf()",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"a"}},
|
|
|
|
{"function t() { }\nfunction f() { return t; }\nf()",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"t"}},
|
|
|
|
{"'use strict'; var a = 1;\nfunction f() { return a; }\nf()",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
B(LdaGlobalStrict), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"a"}},
|
|
|
|
{"a = 1;\nfunction f() { return a; }\nf()",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"a"}},
|
2015-09-24 11:48:22 +00:00
|
|
|
};
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, "f");
|
2015-10-22 14:55:32 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-09-24 11:48:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-07 21:18:58 +00:00
|
|
|
TEST(StoreGlobal) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-22 09:17:02 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
2015-10-22 14:55:32 +00:00
|
|
|
FeedbackVectorSlot slot = feedback_spec.AddStoreICSlot();
|
2015-10-07 21:18:58 +00:00
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
2015-10-22 14:55:32 +00:00
|
|
|
{"var a = 1;\nfunction f() { a = 2; }\nf()",
|
|
|
|
0,
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
|
|
|
{"a"}},
|
2015-10-22 14:55:32 +00:00
|
|
|
{"var a = \"test\"; function f(b) { a = b; }\nf(\"global\")",
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(Ldar), R(helper.kLastParamIndex), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
{"a"}},
|
|
|
|
{"'use strict'; var a = 1;\nfunction f() { a = 2; }\nf()",
|
|
|
|
0,
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(StaGlobalStrict), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"a"}},
|
|
|
|
{"a = 1;\nfunction f() { a = 2; }\nf()",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"a"}},
|
2015-10-07 21:18:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, "f");
|
2015-10-13 13:09:48 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-10-07 21:18:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-22 14:55:32 +00:00
|
|
|
TEST(CallGlobal) {
|
2015-10-07 21:18:58 +00:00
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
2015-10-22 14:55:32 +00:00
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddLoadICSlot();
|
|
|
|
USE(slot1);
|
2015-10-07 21:18:58 +00:00
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
2015-10-22 14:55:32 +00:00
|
|
|
{"function t() { }\nfunction f() { return t(); }\nf()",
|
|
|
|
2 * kPointerSize,
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
13,
|
|
|
|
{
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Call), R(0), R(1), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
{"t"}},
|
|
|
|
{"function t(a, b, c) { }\nfunction f() { return t(1, 2, 3); }\nf()",
|
|
|
|
5 * kPointerSize,
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
25,
|
|
|
|
{
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(Call), R(0), R(1), U8(3), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
2015-10-07 21:18:58 +00:00
|
|
|
1,
|
|
|
|
{"t"}},
|
|
|
|
};
|
|
|
|
|
2015-10-22 14:55:32 +00:00
|
|
|
size_t num_snippets = sizeof(snippets) / sizeof(snippets[0]);
|
|
|
|
for (size_t i = 0; i < num_snippets; i++) {
|
2015-10-07 21:18:58 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, "f");
|
2015-10-13 13:09:48 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-10-07 21:18:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-02 18:13:41 +00:00
|
|
|
TEST(CallRuntime) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{
|
|
|
|
"function f() { %TheHole() }\nf()",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kTheHole), R(0), U8(0), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"function f(a) { return %IsArray(a) }\nf(undefined)",
|
|
|
|
1 * kPointerSize,
|
|
|
|
2,
|
|
|
|
10,
|
|
|
|
{
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Ldar), A(1, 2), //
|
2015-10-02 18:13:41 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(CallRuntime), U16(Runtime::kIsArray), R(0), U8(1), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"function f() { return %Add(1, 2) }\nf()",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
14,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(CallRuntime), U16(Runtime::kAdd), R(0), U8(2), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
2015-09-24 11:48:22 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
2015-09-24 11:48:22 +00:00
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, "f");
|
2015-10-13 13:09:48 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-09-14 10:05:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-24 15:20:47 +00:00
|
|
|
|
|
|
|
TEST(IfConditions) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
Handle<Object> unused = helper.factory()->undefined_value();
|
|
|
|
|
|
|
|
ExpectedSnippet<Handle<Object>> snippets[] = {
|
2015-09-28 18:05:56 +00:00
|
|
|
{"function f() { if (0) { return 1; } else { return -1; } } f()",
|
2015-09-24 15:20:47 +00:00
|
|
|
0,
|
|
|
|
1,
|
|
|
|
14,
|
|
|
|
{B(LdaZero), //
|
|
|
|
B(ToBoolean), //
|
|
|
|
B(JumpIfFalse), U8(7), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Return), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Jump), U8(5), //
|
2015-09-24 15:20:47 +00:00
|
|
|
B(LdaSmi8), U8(-1), //
|
|
|
|
B(Return), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return)}, //
|
|
|
|
0,
|
2015-10-14 10:10:01 +00:00
|
|
|
{unused, unused, unused, unused, unused, unused}},
|
2015-09-28 18:05:56 +00:00
|
|
|
{"function f() { if ('lucky') { return 1; } else { return -1; } } f();",
|
2015-09-24 15:20:47 +00:00
|
|
|
0,
|
|
|
|
1,
|
|
|
|
15,
|
|
|
|
{B(LdaConstant), U8(0), //
|
|
|
|
B(ToBoolean), //
|
|
|
|
B(JumpIfFalse), U8(7), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Return), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Jump), U8(5), //
|
2015-09-24 15:20:47 +00:00
|
|
|
B(LdaSmi8), U8(-1), //
|
|
|
|
B(Return), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return)}, //
|
|
|
|
1,
|
2015-09-28 18:05:56 +00:00
|
|
|
{helper.factory()->NewStringFromStaticChars("lucky"), unused, unused,
|
2015-10-14 10:10:01 +00:00
|
|
|
unused, unused, unused}},
|
2015-09-28 18:05:56 +00:00
|
|
|
{"function f() { if (false) { return 1; } else { return -1; } } f();",
|
2015-09-24 15:20:47 +00:00
|
|
|
0,
|
|
|
|
1,
|
|
|
|
13,
|
|
|
|
{B(LdaFalse), //
|
|
|
|
B(JumpIfFalse), U8(7), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Return), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Jump), U8(5), //
|
2015-09-24 15:20:47 +00:00
|
|
|
B(LdaSmi8), U8(-1), //
|
|
|
|
B(Return), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return)}, //
|
|
|
|
0,
|
2015-10-14 10:10:01 +00:00
|
|
|
{unused, unused, unused, unused, unused, unused}},
|
2015-09-28 18:05:56 +00:00
|
|
|
{"function f(a) { if (a <= 0) { return 200; } else { return -200; } }"
|
|
|
|
"f(99);",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-21 15:28:55 +00:00
|
|
|
15,
|
|
|
|
{B(LdaZero), //
|
|
|
|
B(TestLessThanOrEqual), A(1, 2), //
|
|
|
|
B(JumpIfFalse), U8(7), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
B(Jump), U8(5), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Return), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return)}, //
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
|
|
|
{helper.factory()->NewNumberFromInt(200),
|
2015-10-14 10:10:01 +00:00
|
|
|
helper.factory()->NewNumberFromInt(-200), unused, unused, unused,
|
|
|
|
unused}},
|
2015-09-28 18:05:56 +00:00
|
|
|
{"function f(a, b) { if (a in b) { return 200; } }"
|
|
|
|
"f('prop', { prop: 'yes'});",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-24 15:20:47 +00:00
|
|
|
3,
|
2015-10-21 15:28:55 +00:00
|
|
|
11,
|
|
|
|
{B(Ldar), A(2, 3), //
|
|
|
|
B(TestIn), A(1, 3), //
|
|
|
|
B(JumpIfFalse), U8(5), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return)}, //
|
2015-09-24 15:20:47 +00:00
|
|
|
1,
|
2015-10-14 10:10:01 +00:00
|
|
|
{helper.factory()->NewNumberFromInt(200), unused, unused, unused, unused,
|
|
|
|
unused}},
|
2015-09-24 15:20:47 +00:00
|
|
|
{"function f(z) { var a = 0; var b = 0; if (a === 0.01) { "
|
|
|
|
#define X "b = a; a = b; "
|
|
|
|
X X X X X X X X X X X X X X X X X X X X X X X X
|
|
|
|
#undef X
|
2015-09-28 18:05:56 +00:00
|
|
|
" return 200; } else { return -200; } } f(0.001)",
|
2015-10-21 15:28:55 +00:00
|
|
|
2 * kPointerSize,
|
2015-09-24 15:20:47 +00:00
|
|
|
2,
|
2015-10-21 15:28:55 +00:00
|
|
|
214,
|
|
|
|
{
|
|
|
|
#define X B(Ldar), R(0), B(Star), R(1), B(Ldar), R(1), B(Star), R(0)
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(TestEqualStrict), R(0), //
|
|
|
|
B(JumpIfFalseConstant), U8(2), //
|
|
|
|
X, X, X, X, X, X, X, X, X, X, //
|
|
|
|
X, X, X, X, X, X, X, X, X, X, //
|
|
|
|
X, X, X, X, //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Return), //
|
|
|
|
B(Jump), U8(5), //
|
|
|
|
B(LdaConstant), U8(3), //
|
|
|
|
B(Return), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return)}, //
|
2015-09-24 15:20:47 +00:00
|
|
|
#undef X
|
|
|
|
4,
|
|
|
|
{helper.factory()->NewHeapNumber(0.01),
|
|
|
|
helper.factory()->NewNumberFromInt(200),
|
|
|
|
helper.factory()->NewNumberFromInt(199),
|
2015-10-21 15:28:55 +00:00
|
|
|
helper.factory()->NewNumberFromInt(-200), unused, unused}},
|
2015-09-28 18:05:56 +00:00
|
|
|
{"function f(a, b) {\n"
|
|
|
|
" if (a == b) { return 1; }\n"
|
|
|
|
" if (a === b) { return 1; }\n"
|
|
|
|
" if (a < b) { return 1; }\n"
|
|
|
|
" if (a > b) { return 1; }\n"
|
|
|
|
" if (a <= b) { return 1; }\n"
|
|
|
|
" if (a >= b) { return 1; }\n"
|
|
|
|
" if (a in b) { return 1; }\n"
|
|
|
|
" if (a instanceof b) { return 1; }\n"
|
|
|
|
" return 0;\n"
|
|
|
|
"} f(1, 1);",
|
2015-10-21 15:28:55 +00:00
|
|
|
0,
|
2015-09-28 18:05:56 +00:00
|
|
|
3,
|
2015-10-21 15:28:55 +00:00
|
|
|
74,
|
2015-09-28 18:05:56 +00:00
|
|
|
{
|
2015-10-01 15:04:09 +00:00
|
|
|
#define IF_CONDITION_RETURN(condition) \
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Ldar), A(2, 3), \
|
|
|
|
B(condition), A(1, 3), \
|
|
|
|
B(JumpIfFalse), U8(5), \
|
|
|
|
B(LdaSmi8), U8(1), \
|
|
|
|
B(Return),
|
2015-09-28 18:05:56 +00:00
|
|
|
IF_CONDITION_RETURN(TestEqual) //
|
|
|
|
IF_CONDITION_RETURN(TestEqualStrict) //
|
|
|
|
IF_CONDITION_RETURN(TestLessThan) //
|
|
|
|
IF_CONDITION_RETURN(TestGreaterThan) //
|
|
|
|
IF_CONDITION_RETURN(TestLessThanOrEqual) //
|
|
|
|
IF_CONDITION_RETURN(TestGreaterThanOrEqual) //
|
|
|
|
IF_CONDITION_RETURN(TestIn) //
|
|
|
|
IF_CONDITION_RETURN(TestInstanceOf) //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(LdaZero), //
|
|
|
|
B(Return)}, //
|
2015-09-28 18:05:56 +00:00
|
|
|
#undef IF_CONDITION_RETURN
|
|
|
|
0,
|
2015-10-14 10:10:01 +00:00
|
|
|
{unused, unused, unused, unused, unused, unused}},
|
2015-09-28 18:05:56 +00:00
|
|
|
};
|
2015-09-24 15:20:47 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
2015-09-28 18:05:56 +00:00
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, helper.kFunctionName);
|
2015-09-24 15:20:47 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-07 21:18:58 +00:00
|
|
|
TEST(DeclareGlobals) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-21 13:00:31 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
// Create different feedback vector specs to be precise on slot numbering.
|
2015-10-22 14:55:32 +00:00
|
|
|
FeedbackVectorSpec feedback_spec_stores(&zone);
|
|
|
|
FeedbackVectorSlot store_slot_1 = feedback_spec_stores.AddStoreICSlot();
|
|
|
|
FeedbackVectorSlot store_slot_2 = feedback_spec_stores.AddStoreICSlot();
|
|
|
|
USE(store_slot_1);
|
2015-10-21 13:00:31 +00:00
|
|
|
|
2015-10-22 14:55:32 +00:00
|
|
|
Handle<i::TypeFeedbackVector> store_vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec_stores);
|
2015-10-21 13:00:31 +00:00
|
|
|
|
2015-10-22 14:55:32 +00:00
|
|
|
FeedbackVectorSpec feedback_spec_loads(&zone);
|
|
|
|
FeedbackVectorSlot load_slot_1 = feedback_spec_loads.AddLoadICSlot();
|
2015-10-21 13:00:31 +00:00
|
|
|
|
2015-10-22 14:55:32 +00:00
|
|
|
Handle<i::TypeFeedbackVector> load_vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec_loads);
|
2015-10-21 13:00:31 +00:00
|
|
|
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"var a = 1;",
|
|
|
|
4 * kPointerSize,
|
|
|
|
1,
|
|
|
|
30,
|
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDeclareGlobals), R(1), U8(2), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(CallRuntime), U16(Runtime::kInitializeVarGlobal), R(1), U8(3), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return) //
|
2015-10-21 13:00:31 +00:00
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"function f() {}",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
14,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDeclareGlobals), R(0), U8(2), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 1;\na=2;",
|
|
|
|
4 * kPointerSize,
|
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
38,
|
2015-10-21 13:00:31 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDeclareGlobals), R(1), U8(2), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(CallRuntime), U16(Runtime::kInitializeVarGlobal), R(1), U8(3), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(StaGlobalSloppy), U8(1), //
|
|
|
|
U8(store_vector->GetIndex(store_slot_2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return) //
|
2015-10-21 13:00:31 +00:00
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"function f() {}\nf();",
|
2015-10-22 14:55:32 +00:00
|
|
|
3 * kPointerSize,
|
2015-10-21 13:00:31 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
29,
|
2015-10-21 13:00:31 +00:00
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDeclareGlobals), R(1), U8(2), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Star), R(2), //
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaGlobalSloppy), U8(1), //
|
|
|
|
U8(load_vector->GetIndex(load_slot_1)), //
|
2015-10-21 13:00:31 +00:00
|
|
|
B(Star), R(1), //
|
|
|
|
B(Call), R(1), R(2), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeTopLevelBytecode(snippets[i].code_snippet);
|
2015-10-22 20:42:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-10-21 13:00:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-01 15:04:09 +00:00
|
|
|
TEST(BasicLoops) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{"var x = 0;"
|
|
|
|
"var y = 1;"
|
|
|
|
"while (x < 10) {"
|
2015-10-21 15:28:55 +00:00
|
|
|
" y = y * 12;"
|
2015-10-01 15:04:09 +00:00
|
|
|
" x = x + 1;"
|
|
|
|
"}"
|
|
|
|
"return y;",
|
2015-10-21 15:28:55 +00:00
|
|
|
2 * kPointerSize,
|
2015-10-01 15:04:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
30,
|
2015-10-01 15:04:09 +00:00
|
|
|
{
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(14), //
|
|
|
|
B(LdaSmi8), U8(12), //
|
|
|
|
B(Mul), R(1), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(10), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestLessThan), R(0), //
|
|
|
|
B(JumpIfTrue), U8(-16), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var i = 0;"
|
|
|
|
"while(true) {"
|
|
|
|
" if (i < 0) continue;"
|
|
|
|
" if (i == 3) break;"
|
|
|
|
" if (i == 4) break;"
|
|
|
|
" if (i == 10) continue;"
|
|
|
|
" if (i == 5) break;"
|
|
|
|
" i = i + 1;"
|
|
|
|
"}"
|
|
|
|
"return i;",
|
2015-10-21 15:28:55 +00:00
|
|
|
1 * kPointerSize,
|
2015-10-01 15:04:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
56,
|
2015-10-01 15:04:09 +00:00
|
|
|
{
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(47), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaZero), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestLessThan), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(40), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(35), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(27), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(10), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(16), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(5), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(11), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaTrue), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(JumpIfTrue), U8(-46), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Ldar), R(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Return), //
|
2015-10-01 15:04:09 +00:00
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var x = 0; var y = 1;"
|
|
|
|
"do {"
|
|
|
|
" y = y * 10;"
|
|
|
|
" if (x == 5) break;"
|
|
|
|
" if (x == 6) continue;"
|
|
|
|
" x = x + 1;"
|
|
|
|
"} while (x < 10);"
|
|
|
|
"return y;",
|
2015-10-21 15:28:55 +00:00
|
|
|
2 * kPointerSize,
|
2015-10-01 15:04:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
44,
|
2015-10-01 15:04:09 +00:00
|
|
|
{
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(10), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Mul), R(1), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(5), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(22), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(6), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(8), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(10), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestLessThan), R(0), //
|
|
|
|
B(JumpIfTrue), U8(-32), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Ldar), R(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Return), //
|
2015-10-01 15:04:09 +00:00
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var x = 0; "
|
|
|
|
"for(;;) {"
|
|
|
|
" if (x == 1) break;"
|
|
|
|
" x = x + 1;"
|
|
|
|
"}",
|
2015-10-21 15:28:55 +00:00
|
|
|
1 * kPointerSize,
|
2015-10-01 15:04:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
21,
|
2015-10-01 15:04:09 +00:00
|
|
|
{
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
2015-10-16 15:29:07 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(10), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(-14), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var u = 0;"
|
|
|
|
"for(var i = 0; i < 100; i = i + 1) {"
|
|
|
|
" u = u + 1;"
|
|
|
|
" continue;"
|
|
|
|
"}",
|
2015-10-21 15:28:55 +00:00
|
|
|
2 * kPointerSize,
|
2015-10-01 15:04:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
30,
|
2015-10-01 15:04:09 +00:00
|
|
|
{
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(16), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(Jump), U8(2), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(1), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(100), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestLessThan), R(1), //
|
|
|
|
B(JumpIfTrue), U8(-18), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var i = 0;"
|
|
|
|
"while(true) {"
|
|
|
|
" while (i < 3) {"
|
|
|
|
" if (i == 2) break;"
|
|
|
|
" i = i + 1;"
|
|
|
|
" }"
|
|
|
|
" i = i + 1;"
|
|
|
|
" break;"
|
|
|
|
"}"
|
|
|
|
"return i;",
|
2015-10-21 15:28:55 +00:00
|
|
|
1 * kPointerSize,
|
2015-10-01 15:04:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
41,
|
2015-10-01 15:04:09 +00:00
|
|
|
{
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(32), //
|
|
|
|
B(Jump), U8(16), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(2), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(JumpIfFalse), U8(4), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(14), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestLessThan), R(0), //
|
|
|
|
B(JumpIfTrue), U8(-18), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(Jump), U8(5), //
|
|
|
|
B(LdaTrue), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(JumpIfTrue), U8(-31), //
|
2015-10-01 15:04:09 +00:00
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-06 14:15:09 +00:00
|
|
|
|
|
|
|
TEST(UnaryOperators) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{"var x = 0;"
|
|
|
|
"while (x != 10) {"
|
|
|
|
" x = x + 10;"
|
|
|
|
"}"
|
|
|
|
"return x;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-06 14:15:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
21,
|
2015-10-06 14:15:09 +00:00
|
|
|
{
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Jump), U8(8), //
|
2015-10-06 14:15:09 +00:00
|
|
|
B(LdaSmi8), U8(10), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-06 14:15:09 +00:00
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(10), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(TestEqual), R(0), //
|
2015-10-06 14:15:09 +00:00
|
|
|
B(LogicalNot), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(JumpIfTrue), U8(-11), //
|
2015-10-06 14:15:09 +00:00
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var x = false;"
|
|
|
|
"do {"
|
|
|
|
" x = !x;"
|
|
|
|
"} while(x == false);"
|
|
|
|
"return x;",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-06 14:15:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
16,
|
2015-10-06 14:15:09 +00:00
|
|
|
{
|
2015-10-21 15:28:55 +00:00
|
|
|
B(LdaFalse), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(LogicalNot), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaFalse), //
|
|
|
|
B(TestEqual), R(0), //
|
|
|
|
B(JumpIfTrue), U8(-8), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
2015-10-06 14:15:09 +00:00
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var x = 101;"
|
|
|
|
"return void(x * 3);",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-06 14:15:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
10,
|
2015-10-06 14:15:09 +00:00
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(101), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Mul), R(0), //
|
2015-10-06 14:15:09 +00:00
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var x = 1234;"
|
|
|
|
"var y = void (x * x - 1);"
|
|
|
|
"return y;",
|
2015-10-21 15:28:55 +00:00
|
|
|
3 * kPointerSize,
|
2015-10-06 14:15:09 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
20,
|
2015-10-06 14:15:09 +00:00
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Mul), R(0), //
|
2015-10-06 14:15:09 +00:00
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Sub), R(2), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{1234}},
|
|
|
|
{"var x = 13;"
|
|
|
|
"return typeof(x);",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-06 14:15:09 +00:00
|
|
|
1,
|
|
|
|
8,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(13), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Star), R(0), // TODO(oth): Ldar R(X) following Star R(X)
|
|
|
|
B(Ldar), R(0), // could be culled in bytecode array builder.
|
2015-10-06 14:15:09 +00:00
|
|
|
B(TypeOf), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-13 09:39:55 +00:00
|
|
|
TEST(FunctionLiterals) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"return function(){ }",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
5,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"return (function(){ })()",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
14,
|
|
|
|
{
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Call), R(0), R(1), U8(0), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"return (function(x){ return x; })(1)",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
18,
|
|
|
|
{
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Call), R(0), R(1), U8(1), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-13 14:00:40 +00:00
|
|
|
|
2015-10-16 16:14:23 +00:00
|
|
|
TEST(RegExpLiterals) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddLoadICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"return /ab+d/;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
10,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateRegExpLiteral), U8(0), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{"", "ab+d"}},
|
|
|
|
{"return /(\\w+)\\s(\\w+)/i;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
10,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateRegExpLiteral), U8(0), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{"i", "(\\w+)\\s(\\w+)"}},
|
|
|
|
{"return /ab+d/.exec('abdd');",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
26,
|
2015-10-16 16:14:23 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateRegExpLiteral), U8(0), R(2), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LoadICSloppy), R(1), U8(2), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(3), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Call), R(0), R(1), U8(1), //
|
|
|
|
B(Return), //
|
2015-10-16 16:14:23 +00:00
|
|
|
},
|
|
|
|
4,
|
|
|
|
{"", "ab+d", "exec", "abdd"}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-13 14:00:40 +00:00
|
|
|
TEST(ArrayLiterals) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-14 13:19:49 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddKeyedStoreICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddKeyedStoreICSlot();
|
|
|
|
FeedbackVectorSlot slot3 = feedback_spec.AddKeyedStoreICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
2015-10-13 14:00:40 +00:00
|
|
|
|
|
|
|
int simple_flags =
|
|
|
|
ArrayLiteral::kDisableMementos | ArrayLiteral::kShallowElements;
|
|
|
|
int deep_elements_flags = ArrayLiteral::kDisableMementos;
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"return [ 1, 2 ];",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateArrayLiteral), U8(0), U8(simple_flags), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 1; return [ a, a + 1 ];",
|
2015-10-21 15:28:55 +00:00
|
|
|
3 * kPointerSize,
|
2015-10-13 14:00:40 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
35,
|
2015-10-13 14:00:40 +00:00
|
|
|
{
|
2015-10-14 13:19:49 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateArrayLiteral), U8(0), U8(3), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(KeyedStoreICSloppy), R(2), R(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-14 13:19:49 +00:00
|
|
|
B(KeyedStoreICSloppy), R(2), R(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Ldar), R(2), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Return), //
|
2015-10-13 14:00:40 +00:00
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"return [ [ 1, 2 ], [ 3 ] ];",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateArrayLiteral), U8(2), U8(deep_elements_flags), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 1; return [ [ a, 2 ], [ a + 2 ] ];",
|
2015-10-21 15:28:55 +00:00
|
|
|
5 * kPointerSize,
|
2015-10-13 14:00:40 +00:00
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
67,
|
2015-10-13 14:00:40 +00:00
|
|
|
{
|
2015-10-14 13:19:49 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateArrayLiteral), U8(2), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateArrayLiteral), U8(0), U8(simple_flags), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(KeyedStoreICSloppy), R(4), R(3), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Ldar), R(4), //
|
|
|
|
B(KeyedStoreICSloppy), R(2), R(1), U8(vector->GetIndex(slot3)), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(2), //
|
|
|
|
B(CreateArrayLiteral), U8(1), U8(simple_flags), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(Add), R(0), //
|
2015-10-14 13:19:49 +00:00
|
|
|
B(KeyedStoreICSloppy), R(4), R(3), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Ldar), R(4), //
|
|
|
|
B(KeyedStoreICSloppy), R(2), R(1), U8(vector->GetIndex(slot3)), //
|
|
|
|
B(Ldar), R(2), //
|
|
|
|
B(Return), //
|
2015-10-13 14:00:40 +00:00
|
|
|
},
|
|
|
|
3,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE, InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-14 10:10:01 +00:00
|
|
|
|
|
|
|
TEST(ObjectLiterals) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-22 14:55:32 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddStoreICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
2015-10-14 10:10:01 +00:00
|
|
|
|
|
|
|
int simple_flags = ObjectLiteral::kFastElements |
|
|
|
|
ObjectLiteral::kShallowProperties |
|
|
|
|
ObjectLiteral::kDisableMementos;
|
|
|
|
int deep_elements_flags =
|
|
|
|
ObjectLiteral::kFastElements | ObjectLiteral::kDisableMementos;
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"return { };",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(simple_flags), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"return { name: 'string', val: 9.2 };",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Return) //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 1; return { name: 'string', val: a };",
|
2015-10-22 14:55:32 +00:00
|
|
|
2 * kPointerSize,
|
2015-10-14 10:10:01 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
20,
|
2015-10-14 10:10:01 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(StoreICSloppy), R(1), U8(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
2015-10-14 10:10:01 +00:00
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"var a = 1; return { val: a, val: a + 1 };",
|
2015-10-22 14:55:32 +00:00
|
|
|
2 * kPointerSize,
|
2015-10-14 10:10:01 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
22,
|
2015-10-14 10:10:01 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Add), R(0), //
|
|
|
|
B(StoreICSloppy), R(1), U8(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
2015-10-14 10:10:01 +00:00
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"return { func: function() { } };",
|
2015-10-22 14:55:32 +00:00
|
|
|
1 * kPointerSize,
|
2015-10-14 10:10:01 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
18,
|
2015-10-14 10:10:01 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(2), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(StoreICSloppy), R(0), U8(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
2015-10-14 10:10:01 +00:00
|
|
|
},
|
|
|
|
3,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"return { func(a) { return a; } };",
|
2015-10-22 14:55:32 +00:00
|
|
|
1 * kPointerSize,
|
2015-10-14 10:10:01 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
18,
|
2015-10-14 10:10:01 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(2), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(StoreICSloppy), R(0), U8(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
2015-10-14 10:10:01 +00:00
|
|
|
},
|
|
|
|
3,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"return { get a() { return 2; } };",
|
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
|
|
|
31,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(2), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaNull), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineAccessorPropertyUnchecked), //
|
|
|
|
R(0), U8(5), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
3,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"return { get a() { return this.x; }, set a(val) { this.x = val } };",
|
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
|
|
|
34,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(2), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaConstant), U8(3), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineAccessorPropertyUnchecked), //
|
|
|
|
R(0), U8(5), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
4,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
2015-10-14 14:51:55 +00:00
|
|
|
{"return { set b(val) { this.y = val } };",
|
2015-10-14 10:10:01 +00:00
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
2015-10-14 14:51:55 +00:00
|
|
|
31,
|
2015-10-14 10:10:01 +00:00
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaNull), //
|
|
|
|
B(Star), R(2), //
|
2015-10-14 14:51:55 +00:00
|
|
|
B(LdaConstant), U8(2), //
|
2015-10-14 10:10:01 +00:00
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineAccessorPropertyUnchecked), //
|
|
|
|
R(0), U8(5), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
2015-10-14 14:51:55 +00:00
|
|
|
3,
|
2015-10-14 10:10:01 +00:00
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"var a = 1; return { 1: a };",
|
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
|
|
|
30,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kSetProperty), R(1), U8(4), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"return { __proto__: null }",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
18,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(simple_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaNull), B(Star), R(1), //
|
|
|
|
B(CallRuntime), U16(Runtime::kInternalSetPrototype), R(0), U8(2), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 'test'; return { [a]: 1 }",
|
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
|
|
|
31,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(simple_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToName), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineDataPropertyUnchecked), R(1), //
|
|
|
|
U8(4), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 'test'; return { val: a, [a]: 1 }",
|
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
37,
|
2015-10-14 10:10:01 +00:00
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(deep_elements_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
2015-10-22 14:55:32 +00:00
|
|
|
B(StoreICSloppy), R(1), U8(2), U8(vector->GetIndex(slot1)), //
|
2015-10-14 10:10:01 +00:00
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToName), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineDataPropertyUnchecked), R(1), //
|
|
|
|
U8(4), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
3,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"var a = 'test'; return { [a]: 1, __proto__: {} }",
|
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
|
|
|
43,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateObjectLiteral), U8(1), U8(simple_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToName), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineDataPropertyUnchecked), R(1), //
|
|
|
|
U8(4), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(13), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(CallRuntime), U16(Runtime::kInternalSetPrototype), R(1), U8(2), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var n = 'name'; return { [n]: 'val', get a() { }, set a(b) {} };",
|
|
|
|
5 * kPointerSize,
|
|
|
|
1,
|
|
|
|
69,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(simple_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToName), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaConstant), U8(2), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineDataPropertyUnchecked), R(1), //
|
|
|
|
U8(4), //
|
|
|
|
B(LdaConstant), U8(3), //
|
|
|
|
B(ToName), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaConstant), U8(4), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineGetterPropertyUnchecked), //
|
2015-10-22 14:55:32 +00:00
|
|
|
R(1), U8(4), //
|
2015-10-14 10:10:01 +00:00
|
|
|
B(LdaConstant), U8(3), //
|
|
|
|
B(ToName), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaConstant), U8(5), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDefineSetterPropertyUnchecked), //
|
2015-10-22 14:55:32 +00:00
|
|
|
R(1), U8(4), //
|
2015-10-14 10:10:01 +00:00
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
6,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(TopLevelObjectLiterals) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
2015-10-21 13:00:31 +00:00
|
|
|
int has_function_flags = ObjectLiteral::kFastElements |
|
|
|
|
ObjectLiteral::kHasFunction |
|
|
|
|
ObjectLiteral::kDisableMementos;
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"var a = { func: function() { } };",
|
2015-10-22 14:55:32 +00:00
|
|
|
5 * kPointerSize,
|
2015-10-21 13:00:31 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
50,
|
2015-10-21 13:00:31 +00:00
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(CallRuntime), U16(Runtime::kDeclareGlobals), R(1), U8(2), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaConstant), U8(2), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(has_function_flags), //
|
|
|
|
B(Star), R(4), //
|
|
|
|
B(LdaConstant), U8(4), //
|
|
|
|
B(CreateClosure), U8(1), //
|
2015-10-22 14:55:32 +00:00
|
|
|
B(StoreICSloppy), R(4), U8(3), U8(5), //
|
2015-10-21 13:00:31 +00:00
|
|
|
B(CallRuntime), U16(Runtime::kToFastProperties), R(4), U8(1), //
|
|
|
|
B(Ldar), R(4), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(CallRuntime), U16(Runtime::kInitializeVarGlobal), R(1), U8(3), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
5,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeTopLevelBytecode(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-15 10:35:18 +00:00
|
|
|
TEST(TryCatch) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
// TODO(rmcilroy): modify tests when we have real try catch support.
|
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{"try { return 1; } catch(e) { return 2; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-15 10:35:18 +00:00
|
|
|
1,
|
|
|
|
5,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Return), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(TryFinally) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
// TODO(rmcilroy): modify tests when we have real try finally support.
|
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{"var a = 1; try { a = 2; } finally { a = 3; }",
|
2015-10-21 15:28:55 +00:00
|
|
|
kPointerSize,
|
2015-10-15 10:35:18 +00:00
|
|
|
1,
|
|
|
|
14,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"var a = 1; try { a = 2; } catch(e) { a = 20 } finally { a = 3; }",
|
2015-10-16 15:29:07 +00:00
|
|
|
2 * kPointerSize,
|
2015-10-15 10:35:18 +00:00
|
|
|
1,
|
|
|
|
14,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-15 16:46:16 +00:00
|
|
|
|
2015-10-19 10:59:00 +00:00
|
|
|
TEST(Throw) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
// TODO(rmcilroy): modify tests when we have real try catch support.
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"throw 1;",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Throw), //
|
|
|
|
},
|
|
|
|
0},
|
|
|
|
{"throw 'Error';",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Throw), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"Error"}},
|
|
|
|
{"if ('test') { throw 'Error'; };",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
10,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(ToBoolean), //
|
|
|
|
B(JumpIfFalse), U8(5), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(Throw), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{"test", "Error"}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-15 16:46:16 +00:00
|
|
|
TEST(CallNew) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
2015-10-21 13:00:31 +00:00
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddGeneralSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddLoadICSlot();
|
|
|
|
USE(slot1);
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"function bar() { this.value = 0; }\n"
|
|
|
|
"function f() { return new bar(); }\n"
|
|
|
|
"f()",
|
2015-10-22 14:55:32 +00:00
|
|
|
1 * kPointerSize,
|
2015-10-21 13:00:31 +00:00
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
10,
|
2015-10-21 13:00:31 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(New), R(0), R(0), U8(0), //
|
|
|
|
B(Return), //
|
2015-10-21 13:00:31 +00:00
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"function bar(x) { this.value = 18; this.x = x;}\n"
|
|
|
|
"function f() { return new bar(3); }\n"
|
|
|
|
"f()",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
14,
|
2015-10-21 13:00:31 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(New), R(0), R(1), U8(1), //
|
|
|
|
B(Return), //
|
2015-10-21 13:00:31 +00:00
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"function bar(w, x, y, z) {\n"
|
|
|
|
" this.value = 18;\n"
|
|
|
|
" this.x = x;\n"
|
|
|
|
" this.y = y;\n"
|
|
|
|
" this.z = z;\n"
|
|
|
|
"}\n"
|
|
|
|
"function f() { return new bar(3, 4, 5); }\n"
|
|
|
|
"f()",
|
|
|
|
4 * kPointerSize,
|
|
|
|
1,
|
2015-10-22 14:55:32 +00:00
|
|
|
22,
|
2015-10-21 13:00:31 +00:00
|
|
|
{
|
2015-10-22 14:55:32 +00:00
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(4), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(5), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(New), R(0), R(1), U8(3), //
|
|
|
|
B(Return), //
|
2015-10-21 13:00:31 +00:00
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, "f");
|
2015-10-22 20:42:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-10-21 13:00:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-16 15:29:07 +00:00
|
|
|
TEST(ContextVariables) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
int closure = Register::function_closure().index();
|
|
|
|
int first_context_slot = Context::MIN_CONTEXT_SLOTS;
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"var a; return function() { a = 1; };",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
12,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"var a = 1; return function() { a = 2; };",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
17,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"var a = 1; var b = 2; return function() { a = 2; b = 3 };",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
22,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot + 1), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"var a; (function() { a = 2; })(); return a;",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
24,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Call), R(1), R(2), U8(0), //
|
|
|
|
B(LdaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"'use strict'; let a = 1; { let b = 2; return function() { a + b; }; }",
|
|
|
|
4 * kPointerSize,
|
|
|
|
1,
|
2015-10-21 15:28:55 +00:00
|
|
|
49,
|
2015-10-16 15:29:07 +00:00
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(LdaTheHole), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(LdaConstant), U8(0), //
|
2015-10-16 15:29:07 +00:00
|
|
|
B(Star), R(2), //
|
|
|
|
B(Ldar), R(closure), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(CallRuntime), U16(Runtime::kPushBlockContext), R(2), U8(2), //
|
|
|
|
B(PushContext), R(1), //
|
|
|
|
B(LdaTheHole), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
2015-10-21 15:28:55 +00:00
|
|
|
B(LdaConstant), U8(1), //
|
2015-10-16 15:29:07 +00:00
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
// TODO(rmcilroy): Dead code after this point due to return in nested
|
|
|
|
// block - investigate eliminating this.
|
|
|
|
B(PopContext), R(0),
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
2015-10-21 15:28:55 +00:00
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
2015-10-16 15:29:07 +00:00
|
|
|
InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(ContextParameters) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
int closure = Register::function_closure().index();
|
|
|
|
int first_context_slot = Context::MIN_CONTEXT_SLOTS;
|
2015-10-22 20:42:22 +00:00
|
|
|
|
2015-10-16 15:29:07 +00:00
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"function f(arg1) { return function() { arg1 = 2; }; }",
|
|
|
|
1 * kPointerSize,
|
|
|
|
2,
|
|
|
|
17,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(Ldar), R(helper.kLastParamIndex), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"function f(arg1) { var a = function() { arg1 = 2; }; return arg1; }",
|
|
|
|
2 * kPointerSize,
|
|
|
|
2,
|
|
|
|
22,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(1), //
|
|
|
|
B(Ldar), R(helper.kLastParamIndex), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"function f(a1, a2, a3, a4) { return function() { a1 = a3; }; }",
|
|
|
|
1 * kPointerSize,
|
|
|
|
5,
|
|
|
|
22,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(Ldar), R(helper.kLastParamIndex - 3), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot + 1), //
|
|
|
|
B(Ldar), R(helper.kLastParamIndex -1), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"function f() { var self = this; return function() { self = 2; }; }",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
17,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), //
|
|
|
|
R(closure), U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(Ldar), R(helper.kLastParamIndex), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunction(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-22 20:40:20 +00:00
|
|
|
|
|
|
|
TEST(CountOperators) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddStoreICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
int closure = Register::function_closure().index();
|
|
|
|
int first_context_slot = Context::MIN_CONTEXT_SLOTS;
|
|
|
|
|
|
|
|
int object_literal_flags =
|
|
|
|
ObjectLiteral::kFastElements | ObjectLiteral::kDisableMementos;
|
|
|
|
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"var a = 1; return ++a;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
11,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Inc), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"var a = 1; return a++;",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
15,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Inc), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"var a = 1; return --a;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
11,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Dec), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"var a = 1; return a--;",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
15,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Dec), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"var a = { val: 1 }; return a.val++;",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
22,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(object_literal_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LoadICSloppy), R(0), U8(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Inc), //
|
|
|
|
B(StoreICSloppy), R(0), U8(1), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Ldar), R(1), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"var a = { val: 1 }; return --a.val;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
18,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(object_literal_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LoadICSloppy), R(0), U8(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Dec), //
|
|
|
|
B(StoreICSloppy), R(0), U8(1), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"var name = 'var'; var a = { val: 1 }; return a[name]--;",
|
|
|
|
4 * kPointerSize,
|
|
|
|
1,
|
|
|
|
29,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(object_literal_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(KeyedLoadICSloppy), R(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Star), R(3), //
|
|
|
|
B(Dec), //
|
|
|
|
B(KeyedStoreICSloppy), R(1), R(2), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Ldar), R(3), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var name = 'var'; var a = { val: 1 }; return ++a[name];",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
25,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaConstant), U8(1), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(object_literal_flags), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(KeyedLoadICSloppy), R(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Inc), //
|
|
|
|
B(KeyedStoreICSloppy), R(1), R(2), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE,
|
|
|
|
InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 1; var b = function() { return a }; return ++a;",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
27,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), R(closure), //
|
|
|
|
U8(1), //
|
|
|
|
B(PushContext), R(1), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Inc), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
{"var a = 1; var b = function() { return a }; return a--;",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
31,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), R(closure), //
|
|
|
|
U8(1), //
|
|
|
|
B(PushContext), R(1), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(Dec), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(Ldar), R(2), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(GlobalCountOperators) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddStoreICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"var global = 1;\nfunction f() { return ++global; }\nf()",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
9,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Inc), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"global"}},
|
|
|
|
{"var global = 1;\nfunction f() { return global--; }\nf()",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
13,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Dec), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return),
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"global"}},
|
|
|
|
{"unallocated = 1;\nfunction f() { 'use strict'; return --unallocated; }"
|
|
|
|
"f()",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
9,
|
|
|
|
{
|
|
|
|
B(LdaGlobalStrict), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Dec), //
|
|
|
|
B(StaGlobalStrict), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"unallocated"}},
|
|
|
|
{"unallocated = 1;\nfunction f() { return unallocated++; }\nf()",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
13,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(ToNumber), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Inc), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return),
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"unallocated"}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, "f");
|
2015-10-22 20:42:22 +00:00
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(CompoundExpressions) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
int closure = Register::function_closure().index();
|
|
|
|
int first_context_slot = Context::MIN_CONTEXT_SLOTS;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddStoreICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
int object_literal_flags =
|
|
|
|
ObjectLiteral::kFastElements | ObjectLiteral::kDisableMementos;
|
|
|
|
ExpectedSnippet<InstanceType> snippets[] = {
|
|
|
|
{"var a = 1; a += 2;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
12,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Add), R(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"var a = 1; a /= 2;",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
12,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Div), R(0), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"var a = { val: 2 }; a.name *= 2;",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
23,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(object_literal_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LoadICSloppy), R(0), U8(1), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Mul), R(1), //
|
|
|
|
B(StoreICSloppy), R(0), U8(1), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
2,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE,
|
|
|
|
InstanceType::ONE_BYTE_INTERNALIZED_STRING_TYPE}},
|
|
|
|
{"var a = { 1: 2 }; a[1] ^= 2;",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
26,
|
|
|
|
{
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateObjectLiteral), U8(0), U8(object_literal_flags), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(KeyedLoadICSloppy), R(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(BitwiseXor), R(2), //
|
|
|
|
B(KeyedStoreICSloppy), R(0), R(1), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::FIXED_ARRAY_TYPE}},
|
|
|
|
{"var a = 1; (function f() { return a; }); a |= 24;",
|
|
|
|
2 * kPointerSize,
|
|
|
|
1,
|
|
|
|
30,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), R(closure), //
|
|
|
|
U8(1), //
|
|
|
|
B(PushContext), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(CreateClosure), U8(0), //
|
|
|
|
B(LdaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaSmi8), U8(24), //
|
|
|
|
B(BitwiseOr), R(1), //
|
|
|
|
B(StaContextSlot), R(0), U8(first_context_slot), //
|
|
|
|
B(LdaUndefined), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{InstanceType::SHARED_FUNCTION_INFO_TYPE}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(GlobalCompoundExpressions) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot1 = feedback_spec.AddLoadICSlot();
|
|
|
|
FeedbackVectorSlot slot2 = feedback_spec.AddStoreICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"var global = 1;\nfunction f() { return global &= 1; }\nf()",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
13,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(BitwiseAnd), R(0), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"global"}},
|
|
|
|
{"unallocated = 1;\nfunction f() { return unallocated += 1; }\nf()",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
13,
|
|
|
|
{
|
|
|
|
B(LdaGlobalSloppy), U8(0), U8(vector->GetIndex(slot1)), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(Add), R(0), //
|
|
|
|
B(StaGlobalSloppy), U8(0), U8(vector->GetIndex(slot2)), //
|
|
|
|
B(Return), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"unallocated"}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecode(snippets[i].code_snippet, "f");
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
2015-10-22 20:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-22 21:41:47 +00:00
|
|
|
|
|
|
|
TEST(CreateArguments) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
Zone zone;
|
|
|
|
|
|
|
|
int closure = Register::function_closure().index();
|
|
|
|
int first_context_slot = Context::MIN_CONTEXT_SLOTS;
|
|
|
|
|
|
|
|
FeedbackVectorSpec feedback_spec(&zone);
|
|
|
|
FeedbackVectorSlot slot = feedback_spec.AddKeyedLoadICSlot();
|
|
|
|
|
|
|
|
Handle<i::TypeFeedbackVector> vector =
|
|
|
|
i::NewTypeFeedbackVector(helper.isolate(), &feedback_spec);
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"function f() { return arguments; }",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(CreateMappedArguments), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"function f() { return arguments[0]; }",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
8,
|
|
|
|
{
|
|
|
|
B(CreateMappedArguments), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(KeyedLoadICSloppy), R(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"function f() { 'use strict'; return arguments; }",
|
|
|
|
1 * kPointerSize,
|
|
|
|
1,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(CreateUnmappedArguments), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"function f(a) { return arguments[0]; }",
|
|
|
|
2 * kPointerSize,
|
|
|
|
2,
|
|
|
|
20,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), R(closure), //
|
|
|
|
U8(1), //
|
|
|
|
B(PushContext), R(1), //
|
|
|
|
B(Ldar), R(BytecodeGeneratorHelper::kLastParamIndex), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(CreateMappedArguments), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(LdaZero), //
|
|
|
|
B(KeyedLoadICSloppy), R(0), U8(vector->GetIndex(slot)), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"function f(a, b, c) { return arguments; }",
|
|
|
|
2 * kPointerSize,
|
|
|
|
4,
|
|
|
|
28,
|
|
|
|
{
|
|
|
|
B(CallRuntime), U16(Runtime::kNewFunctionContext), R(closure), //
|
|
|
|
U8(1), //
|
|
|
|
B(PushContext), R(1), //
|
|
|
|
B(Ldar), R(BytecodeGeneratorHelper::kLastParamIndex - 2), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot + 2), //
|
|
|
|
B(Ldar), R(BytecodeGeneratorHelper::kLastParamIndex - 1), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot + 1), //
|
|
|
|
B(Ldar), R(BytecodeGeneratorHelper::kLastParamIndex), //
|
|
|
|
B(StaContextSlot), R(1), U8(first_context_slot), //
|
|
|
|
B(CreateMappedArguments), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"function f(a, b, c) { 'use strict'; return arguments; }",
|
|
|
|
1 * kPointerSize,
|
|
|
|
4,
|
|
|
|
6,
|
|
|
|
{
|
|
|
|
B(CreateUnmappedArguments), //
|
|
|
|
B(Star), R(0), //
|
|
|
|
B(Ldar), R(0), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunction(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(IllegalRedeclaration) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<const char*> snippets[] = {
|
|
|
|
{"const a = 1; { var a = 2; }",
|
|
|
|
3 * kPointerSize,
|
|
|
|
1,
|
|
|
|
14,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(MessageTemplate::kVarRedeclaration), //
|
|
|
|
B(Star), R(1), //
|
|
|
|
B(LdaConstant), U8(0), //
|
|
|
|
B(Star), R(2), //
|
|
|
|
B(CallRuntime), U16(Runtime::kNewSyntaxError), R(1), U8(2), //
|
|
|
|
B(Throw), //
|
|
|
|
},
|
|
|
|
1,
|
|
|
|
{"a"}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-26 15:31:05 +00:00
|
|
|
|
|
|
|
TEST(Conditional) {
|
|
|
|
InitializedHandleScope handle_scope;
|
|
|
|
BytecodeGeneratorHelper helper;
|
|
|
|
|
|
|
|
ExpectedSnippet<int> snippets[] = {
|
|
|
|
{"return 1 ? 2 : 3;",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
12,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(ToBoolean), //
|
|
|
|
B(JumpIfFalse), U8(6), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(Jump), U8(4), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
{"return 1 ? 2 ? 3 : 4 : 5;",
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
21,
|
|
|
|
{
|
|
|
|
B(LdaSmi8), U8(1), //
|
|
|
|
B(ToBoolean), //
|
|
|
|
B(JumpIfFalse), U8(15), //
|
|
|
|
B(LdaSmi8), U8(2), //
|
|
|
|
B(ToBoolean), //
|
|
|
|
B(JumpIfFalse), U8(6), //
|
|
|
|
B(LdaSmi8), U8(3), //
|
|
|
|
B(Jump), U8(4), //
|
|
|
|
B(LdaSmi8), U8(4), //
|
|
|
|
B(Jump), U8(4), //
|
|
|
|
B(LdaSmi8), U8(5), //
|
|
|
|
B(Return), //
|
|
|
|
}},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arraysize(snippets); i++) {
|
|
|
|
Handle<BytecodeArray> bytecode_array =
|
|
|
|
helper.MakeBytecodeForFunctionBody(snippets[i].code_snippet);
|
|
|
|
CheckBytecodeArrayEqual(snippets[i], bytecode_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 13:46:43 +00:00
|
|
|
} // namespace interpreter
|
|
|
|
} // namespace internal
|
2015-09-30 13:46:56 +00:00
|
|
|
} // namespace v8
|