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

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

Issue 2181943003: [turbofan] Introduce CheckString simplified operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/compiler/operator.h" 10 #include "src/compiler/operator.h"
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 const Operator* ChangeUint32ToTagged(); 266 const Operator* ChangeUint32ToTagged();
267 const Operator* ChangeFloat64ToTagged(); 267 const Operator* ChangeFloat64ToTagged();
268 const Operator* ChangeTaggedToBit(); 268 const Operator* ChangeTaggedToBit();
269 const Operator* ChangeBitToTagged(); 269 const Operator* ChangeBitToTagged();
270 const Operator* TruncateTaggedToWord32(); 270 const Operator* TruncateTaggedToWord32();
271 const Operator* TruncateTaggedToFloat64(); 271 const Operator* TruncateTaggedToFloat64();
272 272
273 const Operator* CheckIf(); 273 const Operator* CheckIf();
274 const Operator* CheckBounds(); 274 const Operator* CheckBounds();
275 const Operator* CheckNumber(); 275 const Operator* CheckNumber();
276 const Operator* CheckString();
276 const Operator* CheckTaggedPointer(); 277 const Operator* CheckTaggedPointer();
277 const Operator* CheckTaggedSigned(); 278 const Operator* CheckTaggedSigned();
278 279
279 const Operator* CheckedInt32Add(); 280 const Operator* CheckedInt32Add();
280 const Operator* CheckedInt32Sub(); 281 const Operator* CheckedInt32Sub();
281 const Operator* CheckedInt32Div(); 282 const Operator* CheckedInt32Div();
282 const Operator* CheckedInt32Mod(); 283 const Operator* CheckedInt32Mod();
283 const Operator* CheckedUint32Div(); 284 const Operator* CheckedUint32Div();
284 const Operator* CheckedUint32Mod(); 285 const Operator* CheckedUint32Mod();
285 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); 286 const Operator* CheckedInt32Mul(CheckForMinusZeroMode);
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 Zone* const zone_; 326 Zone* const zone_;
326 327
327 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 328 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
328 }; 329 };
329 330
330 } // namespace compiler 331 } // namespace compiler
331 } // namespace internal 332 } // namespace internal
332 } // namespace v8 333 } // namespace v8
333 334
334 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 335 #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