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

Side by Side Diff: src/compiler/instruction-codes.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/ia32/code-generator-ia32.cc ('k') | src/compiler/instruction-scheduler.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_INSTRUCTION_CODES_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_CODES_H_
6 #define V8_COMPILER_INSTRUCTION_CODES_H_ 6 #define V8_COMPILER_INSTRUCTION_CODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #if V8_TARGET_ARCH_ARM 10 #if V8_TARGET_ARCH_ARM
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 V(Ieee754Float64Atan2) \ 93 V(Ieee754Float64Atan2) \
94 V(Ieee754Float64Atanh) \ 94 V(Ieee754Float64Atanh) \
95 V(Ieee754Float64Cbrt) \ 95 V(Ieee754Float64Cbrt) \
96 V(Ieee754Float64Cos) \ 96 V(Ieee754Float64Cos) \
97 V(Ieee754Float64Exp) \ 97 V(Ieee754Float64Exp) \
98 V(Ieee754Float64Expm1) \ 98 V(Ieee754Float64Expm1) \
99 V(Ieee754Float64Log) \ 99 V(Ieee754Float64Log) \
100 V(Ieee754Float64Log1p) \ 100 V(Ieee754Float64Log1p) \
101 V(Ieee754Float64Log10) \ 101 V(Ieee754Float64Log10) \
102 V(Ieee754Float64Log2) \ 102 V(Ieee754Float64Log2) \
103 V(Ieee754Float64Sin) 103 V(Ieee754Float64Sin) \
104 V(Ieee754Float64Tan)
104 105
105 #define ARCH_OPCODE_LIST(V) \ 106 #define ARCH_OPCODE_LIST(V) \
106 COMMON_ARCH_OPCODE_LIST(V) \ 107 COMMON_ARCH_OPCODE_LIST(V) \
107 TARGET_ARCH_OPCODE_LIST(V) 108 TARGET_ARCH_OPCODE_LIST(V)
108 109
109 enum ArchOpcode { 110 enum ArchOpcode {
110 #define DECLARE_ARCH_OPCODE(Name) k##Name, 111 #define DECLARE_ARCH_OPCODE(Name) k##Name,
111 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE) 112 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE)
112 #undef DECLARE_ARCH_OPCODE 113 #undef DECLARE_ARCH_OPCODE
113 #define COUNT_ARCH_OPCODE(Name) +1 114 #define COUNT_ARCH_OPCODE(Name) +1
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 195 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
195 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 196 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
196 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; 197 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField;
197 typedef BitField<int, 20, 12> MiscField; 198 typedef BitField<int, 20, 12> MiscField;
198 199
199 } // namespace compiler 200 } // namespace compiler
200 } // namespace internal 201 } // namespace internal
201 } // namespace v8 202 } // namespace v8
202 203
203 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 204 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/compiler/instruction-scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698