1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_
6 #define V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_
7 
8 namespace v8 {
9 namespace internal {
10 namespace compiler {
11 
12 // S390-specific opcodes that specify which assembly sequence to emit.
13 // Most opcodes specify a single instruction.
14 #define TARGET_ARCH_OPCODE_LIST(V) \
15   V(S390_And32)                    \
16   V(S390_And64)                    \
17   V(S390_Or32)                     \
18   V(S390_Or64)                     \
19   V(S390_Xor32)                    \
20   V(S390_Xor64)                    \
21   V(S390_ShiftLeft32)              \
22   V(S390_ShiftLeft64)              \
23   V(S390_ShiftLeftPair)            \
24   V(S390_ShiftRight32)             \
25   V(S390_ShiftRight64)             \
26   V(S390_ShiftRightPair)           \
27   V(S390_ShiftRightArith32)        \
28   V(S390_ShiftRightArith64)        \
29   V(S390_ShiftRightArithPair)      \
30   V(S390_RotRight32)               \
31   V(S390_RotRight64)               \
32   V(S390_Not32)                    \
33   V(S390_Not64)                    \
34   V(S390_RotLeftAndClear64)        \
35   V(S390_RotLeftAndClearLeft64)    \
36   V(S390_RotLeftAndClearRight64)   \
37   V(S390_Lay)                      \
38   V(S390_Add32)                    \
39   V(S390_Add64)                    \
40   V(S390_AddPair)                  \
41   V(S390_AddFloat)                 \
42   V(S390_AddDouble)                \
43   V(S390_Sub32)                    \
44   V(S390_Sub64)                    \
45   V(S390_SubFloat)                 \
46   V(S390_SubDouble)                \
47   V(S390_SubPair)                  \
48   V(S390_MulPair)                  \
49   V(S390_Mul32)                    \
50   V(S390_Mul32WithOverflow)        \
51   V(S390_Mul64)                    \
52   V(S390_MulHigh32)                \
53   V(S390_MulHighU32)               \
54   V(S390_MulFloat)                 \
55   V(S390_MulDouble)                \
56   V(S390_Div32)                    \
57   V(S390_Div64)                    \
58   V(S390_DivU32)                   \
59   V(S390_DivU64)                   \
60   V(S390_DivFloat)                 \
61   V(S390_DivDouble)                \
62   V(S390_Mod32)                    \
63   V(S390_Mod64)                    \
64   V(S390_ModU32)                   \
65   V(S390_ModU64)                   \
66   V(S390_ModDouble)                \
67   V(S390_Neg32)                    \
68   V(S390_Neg64)                    \
69   V(S390_NegDouble)                \
70   V(S390_NegFloat)                 \
71   V(S390_SqrtFloat)                \
72   V(S390_FloorFloat)               \
73   V(S390_CeilFloat)                \
74   V(S390_TruncateFloat)            \
75   V(S390_AbsFloat)                 \
76   V(S390_SqrtDouble)               \
77   V(S390_FloorDouble)              \
78   V(S390_CeilDouble)               \
79   V(S390_TruncateDouble)           \
80   V(S390_RoundDouble)              \
81   V(S390_MaxFloat)                 \
82   V(S390_MaxDouble)                \
83   V(S390_MinFloat)                 \
84   V(S390_MinDouble)                \
85   V(S390_AbsDouble)                \
86   V(S390_Cntlz32)                  \
87   V(S390_Cntlz64)                  \
88   V(S390_Popcnt32)                 \
89   V(S390_Popcnt64)                 \
90   V(S390_Cmp32)                    \
91   V(S390_Cmp64)                    \
92   V(S390_CmpFloat)                 \
93   V(S390_CmpDouble)                \
94   V(S390_Tst32)                    \
95   V(S390_Tst64)                    \
96   V(S390_Push)                     \
97   V(S390_PushFrame)                \
98   V(S390_StoreToStackSlot)         \
99   V(S390_ExtendSignWord8)          \
100   V(S390_ExtendSignWord16)         \
101   V(S390_ExtendSignWord32)         \
102   V(S390_Uint32ToUint64)           \
103   V(S390_Int64ToInt32)             \
104   V(S390_Int64ToFloat32)           \
105   V(S390_Int64ToDouble)            \
106   V(S390_Uint64ToFloat32)          \
107   V(S390_Uint64ToDouble)           \
108   V(S390_Int32ToFloat32)           \
109   V(S390_Int32ToDouble)            \
110   V(S390_Uint32ToFloat32)          \
111   V(S390_Uint32ToDouble)           \
112   V(S390_Float32ToInt64)           \
113   V(S390_Float32ToUint64)          \
114   V(S390_Float32ToInt32)           \
115   V(S390_Float32ToUint32)          \
116   V(S390_Float32ToDouble)          \
117   V(S390_Float64SilenceNaN)        \
118   V(S390_DoubleToInt32)            \
119   V(S390_DoubleToUint32)           \
120   V(S390_DoubleToInt64)            \
121   V(S390_DoubleToUint64)           \
122   V(S390_DoubleToFloat32)          \
123   V(S390_DoubleExtractLowWord32)   \
124   V(S390_DoubleExtractHighWord32)  \
125   V(S390_DoubleInsertLowWord32)    \
126   V(S390_DoubleInsertHighWord32)   \
127   V(S390_DoubleConstruct)          \
128   V(S390_BitcastInt32ToFloat32)    \
129   V(S390_BitcastFloat32ToInt32)    \
130   V(S390_BitcastInt64ToDouble)     \
131   V(S390_BitcastDoubleToInt64)     \
132   V(S390_LoadWordS8)               \
133   V(S390_LoadWordU8)               \
134   V(S390_LoadWordS16)              \
135   V(S390_LoadWordU16)              \
136   V(S390_LoadWordS32)              \
137   V(S390_LoadWordU32)              \
138   V(S390_LoadAndTestWord32)        \
139   V(S390_LoadAndTestWord64)        \
140   V(S390_LoadAndTestFloat32)       \
141   V(S390_LoadAndTestFloat64)       \
142   V(S390_LoadReverse16RR)          \
143   V(S390_LoadReverse32RR)          \
144   V(S390_LoadReverse64RR)          \
145   V(S390_LoadReverse16)            \
146   V(S390_LoadReverse32)            \
147   V(S390_LoadReverse64)            \
148   V(S390_LoadWord64)               \
149   V(S390_LoadFloat32)              \
150   V(S390_LoadDouble)               \
151   V(S390_StoreWord8)               \
152   V(S390_StoreWord16)              \
153   V(S390_StoreWord32)              \
154   V(S390_StoreWord64)              \
155   V(S390_StoreReverse16)           \
156   V(S390_StoreReverse32)           \
157   V(S390_StoreReverse64)           \
158   V(S390_StoreFloat32)             \
159   V(S390_StoreDouble)
160 
161 // Addressing modes represent the "shape" of inputs to an instruction.
162 // Many instructions support multiple addressing modes. Addressing modes
163 // are encoded into the InstructionCode of the instruction and tell the
164 // code generator after register allocation which assembler method to call.
165 //
166 // We use the following local notation for addressing modes:
167 //
168 // R = register
169 // O = register or stack slot
170 // D = double register
171 // I = immediate (handle, external, int32)
172 // MRI = [register + immediate]
173 // MRR = [register + register]
174 #define TARGET_ADDRESSING_MODE_LIST(V) \
175   V(MR)   /* [%r0          ] */        \
176   V(MRI)  /* [%r0       + K] */        \
177   V(MRR)  /* [%r0 + %r1    ] */        \
178   V(MRRI) /* [%r0 + %r1 + K] */
179 
180 }  // namespace compiler
181 }  // namespace internal
182 }  // namespace v8
183 
184 #endif  // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_
185