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

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

Issue 2035893004: [turbofan] Introduce a dedicated CheckBounds operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE Created 4 years, 6 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/type-hints.h" 10 #include "src/compiler/type-hints.h"
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 const Operator* ChangeTaggedToFloat64(); 210 const Operator* ChangeTaggedToFloat64();
211 const Operator* ChangeInt31ToTaggedSigned(); 211 const Operator* ChangeInt31ToTaggedSigned();
212 const Operator* ChangeInt32ToTagged(); 212 const Operator* ChangeInt32ToTagged();
213 const Operator* ChangeUint32ToTagged(); 213 const Operator* ChangeUint32ToTagged();
214 const Operator* ChangeFloat64ToTagged(); 214 const Operator* ChangeFloat64ToTagged();
215 const Operator* ChangeTaggedToBit(); 215 const Operator* ChangeTaggedToBit();
216 const Operator* ChangeBitToTagged(); 216 const Operator* ChangeBitToTagged();
217 const Operator* TruncateTaggedToWord32(); 217 const Operator* TruncateTaggedToWord32();
218 const Operator* TruncateTaggedToFloat64(); 218 const Operator* TruncateTaggedToFloat64();
219 219
220 const Operator* CheckBounds();
221
220 const Operator* CheckedUint32ToInt32(); 222 const Operator* CheckedUint32ToInt32();
221 const Operator* CheckedFloat64ToInt32(); 223 const Operator* CheckedFloat64ToInt32();
222 const Operator* CheckedTaggedToInt32(); 224 const Operator* CheckedTaggedToInt32();
223 const Operator* CheckedTaggedToFloat64(); 225 const Operator* CheckedTaggedToFloat64();
224 226
225 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); 227 const Operator* CheckFloat64Hole(CheckFloat64HoleMode);
226 const Operator* CheckTaggedHole(CheckTaggedHoleMode); 228 const Operator* CheckTaggedHole(CheckTaggedHoleMode);
227 const Operator* CheckIf(); 229 const Operator* CheckIf();
228 230
229 const Operator* ObjectIsCallable(); 231 const Operator* ObjectIsCallable();
(...skipping 29 matching lines...) Expand all
259 Zone* const zone_; 261 Zone* const zone_;
260 262
261 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 263 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
262 }; 264 };
263 265
264 } // namespace compiler 266 } // namespace compiler
265 } // namespace internal 267 } // namespace internal
266 } // namespace v8 268 } // namespace v8
267 269
268 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 270 #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