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

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

Issue 2599683002: [turbofan] Introduce a dedicated StringCharAt operator. (Closed)
Patch Set: Created 4 years 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 289
290 const Operator* SpeculativeNumberLessThan(NumberOperationHint hint); 290 const Operator* SpeculativeNumberLessThan(NumberOperationHint hint);
291 const Operator* SpeculativeNumberLessThanOrEqual(NumberOperationHint hint); 291 const Operator* SpeculativeNumberLessThanOrEqual(NumberOperationHint hint);
292 const Operator* SpeculativeNumberEqual(NumberOperationHint hint); 292 const Operator* SpeculativeNumberEqual(NumberOperationHint hint);
293 293
294 const Operator* ReferenceEqual(); 294 const Operator* ReferenceEqual();
295 295
296 const Operator* StringEqual(); 296 const Operator* StringEqual();
297 const Operator* StringLessThan(); 297 const Operator* StringLessThan();
298 const Operator* StringLessThanOrEqual(); 298 const Operator* StringLessThanOrEqual();
299 const Operator* StringCharAt();
299 const Operator* StringCharCodeAt(); 300 const Operator* StringCharCodeAt();
300 const Operator* StringFromCharCode(); 301 const Operator* StringFromCharCode();
301 const Operator* StringFromCodePoint(UnicodeEncoding encoding); 302 const Operator* StringFromCodePoint(UnicodeEncoding encoding);
302 303
303 const Operator* PlainPrimitiveToNumber(); 304 const Operator* PlainPrimitiveToNumber();
304 const Operator* PlainPrimitiveToWord32(); 305 const Operator* PlainPrimitiveToWord32();
305 const Operator* PlainPrimitiveToFloat64(); 306 const Operator* PlainPrimitiveToFloat64();
306 307
307 const Operator* ChangeTaggedSignedToInt32(); 308 const Operator* ChangeTaggedSignedToInt32();
308 const Operator* ChangeTaggedToInt32(); 309 const Operator* ChangeTaggedToInt32();
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 Zone* const zone_; 406 Zone* const zone_;
406 407
407 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 408 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
408 }; 409 };
409 410
410 } // namespace compiler 411 } // namespace compiler
411 } // namespace internal 412 } // namespace internal
412 } // namespace v8 413 } // namespace v8
413 414
414 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 415 #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