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

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

Issue 2116753002: [builtins] Unify most of the remaining Math builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2102223005
Patch Set: 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
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 V(CheckedStoreFloat64) \ 82 V(CheckedStoreFloat64) \
83 V(ArchStackSlot) \ 83 V(ArchStackSlot) \
84 V(AtomicLoadInt8) \ 84 V(AtomicLoadInt8) \
85 V(AtomicLoadUint8) \ 85 V(AtomicLoadUint8) \
86 V(AtomicLoadInt16) \ 86 V(AtomicLoadInt16) \
87 V(AtomicLoadUint16) \ 87 V(AtomicLoadUint16) \
88 V(AtomicLoadWord32) \ 88 V(AtomicLoadWord32) \
89 V(AtomicStoreWord8) \ 89 V(AtomicStoreWord8) \
90 V(AtomicStoreWord16) \ 90 V(AtomicStoreWord16) \
91 V(AtomicStoreWord32) \ 91 V(AtomicStoreWord32) \
92 V(Ieee754Float64Acos) \
93 V(Ieee754Float64Acosh) \
94 V(Ieee754Float64Asin) \
95 V(Ieee754Float64Asinh) \
92 V(Ieee754Float64Atan) \ 96 V(Ieee754Float64Atan) \
97 V(Ieee754Float64Atanh) \
93 V(Ieee754Float64Atan2) \ 98 V(Ieee754Float64Atan2) \
94 V(Ieee754Float64Atanh) \
95 V(Ieee754Float64Cbrt) \ 99 V(Ieee754Float64Cbrt) \
96 V(Ieee754Float64Cos) \ 100 V(Ieee754Float64Cos) \
97 V(Ieee754Float64Cosh) \ 101 V(Ieee754Float64Cosh) \
98 V(Ieee754Float64Exp) \ 102 V(Ieee754Float64Exp) \
99 V(Ieee754Float64Expm1) \ 103 V(Ieee754Float64Expm1) \
100 V(Ieee754Float64Log) \ 104 V(Ieee754Float64Log) \
101 V(Ieee754Float64Log1p) \ 105 V(Ieee754Float64Log1p) \
102 V(Ieee754Float64Log10) \ 106 V(Ieee754Float64Log10) \
103 V(Ieee754Float64Log2) \ 107 V(Ieee754Float64Log2) \
104 V(Ieee754Float64Pow) \ 108 V(Ieee754Float64Pow) \
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 205 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
202 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 206 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
203 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; 207 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField;
204 typedef BitField<int, 20, 12> MiscField; 208 typedef BitField<int, 20, 12> MiscField;
205 209
206 } // namespace compiler 210 } // namespace compiler
207 } // namespace internal 211 } // namespace internal
208 } // namespace v8 212 } // namespace v8
209 213
210 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 214 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698