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

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

Issue 2141953002: [Turbofan]: Add integer multiplication with overflow to typed lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@multiply
Patch Set: Code 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) \ 183 V(CheckedInt32Div) \
184 V(CheckedInt32Mod) \ 184 V(CheckedInt32Mod) \
185 V(CheckedUint32Div) \ 185 V(CheckedUint32Div) \
186 V(CheckedUint32Mod) \ 186 V(CheckedUint32Mod) \
187 V(CheckedInt32Mul) \
187 V(CheckedUint32ToInt32) \ 188 V(CheckedUint32ToInt32) \
188 V(CheckedFloat64ToInt32) \ 189 V(CheckedFloat64ToInt32) \
189 V(CheckedTaggedToInt32) \ 190 V(CheckedTaggedToInt32) \
190 V(CheckedTaggedToFloat64) 191 V(CheckedTaggedToFloat64)
191 192
192 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 193 #define SIMPLIFIED_COMPARE_BINOP_LIST(V) \
193 V(NumberEqual) \ 194 V(NumberEqual) \
194 V(NumberLessThan) \ 195 V(NumberLessThan) \
195 V(NumberLessThanOrEqual) \ 196 V(NumberLessThanOrEqual) \
196 V(ReferenceEqual) \ 197 V(ReferenceEqual) \
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 } 717 }
717 }; 718 };
718 719
719 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 720 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
720 721
721 } // namespace compiler 722 } // namespace compiler
722 } // namespace internal 723 } // namespace internal
723 } // namespace v8 724 } // namespace v8
724 725
725 #endif // V8_COMPILER_OPCODES_H_ 726 #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