OLD | NEW |
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 V(AtomicExchangeInt8) \ | 92 V(AtomicExchangeInt8) \ |
93 V(AtomicExchangeUint8) \ | 93 V(AtomicExchangeUint8) \ |
94 V(AtomicExchangeInt16) \ | 94 V(AtomicExchangeInt16) \ |
95 V(AtomicExchangeUint16) \ | 95 V(AtomicExchangeUint16) \ |
96 V(AtomicExchangeWord32) \ | 96 V(AtomicExchangeWord32) \ |
97 V(AtomicCompareExchangeInt8) \ | 97 V(AtomicCompareExchangeInt8) \ |
98 V(AtomicCompareExchangeUint8) \ | 98 V(AtomicCompareExchangeUint8) \ |
99 V(AtomicCompareExchangeInt16) \ | 99 V(AtomicCompareExchangeInt16) \ |
100 V(AtomicCompareExchangeUint16) \ | 100 V(AtomicCompareExchangeUint16) \ |
101 V(AtomicCompareExchangeWord32) \ | 101 V(AtomicCompareExchangeWord32) \ |
| 102 V(AtomicAddInt8) \ |
| 103 V(AtomicAddUint8) \ |
| 104 V(AtomicAddInt16) \ |
| 105 V(AtomicAddUint16) \ |
| 106 V(AtomicAddWord32) \ |
| 107 V(AtomicSubInt8) \ |
| 108 V(AtomicSubUint8) \ |
| 109 V(AtomicSubInt16) \ |
| 110 V(AtomicSubUint16) \ |
| 111 V(AtomicSubWord32) \ |
| 112 V(AtomicAndInt8) \ |
| 113 V(AtomicAndUint8) \ |
| 114 V(AtomicAndInt16) \ |
| 115 V(AtomicAndUint16) \ |
| 116 V(AtomicAndWord32) \ |
| 117 V(AtomicOrInt8) \ |
| 118 V(AtomicOrUint8) \ |
| 119 V(AtomicOrInt16) \ |
| 120 V(AtomicOrUint16) \ |
| 121 V(AtomicOrWord32) \ |
| 122 V(AtomicXorInt8) \ |
| 123 V(AtomicXorUint8) \ |
| 124 V(AtomicXorInt16) \ |
| 125 V(AtomicXorUint16) \ |
| 126 V(AtomicXorWord32) \ |
102 V(Ieee754Float64Acos) \ | 127 V(Ieee754Float64Acos) \ |
103 V(Ieee754Float64Acosh) \ | 128 V(Ieee754Float64Acosh) \ |
104 V(Ieee754Float64Asin) \ | 129 V(Ieee754Float64Asin) \ |
105 V(Ieee754Float64Asinh) \ | 130 V(Ieee754Float64Asinh) \ |
106 V(Ieee754Float64Atan) \ | 131 V(Ieee754Float64Atan) \ |
107 V(Ieee754Float64Atanh) \ | 132 V(Ieee754Float64Atanh) \ |
108 V(Ieee754Float64Atan2) \ | 133 V(Ieee754Float64Atan2) \ |
109 V(Ieee754Float64Cbrt) \ | 134 V(Ieee754Float64Cbrt) \ |
110 V(Ieee754Float64Cos) \ | 135 V(Ieee754Float64Cos) \ |
111 V(Ieee754Float64Cosh) \ | 136 V(Ieee754Float64Cosh) \ |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 typedef BitField<AddressingMode, 9, 5> AddressingModeField; | 245 typedef BitField<AddressingMode, 9, 5> AddressingModeField; |
221 typedef BitField<FlagsMode, 14, 3> FlagsModeField; | 246 typedef BitField<FlagsMode, 14, 3> FlagsModeField; |
222 typedef BitField<FlagsCondition, 17, 5> FlagsConditionField; | 247 typedef BitField<FlagsCondition, 17, 5> FlagsConditionField; |
223 typedef BitField<int, 22, 10> MiscField; | 248 typedef BitField<int, 22, 10> MiscField; |
224 | 249 |
225 } // namespace compiler | 250 } // namespace compiler |
226 } // namespace internal | 251 } // namespace internal |
227 } // namespace v8 | 252 } // namespace v8 |
228 | 253 |
229 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ | 254 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ |
OLD | NEW |