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

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

Issue 2083453002: [builtins] Introduce proper Float64Tan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 V(NumberExp) \ 211 V(NumberExp) \
212 V(NumberExpm1) \ 212 V(NumberExpm1) \
213 V(NumberLog) \ 213 V(NumberLog) \
214 V(NumberLog1p) \ 214 V(NumberLog1p) \
215 V(NumberLog2) \ 215 V(NumberLog2) \
216 V(NumberLog10) \ 216 V(NumberLog10) \
217 V(NumberCbrt) \ 217 V(NumberCbrt) \
218 V(NumberRound) \ 218 V(NumberRound) \
219 V(NumberSin) \ 219 V(NumberSin) \
220 V(NumberSqrt) \ 220 V(NumberSqrt) \
221 V(NumberTan) \
221 V(NumberTrunc) \ 222 V(NumberTrunc) \
222 V(NumberToInt32) \ 223 V(NumberToInt32) \
223 V(NumberToUint32) \ 224 V(NumberToUint32) \
224 V(NumberSilenceNaN) \ 225 V(NumberSilenceNaN) \
225 V(StringFromCharCode) \ 226 V(StringFromCharCode) \
226 V(StringToNumber) \ 227 V(StringToNumber) \
227 V(ChangeTaggedSignedToInt32) \ 228 V(ChangeTaggedSignedToInt32) \
228 V(ChangeTaggedToInt32) \ 229 V(ChangeTaggedToInt32) \
229 V(ChangeTaggedToUint32) \ 230 V(ChangeTaggedToUint32) \
230 V(ChangeTaggedToFloat64) \ 231 V(ChangeTaggedToFloat64) \
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 V(Float64Cbrt) \ 385 V(Float64Cbrt) \
385 V(Float64Cos) \ 386 V(Float64Cos) \
386 V(Float64Exp) \ 387 V(Float64Exp) \
387 V(Float64Expm1) \ 388 V(Float64Expm1) \
388 V(Float64Log) \ 389 V(Float64Log) \
389 V(Float64Log1p) \ 390 V(Float64Log1p) \
390 V(Float64Log10) \ 391 V(Float64Log10) \
391 V(Float64Log2) \ 392 V(Float64Log2) \
392 V(Float64Sin) \ 393 V(Float64Sin) \
393 V(Float64Sqrt) \ 394 V(Float64Sqrt) \
395 V(Float64Tan) \
394 V(Float64RoundDown) \ 396 V(Float64RoundDown) \
395 V(Float32RoundUp) \ 397 V(Float32RoundUp) \
396 V(Float64RoundUp) \ 398 V(Float64RoundUp) \
397 V(Float32RoundTruncate) \ 399 V(Float32RoundTruncate) \
398 V(Float64RoundTruncate) \ 400 V(Float64RoundTruncate) \
399 V(Float64RoundTiesAway) \ 401 V(Float64RoundTiesAway) \
400 V(Float32RoundTiesEven) \ 402 V(Float32RoundTiesEven) \
401 V(Float64RoundTiesEven) \ 403 V(Float64RoundTiesEven) \
402 V(Float64ExtractLowWord32) \ 404 V(Float64ExtractLowWord32) \
403 V(Float64ExtractHighWord32) \ 405 V(Float64ExtractHighWord32) \
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 } 683 }
682 }; 684 };
683 685
684 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 686 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
685 687
686 } // namespace compiler 688 } // namespace compiler
687 } // namespace internal 689 } // namespace internal
688 } // namespace v8 690 } // namespace v8
689 691
690 #endif // V8_COMPILER_OPCODES_H_ 692 #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