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

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

Issue 2096403002: [turbofan] Introduce simplified operator NumberAbs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: This time fix the compile error for realz 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-builtin-reducer.cc ('k') | src/compiler/representation-change.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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 V(NumberMultiply) \ 193 V(NumberMultiply) \
194 V(NumberDivide) \ 194 V(NumberDivide) \
195 V(NumberModulus) \ 195 V(NumberModulus) \
196 V(NumberBitwiseOr) \ 196 V(NumberBitwiseOr) \
197 V(NumberBitwiseXor) \ 197 V(NumberBitwiseXor) \
198 V(NumberBitwiseAnd) \ 198 V(NumberBitwiseAnd) \
199 V(NumberShiftLeft) \ 199 V(NumberShiftLeft) \
200 V(NumberShiftRight) \ 200 V(NumberShiftRight) \
201 V(NumberShiftRightLogical) \ 201 V(NumberShiftRightLogical) \
202 V(NumberImul) \ 202 V(NumberImul) \
203 V(NumberAbs) \
203 V(NumberClz32) \ 204 V(NumberClz32) \
204 V(NumberCeil) \ 205 V(NumberCeil) \
205 V(NumberCos) \ 206 V(NumberCos) \
206 V(NumberFloor) \ 207 V(NumberFloor) \
207 V(NumberFround) \ 208 V(NumberFround) \
208 V(NumberAtan) \ 209 V(NumberAtan) \
209 V(NumberAtan2) \ 210 V(NumberAtan2) \
210 V(NumberAtanh) \ 211 V(NumberAtanh) \
211 V(NumberExp) \ 212 V(NumberExp) \
212 V(NumberExpm1) \ 213 V(NumberExpm1) \
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 } 687 }
687 }; 688 };
688 689
689 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 690 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
690 691
691 } // namespace compiler 692 } // namespace compiler
692 } // namespace internal 693 } // namespace internal
693 } // namespace v8 694 } // namespace v8
694 695
695 #endif // V8_COMPILER_OPCODES_H_ 696 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/representation-change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698