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

Side by Side Diff: src/compiler/opcodes.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/js-builtin-reducer.cc ('k') | src/compiler/simplified-lowering.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 300
301 #define SIMPLIFIED_OTHER_OP_LIST(V) \ 301 #define SIMPLIFIED_OTHER_OP_LIST(V) \
302 V(PlainPrimitiveToNumber) \ 302 V(PlainPrimitiveToNumber) \
303 V(PlainPrimitiveToWord32) \ 303 V(PlainPrimitiveToWord32) \
304 V(PlainPrimitiveToFloat64) \ 304 V(PlainPrimitiveToFloat64) \
305 V(BooleanNot) \ 305 V(BooleanNot) \
306 V(StringCharAt) \ 306 V(StringCharAt) \
307 V(StringCharCodeAt) \ 307 V(StringCharCodeAt) \
308 V(StringFromCharCode) \ 308 V(StringFromCharCode) \
309 V(StringFromCodePoint) \ 309 V(StringFromCodePoint) \
310 V(StringIndexOf) \
310 V(CheckBounds) \ 311 V(CheckBounds) \
311 V(CheckIf) \ 312 V(CheckIf) \
312 V(CheckMaps) \ 313 V(CheckMaps) \
313 V(CheckNumber) \ 314 V(CheckNumber) \
314 V(CheckInternalizedString) \ 315 V(CheckInternalizedString) \
315 V(CheckReceiver) \ 316 V(CheckReceiver) \
316 V(CheckString) \ 317 V(CheckString) \
317 V(CheckSmi) \ 318 V(CheckSmi) \
318 V(CheckHeapObject) \ 319 V(CheckHeapObject) \
319 V(CheckFloat64Hole) \ 320 V(CheckFloat64Hole) \
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 } 813 }
813 }; 814 };
814 815
815 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 816 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
816 817
817 } // namespace compiler 818 } // namespace compiler
818 } // namespace internal 819 } // namespace internal
819 } // namespace v8 820 } // namespace v8
820 821
821 #endif // V8_COMPILER_OPCODES_H_ 822 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698