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

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

Issue 1291973002: [runtime] Remove useless DELETE builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « src/builtins.h ('k') | src/full-codegen/arm/full-codegen-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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
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
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
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/full-codegen/arm/full-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698