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

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

Issue 2138633002: [turbofan] Introduce CheckedInt32Div and CheckedInt32Mod operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comments 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
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/redundancy-elimination.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 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 V(ChangeUint32ToTagged) \ 173 V(ChangeUint32ToTagged) \
174 V(ChangeFloat64ToTagged) \ 174 V(ChangeFloat64ToTagged) \
175 V(ChangeTaggedToBit) \ 175 V(ChangeTaggedToBit) \
176 V(ChangeBitToTagged) \ 176 V(ChangeBitToTagged) \
177 V(TruncateTaggedToWord32) \ 177 V(TruncateTaggedToWord32) \
178 V(TruncateTaggedToFloat64) 178 V(TruncateTaggedToFloat64)
179 179
180 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ 180 #define SIMPLIFIED_CHECKED_OP_LIST(V) \
181 V(CheckedInt32Add) \ 181 V(CheckedInt32Add) \
182 V(CheckedInt32Sub) \ 182 V(CheckedInt32Sub) \
183 V(CheckedInt32Div) \
184 V(CheckedInt32Mod) \
183 V(CheckedUint32ToInt32) \ 185 V(CheckedUint32ToInt32) \
184 V(CheckedFloat64ToInt32) \ 186 V(CheckedFloat64ToInt32) \
185 V(CheckedTaggedToInt32) \ 187 V(CheckedTaggedToInt32) \
186 V(CheckedTaggedToFloat64) 188 V(CheckedTaggedToFloat64)
187 189
188 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 190 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \
189 V(NumberEqual) \ 191 V(NumberEqual) \
190 V(NumberLessThan) \ 192 V(NumberLessThan) \
191 V(NumberLessThanOrEqual) \ 193 V(NumberLessThanOrEqual) \
192 V(ReferenceEqual) \ 194 V(ReferenceEqual) \
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 } 715 }
714 }; 716 };
715 717
716 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 718 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
717 719
718 } // namespace compiler 720 } // namespace compiler
719 } // namespace internal 721 } // namespace internal
720 } // namespace v8 722 } // namespace v8
721 723
722 #endif // V8_COMPILER_OPCODES_H_ 724 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/redundancy-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698