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

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

Issue 2074903002: [turbofan] Numeric type feedback for mul, div and mod. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase 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/js-typed-lowering.cc ('k') | src/compiler/operation-typer.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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 175
176 #define SIMPLIFIED_OP_LIST(V) \ 176 #define SIMPLIFIED_OP_LIST(V) \
177 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 177 SIMPLIFIED_COMPARE_BINOP_LIST(V) \
178 V(PlainPrimitiveToNumber) \ 178 V(PlainPrimitiveToNumber) \
179 V(PlainPrimitiveToWord32) \ 179 V(PlainPrimitiveToWord32) \
180 V(PlainPrimitiveToFloat64) \ 180 V(PlainPrimitiveToFloat64) \
181 V(BooleanNot) \ 181 V(BooleanNot) \
182 V(BooleanToNumber) \ 182 V(BooleanToNumber) \
183 V(SpeculativeNumberAdd) \ 183 V(SpeculativeNumberAdd) \
184 V(SpeculativeNumberSubtract) \ 184 V(SpeculativeNumberSubtract) \
185 V(SpeculativeNumberMultiply) \
186 V(SpeculativeNumberDivide) \
187 V(SpeculativeNumberModulus) \
185 V(SpeculativeNumberEqual) \ 188 V(SpeculativeNumberEqual) \
186 V(SpeculativeNumberLessThan) \ 189 V(SpeculativeNumberLessThan) \
187 V(SpeculativeNumberLessThanOrEqual) \ 190 V(SpeculativeNumberLessThanOrEqual) \
188 V(NumberAdd) \ 191 V(NumberAdd) \
189 V(NumberSubtract) \ 192 V(NumberSubtract) \
190 V(NumberMultiply) \ 193 V(NumberMultiply) \
191 V(NumberDivide) \ 194 V(NumberDivide) \
192 V(NumberModulus) \ 195 V(NumberModulus) \
193 V(NumberBitwiseOr) \ 196 V(NumberBitwiseOr) \
194 V(NumberBitwiseXor) \ 197 V(NumberBitwiseXor) \
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 } 677 }
675 }; 678 };
676 679
677 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 680 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
678 681
679 } // namespace compiler 682 } // namespace compiler
680 } // namespace internal 683 } // namespace internal
681 } // namespace v8 684 } // namespace v8
682 685
683 #endif // V8_COMPILER_OPCODES_H_ 686 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/operation-typer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698