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

Side by Side Diff: src/compiler/instruction-codes.h

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. 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/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(Ieee754Float64Pow) \
103 V(Ieee754Float64Sin) \ 104 V(Ieee754Float64Sin) \
104 V(Ieee754Float64Tan) 105 V(Ieee754Float64Tan)
105 106
106 #define ARCH_OPCODE_LIST(V) \ 107 #define ARCH_OPCODE_LIST(V) \
107 COMMON_ARCH_OPCODE_LIST(V) \ 108 COMMON_ARCH_OPCODE_LIST(V) \
108 TARGET_ARCH_OPCODE_LIST(V) 109 TARGET_ARCH_OPCODE_LIST(V)
109 110
110 enum ArchOpcode { 111 enum ArchOpcode {
111 #define DECLARE_ARCH_OPCODE(Name) k##Name, 112 #define DECLARE_ARCH_OPCODE(Name) k##Name,
112 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE) 113 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE)
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 196 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
196 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 197 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
197 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; 198 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField;
198 typedef BitField<int, 20, 12> MiscField; 199 typedef BitField<int, 20, 12> MiscField;
199 200
200 } // namespace compiler 201 } // namespace compiler
201 } // namespace internal 202 } // namespace internal
202 } // namespace v8 203 } // namespace v8
203 204
204 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 205 #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