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

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

Issue 2167593002: [turbofan] Introduce TruncateTaggedToBit operator for ToBoolean truncation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix remaining bugs. Created 4 years, 3 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/effect-control-linearizer.cc ('k') | src/compiler/representation-change.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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 V(ChangeTaggedToInt32) \ 172 V(ChangeTaggedToInt32) \
173 V(ChangeTaggedToUint32) \ 173 V(ChangeTaggedToUint32) \
174 V(ChangeTaggedToFloat64) \ 174 V(ChangeTaggedToFloat64) \
175 V(ChangeInt31ToTaggedSigned) \ 175 V(ChangeInt31ToTaggedSigned) \
176 V(ChangeInt32ToTagged) \ 176 V(ChangeInt32ToTagged) \
177 V(ChangeUint32ToTagged) \ 177 V(ChangeUint32ToTagged) \
178 V(ChangeFloat64ToTagged) \ 178 V(ChangeFloat64ToTagged) \
179 V(ChangeTaggedToBit) \ 179 V(ChangeTaggedToBit) \
180 V(ChangeBitToTagged) \ 180 V(ChangeBitToTagged) \
181 V(TruncateTaggedToWord32) \ 181 V(TruncateTaggedToWord32) \
182 V(TruncateTaggedToFloat64) 182 V(TruncateTaggedToFloat64) \
183 V(TruncateTaggedToBit)
183 184
184 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ 185 #define SIMPLIFIED_CHECKED_OP_LIST(V) \
185 V(CheckedInt32Add) \ 186 V(CheckedInt32Add) \
186 V(CheckedInt32Sub) \ 187 V(CheckedInt32Sub) \
187 V(CheckedInt32Div) \ 188 V(CheckedInt32Div) \
188 V(CheckedInt32Mod) \ 189 V(CheckedInt32Mod) \
189 V(CheckedUint32Div) \ 190 V(CheckedUint32Div) \
190 V(CheckedUint32Mod) \ 191 V(CheckedUint32Mod) \
191 V(CheckedInt32Mul) \ 192 V(CheckedInt32Mul) \
192 V(CheckedUint32ToInt32) \ 193 V(CheckedUint32ToInt32) \
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 } 756 }
756 }; 757 };
757 758
758 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 759 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
759 760
760 } // namespace compiler 761 } // namespace compiler
761 } // namespace internal 762 } // namespace internal
762 } // namespace v8 763 } // namespace v8
763 764
764 #endif // V8_COMPILER_OPCODES_H_ 765 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/effect-control-linearizer.cc ('k') | src/compiler/representation-change.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698