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

Side by Side Diff: src/code-factory.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/code-factory.h ('k') | src/code-stub-assembler.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 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 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
9 #include "src/objects-inl.h" 9 #include "src/objects-inl.h"
10 10
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 TFS_BUILTIN(ShiftLeft) 232 TFS_BUILTIN(ShiftLeft)
233 TFS_BUILTIN(ShiftRight) 233 TFS_BUILTIN(ShiftRight)
234 TFS_BUILTIN(ShiftRightLogical) 234 TFS_BUILTIN(ShiftRightLogical)
235 TFS_BUILTIN(LessThan) 235 TFS_BUILTIN(LessThan)
236 TFS_BUILTIN(LessThanOrEqual) 236 TFS_BUILTIN(LessThanOrEqual)
237 TFS_BUILTIN(GreaterThan) 237 TFS_BUILTIN(GreaterThan)
238 TFS_BUILTIN(GreaterThanOrEqual) 238 TFS_BUILTIN(GreaterThanOrEqual)
239 TFS_BUILTIN(Equal) 239 TFS_BUILTIN(Equal)
240 TFS_BUILTIN(NotEqual) 240 TFS_BUILTIN(NotEqual)
241 TFS_BUILTIN(StrictEqual) 241 TFS_BUILTIN(StrictEqual)
242 TFS_BUILTIN(StrictNotEqual)
243 TFS_BUILTIN(CreateIterResultObject) 242 TFS_BUILTIN(CreateIterResultObject)
244 TFS_BUILTIN(HasProperty) 243 TFS_BUILTIN(HasProperty)
245 TFS_BUILTIN(NonNumberToNumber) 244 TFS_BUILTIN(NonNumberToNumber)
246 TFS_BUILTIN(StringToNumber) 245 TFS_BUILTIN(StringToNumber)
247 TFS_BUILTIN(ToBoolean) 246 TFS_BUILTIN(ToBoolean)
248 TFS_BUILTIN(ToInteger) 247 TFS_BUILTIN(ToInteger)
249 TFS_BUILTIN(ToLength) 248 TFS_BUILTIN(ToLength)
250 TFS_BUILTIN(ToName) 249 TFS_BUILTIN(ToName)
251 TFS_BUILTIN(ToNumber) 250 TFS_BUILTIN(ToNumber)
252 TFS_BUILTIN(ToObject) 251 TFS_BUILTIN(ToObject)
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 } 499 }
501 500
502 // static 501 // static
503 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) { 502 Callable CodeFactory::FunctionPrototypeBind(Isolate* isolate) {
504 return Callable(isolate->builtins()->FunctionPrototypeBind(), 503 return Callable(isolate->builtins()->FunctionPrototypeBind(),
505 BuiltinDescriptor(isolate)); 504 BuiltinDescriptor(isolate));
506 } 505 }
507 506
508 } // namespace internal 507 } // namespace internal
509 } // namespace v8 508 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-factory.h ('k') | src/code-stub-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698