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

Side by Side Diff: src/builtins/builtins.h

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 | « no previous file | src/builtins/builtins-number.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 #ifndef V8_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 TFS(ShiftLeft, BUILTIN, kNoExtraICState, BinaryOp, 1) \ 597 TFS(ShiftLeft, BUILTIN, kNoExtraICState, BinaryOp, 1) \
598 TFS(ShiftRight, BUILTIN, kNoExtraICState, BinaryOp, 1) \ 598 TFS(ShiftRight, BUILTIN, kNoExtraICState, BinaryOp, 1) \
599 TFS(ShiftRightLogical, BUILTIN, kNoExtraICState, BinaryOp, 1) \ 599 TFS(ShiftRightLogical, BUILTIN, kNoExtraICState, BinaryOp, 1) \
600 TFS(LessThan, BUILTIN, kNoExtraICState, Compare, 1) \ 600 TFS(LessThan, BUILTIN, kNoExtraICState, Compare, 1) \
601 TFS(LessThanOrEqual, BUILTIN, kNoExtraICState, Compare, 1) \ 601 TFS(LessThanOrEqual, BUILTIN, kNoExtraICState, Compare, 1) \
602 TFS(GreaterThan, BUILTIN, kNoExtraICState, Compare, 1) \ 602 TFS(GreaterThan, BUILTIN, kNoExtraICState, Compare, 1) \
603 TFS(GreaterThanOrEqual, BUILTIN, kNoExtraICState, Compare, 1) \ 603 TFS(GreaterThanOrEqual, BUILTIN, kNoExtraICState, Compare, 1) \
604 TFS(Equal, BUILTIN, kNoExtraICState, Compare, 1) \ 604 TFS(Equal, BUILTIN, kNoExtraICState, Compare, 1) \
605 TFS(NotEqual, BUILTIN, kNoExtraICState, Compare, 1) \ 605 TFS(NotEqual, BUILTIN, kNoExtraICState, Compare, 1) \
606 TFS(StrictEqual, BUILTIN, kNoExtraICState, Compare, 1) \ 606 TFS(StrictEqual, BUILTIN, kNoExtraICState, Compare, 1) \
607 TFS(StrictNotEqual, BUILTIN, kNoExtraICState, Compare, 1) \
608 \ 607 \
609 /* Object */ \ 608 /* Object */ \
610 CPP(ObjectAssign) \ 609 CPP(ObjectAssign) \
611 TFJ(ObjectCreate, 2) \ 610 TFJ(ObjectCreate, 2) \
612 CPP(ObjectDefineGetter) \ 611 CPP(ObjectDefineGetter) \
613 CPP(ObjectDefineProperties) \ 612 CPP(ObjectDefineProperties) \
614 CPP(ObjectDefineProperty) \ 613 CPP(ObjectDefineProperty) \
615 CPP(ObjectDefineSetter) \ 614 CPP(ObjectDefineSetter) \
616 CPP(ObjectEntries) \ 615 CPP(ObjectEntries) \
617 CPP(ObjectFreeze) \ 616 CPP(ObjectFreeze) \
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 994
996 friend class Isolate; 995 friend class Isolate;
997 996
998 DISALLOW_COPY_AND_ASSIGN(Builtins); 997 DISALLOW_COPY_AND_ASSIGN(Builtins);
999 }; 998 };
1000 999
1001 } // namespace internal 1000 } // namespace internal
1002 } // namespace v8 1001 } // namespace v8
1003 1002
1004 #endif // V8_BUILTINS_BUILTINS_H_ 1003 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/builtins-number.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698