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

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

Issue 2064163002: Revert of [turbofan] Introduce a dedicated CheckBounds operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 const Operator* ChangeTaggedToFloat64(); 185 const Operator* ChangeTaggedToFloat64();
186 const Operator* ChangeInt31ToTaggedSigned(); 186 const Operator* ChangeInt31ToTaggedSigned();
187 const Operator* ChangeInt32ToTagged(); 187 const Operator* ChangeInt32ToTagged();
188 const Operator* ChangeUint32ToTagged(); 188 const Operator* ChangeUint32ToTagged();
189 const Operator* ChangeFloat64ToTagged(); 189 const Operator* ChangeFloat64ToTagged();
190 const Operator* ChangeTaggedToBit(); 190 const Operator* ChangeTaggedToBit();
191 const Operator* ChangeBitToTagged(); 191 const Operator* ChangeBitToTagged();
192 const Operator* TruncateTaggedToWord32(); 192 const Operator* TruncateTaggedToWord32();
193 const Operator* TruncateTaggedToFloat64(); 193 const Operator* TruncateTaggedToFloat64();
194 194
195 const Operator* CheckBounds();
196
197 const Operator* CheckedUint32ToInt32(); 195 const Operator* CheckedUint32ToInt32();
198 const Operator* CheckedFloat64ToInt32(); 196 const Operator* CheckedFloat64ToInt32();
199 const Operator* CheckedTaggedToInt32(); 197 const Operator* CheckedTaggedToInt32();
200 const Operator* CheckedTaggedToFloat64(); 198 const Operator* CheckedTaggedToFloat64();
201 199
202 const Operator* CheckIf(); 200 const Operator* CheckIf();
203 201
204 const Operator* ObjectIsCallable(); 202 const Operator* ObjectIsCallable();
205 const Operator* ObjectIsNumber(); 203 const Operator* ObjectIsNumber();
206 const Operator* ObjectIsReceiver(); 204 const Operator* ObjectIsReceiver();
(...skipping 27 matching lines...) Expand all
234 Zone* const zone_; 232 Zone* const zone_;
235 233
236 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 234 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
237 }; 235 };
238 236
239 } // namespace compiler 237 } // namespace compiler
240 } // namespace internal 238 } // namespace internal
241 } // namespace v8 239 } // namespace v8
242 240
243 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 241 #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