| OLD | NEW |
| 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/js-graph.h" | 7 #include "src/compiler/js-graph.h" |
| 8 #include "src/compiler/js-typed-lowering.h" | 8 #include "src/compiler/js-typed-lowering.h" |
| 9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
| 10 #include "src/compiler/node-matchers.h" | 10 #include "src/compiler/node-matchers.h" |
| (...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 check_true = if_true; | 1041 check_true = if_true; |
| 1042 } | 1042 } |
| 1043 | 1043 |
| 1044 // Fast case, because variable is not shadowed. Perform global object load. | 1044 // Fast case, because variable is not shadowed. Perform global object load. |
| 1045 Node* global = graph()->NewNode( | 1045 Node* global = graph()->NewNode( |
| 1046 javascript()->LoadContext(0, Context::GLOBAL_OBJECT_INDEX, true), context, | 1046 javascript()->LoadContext(0, Context::GLOBAL_OBJECT_INDEX, true), context, |
| 1047 context, effect); | 1047 context, effect); |
| 1048 Node* fast = graph()->NewNode( | 1048 Node* fast = graph()->NewNode( |
| 1049 javascript()->LoadGlobal(access.name(), access.feedback(), | 1049 javascript()->LoadGlobal(access.name(), access.feedback(), |
| 1050 access.typeof_mode()), | 1050 access.typeof_mode()), |
| 1051 context, global, vector, context, state1, state2, global, check_true); | 1051 global, vector, context, state1, state2, global, check_true); |
| 1052 | 1052 |
| 1053 // Slow case, because variable potentially shadowed. Perform dynamic lookup. | 1053 // Slow case, because variable potentially shadowed. Perform dynamic lookup. |
| 1054 uint32_t check_bitset = DynamicGlobalAccess::kFullCheckRequired; | 1054 uint32_t check_bitset = DynamicGlobalAccess::kFullCheckRequired; |
| 1055 Node* slow = graph()->NewNode( | 1055 Node* slow = graph()->NewNode( |
| 1056 javascript()->LoadDynamicGlobal(access.name(), check_bitset, | 1056 javascript()->LoadDynamicGlobal(access.name(), check_bitset, |
| 1057 access.feedback(), access.typeof_mode()), | 1057 access.feedback(), access.typeof_mode()), |
| 1058 vector, context, context, state1, state2, effect, check_false); | 1058 vector, context, context, state1, state2, effect, check_false); |
| 1059 | 1059 |
| 1060 // Replace value, effect and control uses accordingly. | 1060 // Replace value, effect and control uses accordingly. |
| 1061 Node* new_control = | 1061 Node* new_control = |
| (...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1840 } | 1840 } |
| 1841 | 1841 |
| 1842 | 1842 |
| 1843 MachineOperatorBuilder* JSTypedLowering::machine() const { | 1843 MachineOperatorBuilder* JSTypedLowering::machine() const { |
| 1844 return jsgraph()->machine(); | 1844 return jsgraph()->machine(); |
| 1845 } | 1845 } |
| 1846 | 1846 |
| 1847 } // namespace compiler | 1847 } // namespace compiler |
| 1848 } // namespace internal | 1848 } // namespace internal |
| 1849 } // namespace v8 | 1849 } // namespace v8 |
| OLD | NEW |