Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: src/compiler/js-typed-lowering.cc

Issue 1150723005: [turbofan] Optimized lowering of DYNAMIC_GLOBAL lookup slot loads. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/code-factory.h" 5 #include "src/code-factory.h"
6 #include "src/compiler/access-builder.h" 6 #include "src/compiler/access-builder.h"
7 #include "src/compiler/diamond.h"
7 #include "src/compiler/js-graph.h" 8 #include "src/compiler/js-graph.h"
8 #include "src/compiler/js-typed-lowering.h" 9 #include "src/compiler/js-typed-lowering.h"
9 #include "src/compiler/linkage.h" 10 #include "src/compiler/linkage.h"
10 #include "src/compiler/node-matchers.h" 11 #include "src/compiler/node-matchers.h"
11 #include "src/compiler/node-properties.h" 12 #include "src/compiler/node-properties.h"
12 #include "src/compiler/operator-properties.h" 13 #include "src/compiler/operator-properties.h"
13 #include "src/types.h" 14 #include "src/types.h"
14 15
15 namespace v8 { 16 namespace v8 {
16 namespace internal { 17 namespace internal {
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 NodeProperties::GetValueInput(node, 0), effect, control)); 918 NodeProperties::GetValueInput(node, 0), effect, control));
918 } 919 }
919 node->set_op( 920 node->set_op(
920 simplified()->StoreField(AccessBuilder::ForContextSlot(access.index()))); 921 simplified()->StoreField(AccessBuilder::ForContextSlot(access.index())));
921 node->RemoveInput(2); 922 node->RemoveInput(2);
922 DCHECK_EQ(4, node->InputCount()); 923 DCHECK_EQ(4, node->InputCount());
923 return Changed(node); 924 return Changed(node);
924 } 925 }
925 926
926 927
928 Reduction JSTypedLowering::ReduceJSLoadDynamicGlobal(Node* node) {
929 DCHECK_EQ(IrOpcode::kJSLoadDynamicGlobal, node->opcode());
930 DynamicGlobalAccess const& access = DynamicGlobalAccessOf(node->op());
931 Node* const context = NodeProperties::GetContextInput(node);
932 Node* const state1 = NodeProperties::GetFrameStateInput(node, 0);
933 Node* const state2 = NodeProperties::GetFrameStateInput(node, 1);
934 Node* const effect = NodeProperties::GetEffectInput(node);
935 Node* const control = NodeProperties::GetControlInput(node);
936 if (access.RequiresFullCheck()) return NoChange();
937
938 // Perform checks whether the fast mode applies, by looking for any extension
939 // object which might shadow the optimistic declaration.
940 uint32_t bitset = access.check_bitset();
941 Node* check_true = control;
942 Node* check_false = graph()->NewNode(common()->Merge(0));
943 for (int depth = 0; bitset != 0; bitset >>= 1, depth++) {
944 if ((bitset & 1) == 0) continue;
945 Node* load = graph()->NewNode(
946 javascript()->LoadContext(depth, Context::EXTENSION_INDEX, false),
947 context, context, effect);
948 Node* check = graph()->NewNode(simplified()->ObjectIsSmi(), load);
949 Node* branch = graph()->NewNode(common()->Branch(BranchHint::kTrue), check,
950 check_true);
951 Node* if_true = graph()->NewNode(common()->IfTrue(), branch);
952 Node* if_false = graph()->NewNode(common()->IfFalse(), branch);
953 check_false->set_op(common()->Merge(check_false->InputCount() + 1));
954 check_false->AppendInput(graph()->zone(), if_false);
955 check_true = if_true;
956 }
957
958 // Fast case, because variable is not shadowed. Perform global object load.
959 Unique<Name> name = Unique<Name>::CreateUninitialized(access.name());
960 Node* global = graph()->NewNode(
961 javascript()->LoadContext(0, Context::GLOBAL_OBJECT_INDEX, true), context,
962 context, effect);
963 Node* fast = graph()->NewNode(
964 javascript()->LoadNamed(name, access.feedback(), access.mode()), global,
965 context, state1, state2, global, check_true);
966
967 // Slow case, because variable potentially shadowed. Perform dynamic lookup.
968 uint32_t check_bitset = DynamicGlobalAccess::kFullCheckRequired;
969 Node* slow = graph()->NewNode(
970 javascript()->LoadDynamicGlobal(access.name(), check_bitset,
971 access.feedback(), access.mode()),
972 context, context, state1, state2, effect, check_false);
973
974 // Replace value, effect and control uses accordingly.
975 Node* new_control =
976 graph()->NewNode(common()->Merge(2), check_true, check_false);
977 Node* new_effect =
978 graph()->NewNode(common()->EffectPhi(2), fast, slow, new_control);
979 Node* new_value = graph()->NewNode(common()->Phi(kMachAnyTagged, 2), fast,
980 slow, new_control);
981 ReplaceWithValue(node, new_value, new_effect, new_control);
982 return Changed(node);
983 }
984
985
927 Reduction JSTypedLowering::ReduceJSCreateClosure(Node* node) { 986 Reduction JSTypedLowering::ReduceJSCreateClosure(Node* node) {
928 DCHECK_EQ(IrOpcode::kJSCreateClosure, node->opcode()); 987 DCHECK_EQ(IrOpcode::kJSCreateClosure, node->opcode());
929 CreateClosureParameters const& p = CreateClosureParametersOf(node->op()); 988 CreateClosureParameters const& p = CreateClosureParametersOf(node->op());
930 Handle<SharedFunctionInfo> shared = p.shared_info(); 989 Handle<SharedFunctionInfo> shared = p.shared_info();
931 990
932 // Use the FastNewClosureStub that allocates in new space only for nested 991 // Use the FastNewClosureStub that allocates in new space only for nested
933 // functions that don't need literals cloning. 992 // functions that don't need literals cloning.
934 if (p.pretenure() == NOT_TENURED && shared->num_literals() == 0) { 993 if (p.pretenure() == NOT_TENURED && shared->num_literals() == 0) {
935 Isolate* isolate = jsgraph()->isolate(); 994 Isolate* isolate = jsgraph()->isolate();
936 Callable callable = CodeFactory::FastNewClosure( 995 Callable callable = CodeFactory::FastNewClosure(
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1422 case IrOpcode::kJSLoadNamed: 1481 case IrOpcode::kJSLoadNamed:
1423 return ReduceJSLoadNamed(node); 1482 return ReduceJSLoadNamed(node);
1424 case IrOpcode::kJSLoadProperty: 1483 case IrOpcode::kJSLoadProperty:
1425 return ReduceJSLoadProperty(node); 1484 return ReduceJSLoadProperty(node);
1426 case IrOpcode::kJSStoreProperty: 1485 case IrOpcode::kJSStoreProperty:
1427 return ReduceJSStoreProperty(node); 1486 return ReduceJSStoreProperty(node);
1428 case IrOpcode::kJSLoadContext: 1487 case IrOpcode::kJSLoadContext:
1429 return ReduceJSLoadContext(node); 1488 return ReduceJSLoadContext(node);
1430 case IrOpcode::kJSStoreContext: 1489 case IrOpcode::kJSStoreContext:
1431 return ReduceJSStoreContext(node); 1490 return ReduceJSStoreContext(node);
1491 case IrOpcode::kJSLoadDynamicGlobal:
1492 return ReduceJSLoadDynamicGlobal(node);
1432 case IrOpcode::kJSCreateClosure: 1493 case IrOpcode::kJSCreateClosure:
1433 return ReduceJSCreateClosure(node); 1494 return ReduceJSCreateClosure(node);
1434 case IrOpcode::kJSCreateLiteralArray: 1495 case IrOpcode::kJSCreateLiteralArray:
1435 return ReduceJSCreateLiteralArray(node); 1496 return ReduceJSCreateLiteralArray(node);
1436 case IrOpcode::kJSCreateLiteralObject: 1497 case IrOpcode::kJSCreateLiteralObject:
1437 return ReduceJSCreateLiteralObject(node); 1498 return ReduceJSCreateLiteralObject(node);
1438 case IrOpcode::kJSCreateWithContext: 1499 case IrOpcode::kJSCreateWithContext:
1439 return ReduceJSCreateWithContext(node); 1500 return ReduceJSCreateWithContext(node);
1440 case IrOpcode::kJSCreateBlockContext: 1501 case IrOpcode::kJSCreateBlockContext:
1441 return ReduceJSCreateBlockContext(node); 1502 return ReduceJSCreateBlockContext(node);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1477 } 1538 }
1478 1539
1479 1540
1480 MachineOperatorBuilder* JSTypedLowering::machine() const { 1541 MachineOperatorBuilder* JSTypedLowering::machine() const {
1481 return jsgraph()->machine(); 1542 return jsgraph()->machine();
1482 } 1543 }
1483 1544
1484 } // namespace compiler 1545 } // namespace compiler
1485 } // namespace internal 1546 } // namespace internal
1486 } // namespace v8 1547 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698