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

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

Issue 2077533002: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Import tests from Raymond. 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
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 V(NumberShiftLeft) \ 196 V(NumberShiftLeft) \
197 V(NumberShiftRight) \ 197 V(NumberShiftRight) \
198 V(NumberShiftRightLogical) \ 198 V(NumberShiftRightLogical) \
199 V(NumberImul) \ 199 V(NumberImul) \
200 V(NumberClz32) \ 200 V(NumberClz32) \
201 V(NumberCeil) \ 201 V(NumberCeil) \
202 V(NumberFloor) \ 202 V(NumberFloor) \
203 V(NumberFround) \ 203 V(NumberFround) \
204 V(NumberAtan) \ 204 V(NumberAtan) \
205 V(NumberAtan2) \ 205 V(NumberAtan2) \
206 V(NumberExp) \
206 V(NumberLog) \ 207 V(NumberLog) \
207 V(NumberLog1p) \ 208 V(NumberLog1p) \
208 V(NumberLog2) \ 209 V(NumberLog2) \
209 V(NumberLog10) \ 210 V(NumberLog10) \
210 V(NumberRound) \ 211 V(NumberRound) \
211 V(NumberSqrt) \ 212 V(NumberSqrt) \
212 V(NumberTrunc) \ 213 V(NumberTrunc) \
213 V(NumberToInt32) \ 214 V(NumberToInt32) \
214 V(NumberToUint32) \ 215 V(NumberToUint32) \
215 V(NumberSilenceNaN) \ 216 V(NumberSilenceNaN) \
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 V(Float64SubPreserveNan) \ 365 V(Float64SubPreserveNan) \
365 V(Float64Neg) \ 366 V(Float64Neg) \
366 V(Float64Mul) \ 367 V(Float64Mul) \
367 V(Float64Div) \ 368 V(Float64Div) \
368 V(Float64Mod) \ 369 V(Float64Mod) \
369 V(Float64Max) \ 370 V(Float64Max) \
370 V(Float64Min) \ 371 V(Float64Min) \
371 V(Float64Abs) \ 372 V(Float64Abs) \
372 V(Float64Atan) \ 373 V(Float64Atan) \
373 V(Float64Atan2) \ 374 V(Float64Atan2) \
375 V(Float64Exp) \
374 V(Float64Log) \ 376 V(Float64Log) \
375 V(Float64Log1p) \ 377 V(Float64Log1p) \
376 V(Float64Log2) \ 378 V(Float64Log2) \
377 V(Float64Log10) \ 379 V(Float64Log10) \
378 V(Float64Sqrt) \ 380 V(Float64Sqrt) \
379 V(Float64RoundDown) \ 381 V(Float64RoundDown) \
380 V(Float32RoundUp) \ 382 V(Float32RoundUp) \
381 V(Float64RoundUp) \ 383 V(Float64RoundUp) \
382 V(Float32RoundTruncate) \ 384 V(Float32RoundTruncate) \
383 V(Float64RoundTruncate) \ 385 V(Float64RoundTruncate) \
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 } 668 }
667 }; 669 };
668 670
669 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 671 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
670 672
671 } // namespace compiler 673 } // namespace compiler
672 } // namespace internal 674 } // namespace internal
673 } // namespace v8 675 } // namespace v8
674 676
675 #endif // V8_COMPILER_OPCODES_H_ 677 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698