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

Side by Side Diff: src/compiler/simplified-operator.h

Issue 2657243002: [turbofan] Introduce dedicated StringIndexOf operator. (Closed)
Patch Set: Created 3 years, 10 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/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.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 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 349
350 const Operator* ReferenceEqual(); 350 const Operator* ReferenceEqual();
351 351
352 const Operator* StringEqual(); 352 const Operator* StringEqual();
353 const Operator* StringLessThan(); 353 const Operator* StringLessThan();
354 const Operator* StringLessThanOrEqual(); 354 const Operator* StringLessThanOrEqual();
355 const Operator* StringCharAt(); 355 const Operator* StringCharAt();
356 const Operator* StringCharCodeAt(); 356 const Operator* StringCharCodeAt();
357 const Operator* StringFromCharCode(); 357 const Operator* StringFromCharCode();
358 const Operator* StringFromCodePoint(UnicodeEncoding encoding); 358 const Operator* StringFromCodePoint(UnicodeEncoding encoding);
359 const Operator* StringIndexOf();
359 360
360 const Operator* PlainPrimitiveToNumber(); 361 const Operator* PlainPrimitiveToNumber();
361 const Operator* PlainPrimitiveToWord32(); 362 const Operator* PlainPrimitiveToWord32();
362 const Operator* PlainPrimitiveToFloat64(); 363 const Operator* PlainPrimitiveToFloat64();
363 364
364 const Operator* ChangeTaggedSignedToInt32(); 365 const Operator* ChangeTaggedSignedToInt32();
365 const Operator* ChangeTaggedToInt32(); 366 const Operator* ChangeTaggedToInt32();
366 const Operator* ChangeTaggedToUint32(); 367 const Operator* ChangeTaggedToUint32();
367 const Operator* ChangeTaggedToFloat64(); 368 const Operator* ChangeTaggedToFloat64();
368 const Operator* ChangeInt31ToTaggedSigned(); 369 const Operator* ChangeInt31ToTaggedSigned();
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 Zone* const zone_; 466 Zone* const zone_;
466 467
467 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 468 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
468 }; 469 };
469 470
470 } // namespace compiler 471 } // namespace compiler
471 } // namespace internal 472 } // namespace internal
472 } // namespace v8 473 } // namespace v8
473 474
474 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 475 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698