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/code-stubs.h" | 6 #include "src/code-stubs.h" |
7 #include "src/compiler/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
8 #include "src/compiler/js-generic-lowering.h" | 8 #include "src/compiler/js-generic-lowering.h" |
9 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
10 #include "src/compiler/machine-operator.h" | 10 #include "src/compiler/machine-operator.h" |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 node->RemoveInput(3); | 423 node->RemoveInput(3); |
424 } | 424 } |
425 ReplaceWithStubCall(node, callable, | 425 ReplaceWithStubCall(node, callable, |
426 CallDescriptor::kPatchableCallSite | flags); | 426 CallDescriptor::kPatchableCallSite | flags); |
427 } | 427 } |
428 } | 428 } |
429 | 429 |
430 | 430 |
431 void JSGenericLowering::LowerJSDeleteProperty(Node* node) { | 431 void JSGenericLowering::LowerJSDeleteProperty(Node* node) { |
432 LanguageMode language_mode = OpParameter<LanguageMode>(node); | 432 LanguageMode language_mode = OpParameter<LanguageMode>(node); |
433 ReplaceWithBuiltinCall(node, Builtins::DELETE, 3); | 433 ReplaceWithRuntimeCall(node, is_strict(language_mode) |
434 node->InsertInput(zone(), 4, jsgraph()->SmiConstant(language_mode)); | 434 ? Runtime::kDeleteProperty_Strict |
| 435 : Runtime::kDeleteProperty_Sloppy); |
435 } | 436 } |
436 | 437 |
437 | 438 |
438 void JSGenericLowering::LowerJSHasProperty(Node* node) { | 439 void JSGenericLowering::LowerJSHasProperty(Node* node) { |
439 ReplaceWithBuiltinCall(node, Builtins::IN, 2); | 440 ReplaceWithBuiltinCall(node, Builtins::IN, 2); |
440 } | 441 } |
441 | 442 |
442 | 443 |
443 void JSGenericLowering::LowerJSInstanceOf(Node* node) { | 444 void JSGenericLowering::LowerJSInstanceOf(Node* node) { |
444 CallDescriptor::Flags flags = AdjustFrameStatesForCall(node); | 445 CallDescriptor::Flags flags = AdjustFrameStatesForCall(node); |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 } | 849 } |
849 | 850 |
850 | 851 |
851 MachineOperatorBuilder* JSGenericLowering::machine() const { | 852 MachineOperatorBuilder* JSGenericLowering::machine() const { |
852 return jsgraph()->machine(); | 853 return jsgraph()->machine(); |
853 } | 854 } |
854 | 855 |
855 } // namespace compiler | 856 } // namespace compiler |
856 } // namespace internal | 857 } // namespace internal |
857 } // namespace v8 | 858 } // namespace v8 |
OLD | NEW |