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

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

Issue 2082523002: [turbofan] Introduce CheckTaggedSigned and CheckTaggedPointer operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compile 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/machine-operator.cc ('k') | src/compiler/operator.h » ('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 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 V(ChangeTaggedToInt32) \ 229 V(ChangeTaggedToInt32) \
230 V(ChangeTaggedToUint32) \ 230 V(ChangeTaggedToUint32) \
231 V(ChangeTaggedToFloat64) \ 231 V(ChangeTaggedToFloat64) \
232 V(ChangeInt31ToTaggedSigned) \ 232 V(ChangeInt31ToTaggedSigned) \
233 V(ChangeInt32ToTagged) \ 233 V(ChangeInt32ToTagged) \
234 V(ChangeUint32ToTagged) \ 234 V(ChangeUint32ToTagged) \
235 V(ChangeFloat64ToTagged) \ 235 V(ChangeFloat64ToTagged) \
236 V(ChangeTaggedToBit) \ 236 V(ChangeTaggedToBit) \
237 V(ChangeBitToTagged) \ 237 V(ChangeBitToTagged) \
238 V(CheckBounds) \ 238 V(CheckBounds) \
239 V(CheckTaggedPointer) \
240 V(CheckTaggedSigned) \
239 V(CheckedUint32ToInt32) \ 241 V(CheckedUint32ToInt32) \
240 V(CheckedFloat64ToInt32) \ 242 V(CheckedFloat64ToInt32) \
241 V(CheckedTaggedToInt32) \ 243 V(CheckedTaggedToInt32) \
242 V(CheckedTaggedToFloat64) \ 244 V(CheckedTaggedToFloat64) \
243 V(CheckFloat64Hole) \ 245 V(CheckFloat64Hole) \
244 V(CheckTaggedHole) \ 246 V(CheckTaggedHole) \
245 V(CheckIf) \ 247 V(CheckIf) \
246 V(TruncateTaggedToWord32) \ 248 V(TruncateTaggedToWord32) \
247 V(TruncateTaggedToFloat64) \ 249 V(TruncateTaggedToFloat64) \
248 V(Allocate) \ 250 V(Allocate) \
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 } 685 }
684 }; 686 };
685 687
686 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 688 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
687 689
688 } // namespace compiler 690 } // namespace compiler
689 } // namespace internal 691 } // namespace internal
690 } // namespace v8 692 } // namespace v8
691 693
692 #endif // V8_COMPILER_OPCODES_H_ 694 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698