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

Side by Side Diff: src/compiler/opcodes.h

Issue 2109623002: [turbofan] Introduce proper CheckNumber operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add to RedundancyElimination Created 4 years, 5 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 V(ChangeTaggedToInt32) \ 230 V(ChangeTaggedToInt32) \
231 V(ChangeTaggedToUint32) \ 231 V(ChangeTaggedToUint32) \
232 V(ChangeTaggedToFloat64) \ 232 V(ChangeTaggedToFloat64) \
233 V(ChangeInt31ToTaggedSigned) \ 233 V(ChangeInt31ToTaggedSigned) \
234 V(ChangeInt32ToTagged) \ 234 V(ChangeInt32ToTagged) \
235 V(ChangeUint32ToTagged) \ 235 V(ChangeUint32ToTagged) \
236 V(ChangeFloat64ToTagged) \ 236 V(ChangeFloat64ToTagged) \
237 V(ChangeTaggedToBit) \ 237 V(ChangeTaggedToBit) \
238 V(ChangeBitToTagged) \ 238 V(ChangeBitToTagged) \
239 V(CheckBounds) \ 239 V(CheckBounds) \
240 V(CheckNumber) \
240 V(CheckTaggedPointer) \ 241 V(CheckTaggedPointer) \
241 V(CheckTaggedSigned) \ 242 V(CheckTaggedSigned) \
242 V(CheckedInt32Add) \ 243 V(CheckedInt32Add) \
243 V(CheckedInt32Sub) \ 244 V(CheckedInt32Sub) \
244 V(CheckedUint32ToInt32) \ 245 V(CheckedUint32ToInt32) \
245 V(CheckedFloat64ToInt32) \ 246 V(CheckedFloat64ToInt32) \
246 V(CheckedTaggedToInt32) \ 247 V(CheckedTaggedToInt32) \
247 V(CheckedTaggedToFloat64) \ 248 V(CheckedTaggedToFloat64) \
248 V(CheckFloat64Hole) \ 249 V(CheckFloat64Hole) \
249 V(CheckTaggedHole) \ 250 V(CheckTaggedHole) \
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 } 689 }
689 }; 690 };
690 691
691 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 692 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
692 693
693 } // namespace compiler 694 } // namespace compiler
694 } // namespace internal 695 } // namespace internal
695 } // namespace v8 696 } // namespace v8
696 697
697 #endif // V8_COMPILER_OPCODES_H_ 698 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/redundancy-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698