2015-01-26 09:05:47 +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/compiler/access-builder.h"
|
2015-03-31 13:23:06 +00:00
|
|
|
#include "src/compiler/diamond.h"
|
2015-01-26 09:05:47 +00:00
|
|
|
#include "src/compiler/js-graph.h"
|
|
|
|
#include "src/compiler/js-intrinsic-lowering.h"
|
|
|
|
#include "src/compiler/js-operator.h"
|
|
|
|
#include "test/unittests/compiler/graph-unittest.h"
|
|
|
|
#include "test/unittests/compiler/node-test-utils.h"
|
|
|
|
#include "testing/gmock-support.h"
|
|
|
|
|
2015-03-31 13:23:06 +00:00
|
|
|
|
2015-01-26 09:05:47 +00:00
|
|
|
using testing::_;
|
|
|
|
using testing::AllOf;
|
|
|
|
using testing::BitEq;
|
|
|
|
using testing::Capture;
|
|
|
|
using testing::CaptureEq;
|
|
|
|
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace compiler {
|
|
|
|
|
|
|
|
class JSIntrinsicLoweringTest : public GraphTest {
|
|
|
|
public:
|
|
|
|
JSIntrinsicLoweringTest() : GraphTest(3), javascript_(zone()) {}
|
2015-04-20 13:08:11 +00:00
|
|
|
~JSIntrinsicLoweringTest() override {}
|
2015-01-26 09:05:47 +00:00
|
|
|
|
|
|
|
protected:
|
2015-03-20 08:26:31 +00:00
|
|
|
Reduction Reduce(Node* node, MachineOperatorBuilder::Flags flags =
|
|
|
|
MachineOperatorBuilder::kNoFlags) {
|
|
|
|
MachineOperatorBuilder machine(zone(), kMachPtr, flags);
|
2015-10-19 08:05:05 +00:00
|
|
|
SimplifiedOperatorBuilder simplified(zone());
|
|
|
|
JSGraph jsgraph(isolate(), graph(), common(), javascript(), &simplified,
|
2015-10-16 12:38:46 +00:00
|
|
|
&machine);
|
2015-05-19 15:10:34 +00:00
|
|
|
// TODO(titzer): mock the GraphReducer here for better unit testing.
|
2015-06-05 12:01:55 +00:00
|
|
|
GraphReducer graph_reducer(zone(), graph());
|
2015-05-20 13:11:41 +00:00
|
|
|
JSIntrinsicLowering reducer(&graph_reducer, &jsgraph,
|
|
|
|
JSIntrinsicLowering::kDeoptimizationEnabled);
|
2015-01-26 09:05:47 +00:00
|
|
|
return reducer.Reduce(node);
|
|
|
|
}
|
|
|
|
|
2015-04-23 09:04:37 +00:00
|
|
|
Node* EmptyFrameState() {
|
|
|
|
MachineOperatorBuilder machine(zone());
|
2015-10-16 12:38:46 +00:00
|
|
|
JSGraph jsgraph(isolate(), graph(), common(), javascript(), nullptr,
|
|
|
|
&machine);
|
2015-04-23 09:04:37 +00:00
|
|
|
return jsgraph.EmptyFrameState();
|
|
|
|
}
|
|
|
|
|
2015-01-26 09:05:47 +00:00
|
|
|
JSOperatorBuilder* javascript() { return &javascript_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
JSOperatorBuilder javascript_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-03-05 09:22:26 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_ConstructDouble
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineOptimizedConstructDouble) {
|
|
|
|
Node* const input0 = Parameter(0);
|
|
|
|
Node* const input1 = Parameter(1);
|
|
|
|
Node* const context = Parameter(2);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(graph()->NewNode(
|
2015-03-06 11:01:43 +00:00
|
|
|
javascript()->CallRuntime(Runtime::kInlineConstructDouble, 2), input0,
|
|
|
|
input1, context, effect, control));
|
2015-03-05 09:22:26 +00:00
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(), IsFloat64InsertHighWord32(
|
|
|
|
IsFloat64InsertLowWord32(
|
|
|
|
IsNumberConstant(BitEq(0.0)), input1),
|
|
|
|
input0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_DoubleLo
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineOptimizedDoubleLo) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
2015-03-06 11:01:43 +00:00
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineDoubleLo, 1),
|
|
|
|
input, context, effect, control));
|
2015-03-05 09:22:26 +00:00
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(), IsFloat64ExtractLowWord32(input));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_DoubleHi
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineOptimizedDoubleHi) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
2015-03-06 11:01:43 +00:00
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineDoubleHi, 1),
|
|
|
|
input, context, effect, control));
|
2015-03-05 09:22:26 +00:00
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(), IsFloat64ExtractHighWord32(input));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-26 09:05:47 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_IsSmi
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineIsSmi) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineIsSmi, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(), IsObjectIsSmi(input));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_IsArray
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineIsArray) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineIsArray, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
|
|
|
|
Node* phi = r.replacement();
|
|
|
|
Capture<Node*> branch, if_false;
|
|
|
|
EXPECT_THAT(
|
|
|
|
phi,
|
|
|
|
IsPhi(
|
|
|
|
static_cast<MachineType>(kTypeBool | kRepTagged), IsFalseConstant(),
|
|
|
|
IsWord32Equal(IsLoadField(AccessBuilder::ForMapInstanceType(),
|
|
|
|
IsLoadField(AccessBuilder::ForMap(), input,
|
|
|
|
effect, CaptureEq(&if_false)),
|
|
|
|
effect, _),
|
|
|
|
IsInt32Constant(JS_ARRAY_TYPE)),
|
|
|
|
IsMerge(IsIfTrue(AllOf(CaptureEq(&branch),
|
|
|
|
IsBranch(IsObjectIsSmi(input), control))),
|
2015-06-15 22:16:33 +00:00
|
|
|
AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-23 06:43:34 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_IsDate
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineIsDate) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineIsDate, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
|
|
|
|
Node* phi = r.replacement();
|
|
|
|
Capture<Node*> branch, if_false;
|
|
|
|
EXPECT_THAT(
|
|
|
|
phi,
|
|
|
|
IsPhi(
|
|
|
|
static_cast<MachineType>(kTypeBool | kRepTagged), IsFalseConstant(),
|
|
|
|
IsWord32Equal(IsLoadField(AccessBuilder::ForMapInstanceType(),
|
|
|
|
IsLoadField(AccessBuilder::ForMap(), input,
|
|
|
|
effect, CaptureEq(&if_false)),
|
|
|
|
effect, _),
|
|
|
|
IsInt32Constant(JS_DATE_TYPE)),
|
|
|
|
IsMerge(IsIfTrue(AllOf(CaptureEq(&branch),
|
|
|
|
IsBranch(IsObjectIsSmi(input), control))),
|
|
|
|
AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-15 22:16:33 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_IsTypedArray
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineIsTypedArray) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(graph()->NewNode(
|
|
|
|
javascript()->CallRuntime(Runtime::kInlineIsTypedArray, 1), input,
|
|
|
|
context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
|
|
|
|
Node* phi = r.replacement();
|
|
|
|
Capture<Node*> branch, if_false;
|
|
|
|
EXPECT_THAT(
|
|
|
|
phi,
|
|
|
|
IsPhi(
|
|
|
|
static_cast<MachineType>(kTypeBool | kRepTagged), IsFalseConstant(),
|
|
|
|
IsWord32Equal(IsLoadField(AccessBuilder::ForMapInstanceType(),
|
|
|
|
IsLoadField(AccessBuilder::ForMap(), input,
|
|
|
|
effect, CaptureEq(&if_false)),
|
|
|
|
effect, _),
|
|
|
|
IsInt32Constant(JS_TYPED_ARRAY_TYPE)),
|
|
|
|
IsMerge(IsIfTrue(AllOf(CaptureEq(&branch),
|
|
|
|
IsBranch(IsObjectIsSmi(input), control))),
|
2015-01-26 09:05:47 +00:00
|
|
|
AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_IsFunction
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineIsFunction) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineIsFunction, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
|
|
|
|
Node* phi = r.replacement();
|
|
|
|
Capture<Node*> branch, if_false;
|
|
|
|
EXPECT_THAT(
|
|
|
|
phi,
|
|
|
|
IsPhi(
|
|
|
|
static_cast<MachineType>(kTypeBool | kRepTagged), IsFalseConstant(),
|
|
|
|
IsWord32Equal(IsLoadField(AccessBuilder::ForMapInstanceType(),
|
|
|
|
IsLoadField(AccessBuilder::ForMap(), input,
|
|
|
|
effect, CaptureEq(&if_false)),
|
|
|
|
effect, _),
|
|
|
|
IsInt32Constant(JS_FUNCTION_TYPE)),
|
|
|
|
IsMerge(IsIfTrue(AllOf(CaptureEq(&branch),
|
|
|
|
IsBranch(IsObjectIsSmi(input), control))),
|
|
|
|
AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_IsRegExp
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineIsRegExp) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineIsRegExp, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
|
|
|
|
Node* phi = r.replacement();
|
|
|
|
Capture<Node*> branch, if_false;
|
|
|
|
EXPECT_THAT(
|
|
|
|
phi,
|
|
|
|
IsPhi(
|
|
|
|
static_cast<MachineType>(kTypeBool | kRepTagged), IsFalseConstant(),
|
|
|
|
IsWord32Equal(IsLoadField(AccessBuilder::ForMapInstanceType(),
|
|
|
|
IsLoadField(AccessBuilder::ForMap(), input,
|
|
|
|
effect, CaptureEq(&if_false)),
|
|
|
|
effect, _),
|
|
|
|
IsInt32Constant(JS_REGEXP_TYPE)),
|
|
|
|
IsMerge(IsIfTrue(AllOf(CaptureEq(&branch),
|
|
|
|
IsBranch(IsObjectIsSmi(input), control))),
|
|
|
|
AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-20 08:26:31 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_JSValueGetValue
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineJSValueGetValue) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(graph()->NewNode(
|
|
|
|
javascript()->CallRuntime(Runtime::kInlineJSValueGetValue, 1), input,
|
|
|
|
context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(),
|
|
|
|
IsLoadField(AccessBuilder::ForValue(), input, effect, control));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_MathFloor
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineMathFloor) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineMathFloor, 1),
|
|
|
|
input, context, effect, control),
|
|
|
|
MachineOperatorBuilder::kFloat64RoundDown);
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(), IsFloat64RoundDown(input));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_MathSqrt
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineMathSqrt) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineMathSqrt, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(), IsFloat64Sqrt(input));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_StringGetLength
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineStringGetLength) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(graph()->NewNode(
|
|
|
|
javascript()->CallRuntime(Runtime::kInlineStringGetLength, 1), input,
|
|
|
|
context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
2015-10-28 13:31:10 +00:00
|
|
|
EXPECT_THAT(r.replacement(), IsLoadField(AccessBuilder::ForStringLength(),
|
|
|
|
input, effect, control));
|
2015-03-20 08:26:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-20 08:37:20 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_MathClz32
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineMathClz32) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineMathClz32, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(), IsWord32Clz(input));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-26 09:05:47 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// %_ValueOf
|
|
|
|
|
|
|
|
|
|
|
|
TEST_F(JSIntrinsicLoweringTest, InlineValueOf) {
|
|
|
|
Node* const input = Parameter(0);
|
|
|
|
Node* const context = Parameter(1);
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CallRuntime(Runtime::kInlineValueOf, 1),
|
|
|
|
input, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
|
|
|
|
Node* phi = r.replacement();
|
|
|
|
Capture<Node*> branch0, if_false0, branch1, if_true1;
|
|
|
|
EXPECT_THAT(
|
|
|
|
phi,
|
|
|
|
IsPhi(
|
|
|
|
kMachAnyTagged, input,
|
|
|
|
IsPhi(kMachAnyTagged, IsLoadField(AccessBuilder::ForValue(), input,
|
|
|
|
effect, CaptureEq(&if_true1)),
|
|
|
|
input,
|
|
|
|
IsMerge(
|
|
|
|
AllOf(CaptureEq(&if_true1), IsIfTrue(CaptureEq(&branch1))),
|
|
|
|
IsIfFalse(AllOf(
|
|
|
|
CaptureEq(&branch1),
|
|
|
|
IsBranch(
|
|
|
|
IsWord32Equal(
|
|
|
|
IsLoadField(
|
|
|
|
AccessBuilder::ForMapInstanceType(),
|
|
|
|
IsLoadField(AccessBuilder::ForMap(), input,
|
|
|
|
effect, CaptureEq(&if_false0)),
|
|
|
|
effect, _),
|
|
|
|
IsInt32Constant(JS_VALUE_TYPE)),
|
|
|
|
CaptureEq(&if_false0)))))),
|
|
|
|
IsMerge(
|
|
|
|
IsIfTrue(AllOf(CaptureEq(&branch0),
|
|
|
|
IsBranch(IsObjectIsSmi(input), control))),
|
|
|
|
AllOf(CaptureEq(&if_false0), IsIfFalse(CaptureEq(&branch0))))));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace compiler
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|