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

Side by Side Diff: src/builtins/builtins-number.cc

Issue 2727003006: [turbofan] Drop obsolete unused JSStrictNotEqual operator. (Closed)
Patch Set: Created 3 years, 9 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/builtins.h ('k') | src/code-factory.h » ('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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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/builtins/builtins-utils.h" 5 #include "src/builtins/builtins-utils.h"
6 #include "src/builtins/builtins.h" 6 #include "src/builtins/builtins.h"
7 #include "src/code-factory.h" 7 #include "src/code-factory.h"
8 #include "src/code-stub-assembler.h" 8 #include "src/code-stub-assembler.h"
9 #include "src/conversions.h" 9 #include "src/conversions.h"
10 #include "src/counters.h" 10 #include "src/counters.h"
(...skipping 1585 matching lines...) Expand 10 before | Expand all | Expand 10 after
1596 Node* context = Parameter(2); 1596 Node* context = Parameter(2);
1597 1597
1598 Return(Equal(kNegateResult, lhs, rhs, context)); 1598 Return(Equal(kNegateResult, lhs, rhs, context));
1599 } 1599 }
1600 1600
1601 TF_BUILTIN(StrictEqual, CodeStubAssembler) { 1601 TF_BUILTIN(StrictEqual, CodeStubAssembler) {
1602 Node* lhs = Parameter(0); 1602 Node* lhs = Parameter(0);
1603 Node* rhs = Parameter(1); 1603 Node* rhs = Parameter(1);
1604 Node* context = Parameter(2); 1604 Node* context = Parameter(2);
1605 1605
1606 Return(StrictEqual(kDontNegateResult, lhs, rhs, context)); 1606 Return(StrictEqual(lhs, rhs, context));
1607 }
1608
1609 TF_BUILTIN(StrictNotEqual, CodeStubAssembler) {
1610 Node* lhs = Parameter(0);
1611 Node* rhs = Parameter(1);
1612 Node* context = Parameter(2);
1613
1614 Return(StrictEqual(kNegateResult, lhs, rhs, context));
1615 } 1607 }
1616 1608
1617 } // namespace internal 1609 } // namespace internal
1618 } // namespace v8 1610 } // namespace v8
OLDNEW
« no previous file with comments | « src/builtins/builtins.h ('k') | src/code-factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698