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

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

Issue 2073123002: [builtins] Introduce proper Float64Cos and Float64Sin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix missing breaks 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/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 V(NumberModulus) \ 192 V(NumberModulus) \
193 V(NumberBitwiseOr) \ 193 V(NumberBitwiseOr) \
194 V(NumberBitwiseXor) \ 194 V(NumberBitwiseXor) \
195 V(NumberBitwiseAnd) \ 195 V(NumberBitwiseAnd) \
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(NumberCos) \
202 V(NumberFloor) \ 203 V(NumberFloor) \
203 V(NumberFround) \ 204 V(NumberFround) \
204 V(NumberAtan) \ 205 V(NumberAtan) \
205 V(NumberAtan2) \ 206 V(NumberAtan2) \
206 V(NumberAtanh) \ 207 V(NumberAtanh) \
207 V(NumberExp) \ 208 V(NumberExp) \
208 V(NumberExpm1) \ 209 V(NumberExpm1) \
209 V(NumberLog) \ 210 V(NumberLog) \
210 V(NumberLog1p) \ 211 V(NumberLog1p) \
211 V(NumberLog2) \ 212 V(NumberLog2) \
212 V(NumberLog10) \ 213 V(NumberLog10) \
213 V(NumberCbrt) \ 214 V(NumberCbrt) \
214 V(NumberRound) \ 215 V(NumberRound) \
216 V(NumberSin) \
215 V(NumberSqrt) \ 217 V(NumberSqrt) \
216 V(NumberTrunc) \ 218 V(NumberTrunc) \
217 V(NumberToInt32) \ 219 V(NumberToInt32) \
218 V(NumberToUint32) \ 220 V(NumberToUint32) \
219 V(NumberSilenceNaN) \ 221 V(NumberSilenceNaN) \
220 V(StringFromCharCode) \ 222 V(StringFromCharCode) \
221 V(StringToNumber) \ 223 V(StringToNumber) \
222 V(ChangeTaggedSignedToInt32) \ 224 V(ChangeTaggedSignedToInt32) \
223 V(ChangeTaggedToInt32) \ 225 V(ChangeTaggedToInt32) \
224 V(ChangeTaggedToUint32) \ 226 V(ChangeTaggedToUint32) \
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 V(Float64Neg) \ 371 V(Float64Neg) \
370 V(Float64Mul) \ 372 V(Float64Mul) \
371 V(Float64Div) \ 373 V(Float64Div) \
372 V(Float64Mod) \ 374 V(Float64Mod) \
373 V(Float64Max) \ 375 V(Float64Max) \
374 V(Float64Min) \ 376 V(Float64Min) \
375 V(Float64Abs) \ 377 V(Float64Abs) \
376 V(Float64Atan) \ 378 V(Float64Atan) \
377 V(Float64Atan2) \ 379 V(Float64Atan2) \
378 V(Float64Atanh) \ 380 V(Float64Atanh) \
381 V(Float64Cbrt) \
382 V(Float64Cos) \
379 V(Float64Exp) \ 383 V(Float64Exp) \
380 V(Float64Expm1) \ 384 V(Float64Expm1) \
381 V(Float64Log) \ 385 V(Float64Log) \
382 V(Float64Log1p) \ 386 V(Float64Log1p) \
387 V(Float64Log10) \
383 V(Float64Log2) \ 388 V(Float64Log2) \
384 V(Float64Log10) \ 389 V(Float64Sin) \
385 V(Float64Cbrt) \
386 V(Float64Sqrt) \ 390 V(Float64Sqrt) \
387 V(Float64RoundDown) \ 391 V(Float64RoundDown) \
388 V(Float32RoundUp) \ 392 V(Float32RoundUp) \
389 V(Float64RoundUp) \ 393 V(Float64RoundUp) \
390 V(Float32RoundTruncate) \ 394 V(Float32RoundTruncate) \
391 V(Float64RoundTruncate) \ 395 V(Float64RoundTruncate) \
392 V(Float64RoundTiesAway) \ 396 V(Float64RoundTiesAway) \
393 V(Float32RoundTiesEven) \ 397 V(Float32RoundTiesEven) \
394 V(Float64RoundTiesEven) \ 398 V(Float64RoundTiesEven) \
395 V(Float64ExtractLowWord32) \ 399 V(Float64ExtractLowWord32) \
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 } 678 }
675 }; 679 };
676 680
677 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 681 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
678 682
679 } // namespace compiler 683 } // namespace compiler
680 } // namespace internal 684 } // namespace internal
681 } // namespace v8 685 } // namespace v8
682 686
683 #endif // V8_COMPILER_OPCODES_H_ 687 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698