2016-02-08 12:33:44 +00:00
|
|
|
// Copyright 2016 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/js-create-lowering.h"
|
|
|
|
#include "src/code-factory.h"
|
2016-08-23 12:35:20 +00:00
|
|
|
#include "src/compilation-dependencies.h"
|
2016-02-08 12:33:44 +00:00
|
|
|
#include "src/compiler/access-builder.h"
|
|
|
|
#include "src/compiler/js-graph.h"
|
|
|
|
#include "src/compiler/js-operator.h"
|
|
|
|
#include "src/compiler/machine-operator.h"
|
|
|
|
#include "src/compiler/node-properties.h"
|
|
|
|
#include "src/compiler/operator-properties.h"
|
|
|
|
#include "src/isolate-inl.h"
|
|
|
|
#include "test/unittests/compiler/compiler-test-utils.h"
|
|
|
|
#include "test/unittests/compiler/graph-unittest.h"
|
|
|
|
#include "test/unittests/compiler/node-test-utils.h"
|
|
|
|
#include "testing/gmock-support.h"
|
|
|
|
|
|
|
|
using testing::_;
|
|
|
|
using testing::BitEq;
|
|
|
|
using testing::IsNaN;
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace compiler {
|
|
|
|
|
|
|
|
class JSCreateLoweringTest : public TypedGraphTest {
|
|
|
|
public:
|
|
|
|
JSCreateLoweringTest()
|
|
|
|
: TypedGraphTest(3), javascript_(zone()), deps_(isolate(), zone()) {}
|
|
|
|
~JSCreateLoweringTest() override {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Reduction Reduce(Node* node) {
|
|
|
|
MachineOperatorBuilder machine(zone());
|
|
|
|
SimplifiedOperatorBuilder simplified(zone());
|
|
|
|
JSGraph jsgraph(isolate(), graph(), common(), javascript(), &simplified,
|
|
|
|
&machine);
|
|
|
|
// TODO(titzer): mock the GraphReducer here for better unit testing.
|
|
|
|
GraphReducer graph_reducer(zone(), graph());
|
2016-02-15 06:42:41 +00:00
|
|
|
JSCreateLowering reducer(&graph_reducer, &deps_, &jsgraph,
|
|
|
|
MaybeHandle<LiteralsArray>(), zone());
|
2016-02-08 12:33:44 +00:00
|
|
|
return reducer.Reduce(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
Node* FrameState(Handle<SharedFunctionInfo> shared, Node* outer_frame_state) {
|
|
|
|
Node* state_values = graph()->NewNode(common()->StateValues(0));
|
|
|
|
return graph()->NewNode(
|
[turbofan] Remove the JSContextRelaxation reducer.
This reducer doesn't really add value, because:
(a) it is only concerned with JSCallFunction and JSToNumber, but when
we get to it, all JSCallFunction nodes will have been replaced by
Call nodes, and in the not so far future, we will also have
replaced almost all JSToNumber nodes with better code,
(b) and the reducer tries to be smart and use one of the outermost
contexts, but that might not be beneficial always; actually it
might even create longer live ranges and lead to more spilling
in some cases.
But most importantly, the JSContextRelaxation currently blocks inlining
based on SharedFunctionInfo, because it requires the inliner to check
the native context, which in turn requires JSFunction knowledge. So I'm
removing this reducer for now to unblock the more important inliner
changes.
R=jarin@chromium.org
Review URL: https://codereview.chromium.org/1715633002
Cr-Commit-Position: refs/heads/master@{#34139}
2016-02-19 07:55:26 +00:00
|
|
|
common()->FrameState(
|
|
|
|
BailoutId::None(), OutputFrameStateCombine::Ignore(),
|
|
|
|
common()->CreateFrameStateFunctionInfo(
|
|
|
|
FrameStateType::kJavaScriptFunction, 1, 0, shared)),
|
2016-02-08 12:33:44 +00:00
|
|
|
state_values, state_values, state_values, NumberConstant(0),
|
|
|
|
UndefinedConstant(), outer_frame_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
JSOperatorBuilder* javascript() { return &javascript_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
JSOperatorBuilder javascript_;
|
|
|
|
CompilationDependencies deps_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreate) {
|
|
|
|
Handle<JSFunction> function = isolate()->object_function();
|
|
|
|
Node* const target = Parameter(Type::Constant(function, graph()->zone()));
|
|
|
|
Node* const context = Parameter(Type::Any());
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Reduction r = Reduce(graph()->NewNode(javascript()->Create(), target, target,
|
|
|
|
context, EmptyFrameState(), effect));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(
|
|
|
|
r.replacement(),
|
|
|
|
IsFinishRegion(
|
|
|
|
IsAllocate(IsNumberConstant(function->initial_map()->instance_size()),
|
|
|
|
IsBeginRegion(effect), _),
|
|
|
|
_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// JSCreateArguments
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreateArgumentsInlinedMapped) {
|
|
|
|
Node* const closure = Parameter(Type::Any());
|
|
|
|
Node* const context = UndefinedConstant();
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Handle<SharedFunctionInfo> shared(isolate()->object_function()->shared());
|
|
|
|
Node* const frame_state_outer = FrameState(shared, graph()->start());
|
|
|
|
Node* const frame_state_inner = FrameState(shared, frame_state_outer);
|
|
|
|
Reduction r = Reduce(graph()->NewNode(
|
|
|
|
javascript()->CreateArguments(CreateArgumentsType::kMappedArguments),
|
2016-05-11 06:10:46 +00:00
|
|
|
closure, context, frame_state_inner, effect));
|
2016-02-08 12:33:44 +00:00
|
|
|
ASSERT_TRUE(r.Changed());
|
2016-05-11 06:10:46 +00:00
|
|
|
EXPECT_THAT(
|
|
|
|
r.replacement(),
|
|
|
|
IsFinishRegion(
|
|
|
|
IsAllocate(IsNumberConstant(JSSloppyArgumentsObject::kSize), _, _),
|
|
|
|
_));
|
2016-02-08 12:33:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreateArgumentsInlinedUnmapped) {
|
|
|
|
Node* const closure = Parameter(Type::Any());
|
|
|
|
Node* const context = UndefinedConstant();
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Handle<SharedFunctionInfo> shared(isolate()->object_function()->shared());
|
|
|
|
Node* const frame_state_outer = FrameState(shared, graph()->start());
|
|
|
|
Node* const frame_state_inner = FrameState(shared, frame_state_outer);
|
|
|
|
Reduction r = Reduce(graph()->NewNode(
|
|
|
|
javascript()->CreateArguments(CreateArgumentsType::kUnmappedArguments),
|
2016-05-11 06:10:46 +00:00
|
|
|
closure, context, frame_state_inner, effect));
|
2016-02-08 12:33:44 +00:00
|
|
|
ASSERT_TRUE(r.Changed());
|
2016-05-11 06:10:46 +00:00
|
|
|
EXPECT_THAT(
|
|
|
|
r.replacement(),
|
|
|
|
IsFinishRegion(
|
|
|
|
IsAllocate(IsNumberConstant(JSStrictArgumentsObject::kSize), _, _),
|
|
|
|
_));
|
2016-02-08 12:33:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreateArgumentsInlinedRestArray) {
|
|
|
|
Node* const closure = Parameter(Type::Any());
|
|
|
|
Node* const context = UndefinedConstant();
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Handle<SharedFunctionInfo> shared(isolate()->object_function()->shared());
|
|
|
|
Node* const frame_state_outer = FrameState(shared, graph()->start());
|
|
|
|
Node* const frame_state_inner = FrameState(shared, frame_state_outer);
|
|
|
|
Reduction r = Reduce(graph()->NewNode(
|
|
|
|
javascript()->CreateArguments(CreateArgumentsType::kRestParameter),
|
2016-05-11 06:10:46 +00:00
|
|
|
closure, context, frame_state_inner, effect));
|
2016-02-08 12:33:44 +00:00
|
|
|
ASSERT_TRUE(r.Changed());
|
2016-05-11 06:10:46 +00:00
|
|
|
EXPECT_THAT(
|
|
|
|
r.replacement(),
|
|
|
|
IsFinishRegion(IsAllocate(IsNumberConstant(JSArray::kSize), _, _), _));
|
2016-02-08 12:33:44 +00:00
|
|
|
}
|
|
|
|
|
2016-04-14 15:17:28 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// JSCreateClosure
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreateClosureViaInlinedAllocation) {
|
|
|
|
Node* const context = UndefinedConstant();
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
2016-05-24 15:11:55 +00:00
|
|
|
Handle<SharedFunctionInfo> shared(isolate()->number_function()->shared());
|
2016-04-14 15:17:28 +00:00
|
|
|
Reduction r =
|
|
|
|
Reduce(graph()->NewNode(javascript()->CreateClosure(shared, NOT_TENURED),
|
|
|
|
context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(),
|
|
|
|
IsFinishRegion(IsAllocate(IsNumberConstant(JSFunction::kSize),
|
|
|
|
IsBeginRegion(_), control),
|
|
|
|
_));
|
|
|
|
}
|
|
|
|
|
2016-02-08 12:33:44 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// JSCreateFunctionContext
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreateFunctionContextViaInlinedAllocation) {
|
|
|
|
Node* const closure = Parameter(Type::Any());
|
|
|
|
Node* const context = Parameter(Type::Any());
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction const r =
|
|
|
|
Reduce(graph()->NewNode(javascript()->CreateFunctionContext(8), closure,
|
|
|
|
context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(),
|
|
|
|
IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor(
|
|
|
|
8 + Context::MIN_CONTEXT_SLOTS)),
|
|
|
|
IsBeginRegion(_), control),
|
|
|
|
_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// JSCreateWithContext
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreateWithContext) {
|
|
|
|
Node* const object = Parameter(Type::Receiver());
|
|
|
|
Node* const closure = Parameter(Type::Function());
|
|
|
|
Node* const context = Parameter(Type::Any());
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
|
|
|
Reduction r =
|
|
|
|
Reduce(graph()->NewNode(javascript()->CreateWithContext(), object,
|
|
|
|
closure, context, effect, control));
|
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(),
|
|
|
|
IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor(
|
|
|
|
Context::MIN_CONTEXT_SLOTS)),
|
|
|
|
IsBeginRegion(_), control),
|
|
|
|
_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// JSCreateCatchContext
|
|
|
|
|
|
|
|
TEST_F(JSCreateLoweringTest, JSCreateCatchContext) {
|
|
|
|
Handle<String> name = factory()->length_string();
|
2016-09-05 12:10:16 +00:00
|
|
|
Handle<ScopeInfo> scope_info(factory()->NewScopeInfo(1));
|
2016-02-08 12:33:44 +00:00
|
|
|
Node* const exception = Parameter(Type::Receiver());
|
|
|
|
Node* const closure = Parameter(Type::Function());
|
|
|
|
Node* const context = Parameter(Type::Any());
|
|
|
|
Node* const effect = graph()->start();
|
|
|
|
Node* const control = graph()->start();
|
2016-09-05 12:10:16 +00:00
|
|
|
Reduction r = Reduce(
|
|
|
|
graph()->NewNode(javascript()->CreateCatchContext(name, scope_info),
|
|
|
|
exception, closure, context, effect, control));
|
2016-02-08 12:33:44 +00:00
|
|
|
ASSERT_TRUE(r.Changed());
|
|
|
|
EXPECT_THAT(r.replacement(),
|
|
|
|
IsFinishRegion(IsAllocate(IsNumberConstant(Context::SizeFor(
|
|
|
|
Context::MIN_CONTEXT_SLOTS + 1)),
|
|
|
|
IsBeginRegion(_), control),
|
|
|
|
_));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace compiler
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|