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

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

Issue 2202993005: [turbofan] Don't generate unnecessary minus zero checks. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@TurboFan_SignedSmall
Patch Set: Err, DCHECK, meh 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/representation-change.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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 const Operator* CheckTaggedSigned(); 288 const Operator* CheckTaggedSigned();
289 289
290 const Operator* CheckedInt32Add(); 290 const Operator* CheckedInt32Add();
291 const Operator* CheckedInt32Sub(); 291 const Operator* CheckedInt32Sub();
292 const Operator* CheckedInt32Div(); 292 const Operator* CheckedInt32Div();
293 const Operator* CheckedInt32Mod(); 293 const Operator* CheckedInt32Mod();
294 const Operator* CheckedUint32Div(); 294 const Operator* CheckedUint32Div();
295 const Operator* CheckedUint32Mod(); 295 const Operator* CheckedUint32Mod();
296 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); 296 const Operator* CheckedInt32Mul(CheckForMinusZeroMode);
297 const Operator* CheckedUint32ToInt32(); 297 const Operator* CheckedUint32ToInt32();
298 const Operator* CheckedFloat64ToInt32(); 298 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode);
299 const Operator* CheckedTaggedSignedToInt32(); 299 const Operator* CheckedTaggedSignedToInt32();
300 const Operator* CheckedTaggedToInt32(); 300 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode);
301 const Operator* CheckedTaggedToFloat64(); 301 const Operator* CheckedTaggedToFloat64();
302 const Operator* CheckedTruncateTaggedToWord32(); 302 const Operator* CheckedTruncateTaggedToWord32();
303 303
304 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); 304 const Operator* CheckFloat64Hole(CheckFloat64HoleMode);
305 const Operator* CheckTaggedHole(CheckTaggedHoleMode); 305 const Operator* CheckTaggedHole(CheckTaggedHoleMode);
306 306
307 const Operator* ObjectIsCallable(); 307 const Operator* ObjectIsCallable();
308 const Operator* ObjectIsNumber(); 308 const Operator* ObjectIsNumber();
309 const Operator* ObjectIsReceiver(); 309 const Operator* ObjectIsReceiver();
310 const Operator* ObjectIsSmi(); 310 const Operator* ObjectIsSmi();
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 Zone* const zone_; 344 Zone* const zone_;
345 345
346 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 346 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
347 }; 347 };
348 348
349 } // namespace compiler 349 } // namespace compiler
350 } // namespace internal 350 } // namespace internal
351 } // namespace v8 351 } // namespace v8
352 352
353 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 353 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/representation-change.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698