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

Side by Side Diff: src/code-factory.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 | « src/builtins/builtins-number.cc ('k') | src/code-factory.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_CODE_FACTORY_H_ 5 #ifndef V8_CODE_FACTORY_H_
6 #define V8_CODE_FACTORY_H_ 6 #define V8_CODE_FACTORY_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 static Callable BitwiseAnd(Isolate* isolate); 112 static Callable BitwiseAnd(Isolate* isolate);
113 static Callable BitwiseOr(Isolate* isolate); 113 static Callable BitwiseOr(Isolate* isolate);
114 static Callable BitwiseXor(Isolate* isolate); 114 static Callable BitwiseXor(Isolate* isolate);
115 static Callable LessThan(Isolate* isolate); 115 static Callable LessThan(Isolate* isolate);
116 static Callable LessThanOrEqual(Isolate* isolate); 116 static Callable LessThanOrEqual(Isolate* isolate);
117 static Callable GreaterThan(Isolate* isolate); 117 static Callable GreaterThan(Isolate* isolate);
118 static Callable GreaterThanOrEqual(Isolate* isolate); 118 static Callable GreaterThanOrEqual(Isolate* isolate);
119 static Callable Equal(Isolate* isolate); 119 static Callable Equal(Isolate* isolate);
120 static Callable NotEqual(Isolate* isolate); 120 static Callable NotEqual(Isolate* isolate);
121 static Callable StrictEqual(Isolate* isolate); 121 static Callable StrictEqual(Isolate* isolate);
122 static Callable StrictNotEqual(Isolate* isolate);
123 122
124 static Callable StringAdd(Isolate* isolate, StringAddFlags flags, 123 static Callable StringAdd(Isolate* isolate, StringAddFlags flags,
125 PretenureFlag pretenure_flag); 124 PretenureFlag pretenure_flag);
126 static Callable StringCharAt(Isolate* isolate); 125 static Callable StringCharAt(Isolate* isolate);
127 static Callable StringCharCodeAt(Isolate* isolate); 126 static Callable StringCharCodeAt(Isolate* isolate);
128 static Callable StringCompare(Isolate* isolate, Token::Value token); 127 static Callable StringCompare(Isolate* isolate, Token::Value token);
129 static Callable StringEqual(Isolate* isolate); 128 static Callable StringEqual(Isolate* isolate);
130 static Callable StringNotEqual(Isolate* isolate); 129 static Callable StringNotEqual(Isolate* isolate);
131 static Callable StringLessThan(Isolate* isolate); 130 static Callable StringLessThan(Isolate* isolate);
132 static Callable StringLessThanOrEqual(Isolate* isolate); 131 static Callable StringLessThanOrEqual(Isolate* isolate);
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 static Callable ArrayConstructor(Isolate* isolate); 194 static Callable ArrayConstructor(Isolate* isolate);
196 static Callable ArrayPush(Isolate* isolate); 195 static Callable ArrayPush(Isolate* isolate);
197 static Callable FunctionPrototypeBind(Isolate* isolate); 196 static Callable FunctionPrototypeBind(Isolate* isolate);
198 static Callable PromiseHandleReject(Isolate* isolate); 197 static Callable PromiseHandleReject(Isolate* isolate);
199 }; 198 };
200 199
201 } // namespace internal 200 } // namespace internal
202 } // namespace v8 201 } // namespace v8
203 202
204 #endif // V8_CODE_FACTORY_H_ 203 #endif // V8_CODE_FACTORY_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-number.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698