blob: 52a11daeaea19ac05a14c05413dd9a59334056e9 [file] [log] [blame]
Alexander Graf10ec5112009-12-05 12:44:21 +01001/*
2 * S/390 helpers
3 *
4 * Copyright (c) 2009 Ulrich Hecht
Alexander Grafd5a43962011-03-23 10:58:07 +01005 * Copyright (c) 2011 Alexander Graf
Alexander Graf10ec5112009-12-05 12:44:21 +01006 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
Thomas Huth41c6a6d2019-01-29 14:37:47 +010010 * version 2.1 of the License, or (at your option) any later version.
Alexander Graf10ec5112009-12-05 12:44:21 +010011 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
Blue Swirl70539e12010-03-07 15:48:43 +000018 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
Alexander Graf10ec5112009-12-05 12:44:21 +010019 */
20
Peter Maydell96154952016-01-26 18:17:00 +000021#include "qemu/osdep.h"
Alexander Graf10ec5112009-12-05 12:44:21 +010022#include "cpu.h"
David Hildenbrand4e58b832017-08-18 13:43:49 +020023#include "internal.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010024#include "exec/gdbstub.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010025#include "qemu/timer.h"
Markus Armbruster90c84c52019-04-17 21:18:02 +020026#include "qemu/qemu-print.h"
Paolo Bonzinibd3f16a2015-12-04 12:06:26 +010027#include "hw/s390x/ioinst.h"
David Hildenbrand83f7f322017-09-28 22:36:46 +020028#include "sysemu/hw_accel.h"
Alexander Grafef815222011-10-07 09:51:50 +020029#ifndef CONFIG_USER_ONLY
Paolo Bonzini9c17d612012-12-17 18:20:04 +010030#include "sysemu/sysemu.h"
Alexander Grafef815222011-10-07 09:51:50 +020031#endif
Alexander Graf10ec5112009-12-05 12:44:21 +010032
Alexander Grafd5a43962011-03-23 10:58:07 +010033#ifndef CONFIG_USER_ONLY
Andreas Färber8f22e0d2012-04-02 13:56:29 +020034void s390x_tod_timer(void *opaque)
Alexander Grafd5a43962011-03-23 10:58:07 +010035{
David Hildenbrand6482b0f2017-09-28 22:36:39 +020036 cpu_inject_clock_comparator((S390CPU *) opaque);
Alexander Grafd5a43962011-03-23 10:58:07 +010037}
38
Andreas Färber8f22e0d2012-04-02 13:56:29 +020039void s390x_cpu_timer(void *opaque)
Alexander Grafd5a43962011-03-23 10:58:07 +010040{
David Hildenbrand6482b0f2017-09-28 22:36:39 +020041 cpu_inject_cpu_timer((S390CPU *) opaque);
Alexander Grafd5a43962011-03-23 10:58:07 +010042}
43#endif
Alexander Graf10c339a2009-12-05 12:44:26 +010044
Thomas Huthcded4012017-07-24 10:52:49 +020045#ifndef CONFIG_USER_ONLY
Alexander Grafd5a43962011-03-23 10:58:07 +010046
Andreas Färber00b941e2013-06-29 18:55:54 +020047hwaddr s390_cpu_get_phys_page_debug(CPUState *cs, vaddr vaddr)
Alexander Grafd5a43962011-03-23 10:58:07 +010048{
Andreas Färber00b941e2013-06-29 18:55:54 +020049 S390CPU *cpu = S390_CPU(cs);
50 CPUS390XState *env = &cpu->env;
Alexander Grafd5a43962011-03-23 10:58:07 +010051 target_ulong raddr;
Thomas Huthe3e09d82015-02-12 18:09:22 +010052 int prot;
Alexander Grafd5a43962011-03-23 10:58:07 +010053 uint64_t asc = env->psw.mask & PSW_MASK_ASC;
54
55 /* 31-Bit mode */
56 if (!(env->psw.mask & PSW_MASK_64)) {
57 vaddr &= 0x7fffffff;
58 }
59
David Hildenbrand234779a2015-12-09 16:36:42 +010060 if (mmu_translate(env, vaddr, MMU_INST_FETCH, asc, &raddr, &prot, false)) {
61 return -1;
62 }
Alexander Grafd5a43962011-03-23 10:58:07 +010063 return raddr;
64}
65
David Hildenbrand770a6372012-09-03 13:09:10 +020066hwaddr s390_cpu_get_phys_addr_debug(CPUState *cs, vaddr vaddr)
67{
68 hwaddr phys_addr;
69 target_ulong page;
70
71 page = vaddr & TARGET_PAGE_MASK;
72 phys_addr = cpu_get_phys_page_debug(cs, page);
73 phys_addr += (vaddr & ~TARGET_PAGE_MASK);
74
75 return phys_addr;
76}
77
David Hildenbrand83f7f322017-09-28 22:36:46 +020078static inline bool is_special_wait_psw(uint64_t psw_addr)
79{
80 /* signal quiesce */
81 return psw_addr == 0xfffUL;
82}
83
84void s390_handle_wait(S390CPU *cpu)
85{
Christian Borntraeger4ada99a2018-02-09 12:25:43 +000086 CPUState *cs = CPU(cpu);
87
David Hildenbrand83f7f322017-09-28 22:36:46 +020088 if (s390_cpu_halt(cpu) == 0) {
89#ifndef CONFIG_USER_ONLY
90 if (is_special_wait_psw(cpu->env.psw.addr)) {
91 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
92 } else {
Christian Borntraeger4ada99a2018-02-09 12:25:43 +000093 cpu->env.crash_reason = S390_CRASH_REASON_DISABLED_WAIT;
94 qemu_system_guest_panicked(cpu_get_crash_info(cs));
David Hildenbrand83f7f322017-09-28 22:36:46 +020095 }
96#endif
97 }
98}
99
Andreas Färbera4e3ad12012-03-14 01:38:22 +0100100void load_psw(CPUS390XState *env, uint64_t mask, uint64_t addr)
Alexander Grafd5a43962011-03-23 10:58:07 +0100101{
Aurelien Jarno311918b2015-06-13 00:46:00 +0200102 uint64_t old_mask = env->psw.mask;
103
Alexander Grafd5a43962011-03-23 10:58:07 +0100104 env->psw.addr = addr;
105 env->psw.mask = mask;
David Hildenbrandb3a184f2018-04-09 13:30:19 +0200106
107 /* KVM will handle all WAITs and trigger a WAIT exit on disabled_wait */
108 if (!tcg_enabled()) {
109 return;
David Hildenbrand3f103412015-02-24 14:15:29 +0100110 }
David Hildenbrandb3a184f2018-04-09 13:30:19 +0200111 env->cc_op = (mask >> 44) & 3;
David Hildenbrandeb24f7c2014-09-30 10:57:29 +0200112
Aurelien Jarno311918b2015-06-13 00:46:00 +0200113 if ((old_mask ^ mask) & PSW_MASK_PER) {
Richard Hendersondc79e922019-03-22 19:21:48 -0700114 s390_cpu_recompute_watchpoints(env_cpu(env));
Aurelien Jarno311918b2015-06-13 00:46:00 +0200115 }
116
David Hildenbrandb3a184f2018-04-09 13:30:19 +0200117 if (mask & PSW_MASK_WAIT) {
Richard Hendersondc79e922019-03-22 19:21:48 -0700118 s390_handle_wait(env_archcpu(env));
David Hildenbrandeb24f7c2014-09-30 10:57:29 +0200119 }
Alexander Grafd5a43962011-03-23 10:58:07 +0100120}
121
Thomas Huthcded4012017-07-24 10:52:49 +0200122uint64_t get_psw_mask(CPUS390XState *env)
Alexander Grafd5a43962011-03-23 10:58:07 +0100123{
David Hildenbrand3f103412015-02-24 14:15:29 +0100124 uint64_t r = env->psw.mask;
Alexander Grafd5a43962011-03-23 10:58:07 +0100125
David Hildenbrand3f103412015-02-24 14:15:29 +0100126 if (tcg_enabled()) {
127 env->cc_op = calc_cc(env, env->cc_op, env->cc_src, env->cc_dst,
128 env->cc_vr);
Alexander Grafd5a43962011-03-23 10:58:07 +0100129
David Hildenbrand3f103412015-02-24 14:15:29 +0100130 r &= ~PSW_MASK_CC;
131 assert(!(env->cc_op & ~3));
132 r |= (uint64_t)env->cc_op << 44;
133 }
Alexander Grafd5a43962011-03-23 10:58:07 +0100134
135 return r;
136}
137
Thomas Huthcded4012017-07-24 10:52:49 +0200138LowCore *cpu_map_lowcore(CPUS390XState *env)
Cornelia Huck4782a232013-01-24 02:28:01 +0000139{
140 LowCore *lowcore;
141 hwaddr len = sizeof(LowCore);
142
143 lowcore = cpu_physical_memory_map(env->psa, &len, 1);
144
145 if (len < sizeof(LowCore)) {
Richard Hendersondc79e922019-03-22 19:21:48 -0700146 cpu_abort(env_cpu(env), "Could not map lowcore\n");
Cornelia Huck4782a232013-01-24 02:28:01 +0000147 }
148
149 return lowcore;
150}
151
Thomas Huthcded4012017-07-24 10:52:49 +0200152void cpu_unmap_lowcore(LowCore *lowcore)
Cornelia Huck4782a232013-01-24 02:28:01 +0000153{
154 cpu_physical_memory_unmap(lowcore, sizeof(LowCore), 1, sizeof(LowCore));
155}
156
David Hildenbrand3f103412015-02-24 14:15:29 +0100157void do_restart_interrupt(CPUS390XState *env)
158{
159 uint64_t mask, addr;
160 LowCore *lowcore;
161
162 lowcore = cpu_map_lowcore(env);
163
164 lowcore->restart_old_psw.mask = cpu_to_be64(get_psw_mask(env));
165 lowcore->restart_old_psw.addr = cpu_to_be64(env->psw.addr);
166 mask = be64_to_cpu(lowcore->restart_new_psw.mask);
167 addr = be64_to_cpu(lowcore->restart_new_psw.addr);
168
169 cpu_unmap_lowcore(lowcore);
David Hildenbrandb1ab5f62017-09-28 22:37:02 +0200170 env->pending_int &= ~INTERRUPT_RESTART;
David Hildenbrand3f103412015-02-24 14:15:29 +0100171
172 load_psw(env, mask, addr);
173}
174
Aurelien Jarno311918b2015-06-13 00:46:00 +0200175void s390_cpu_recompute_watchpoints(CPUState *cs)
176{
177 const int wp_flags = BP_CPU | BP_MEM_WRITE | BP_STOP_BEFORE_ACCESS;
178 S390CPU *cpu = S390_CPU(cs);
179 CPUS390XState *env = &cpu->env;
180
181 /* We are called when the watchpoints have changed. First
182 remove them all. */
183 cpu_watchpoint_remove_all(cs, BP_CPU);
184
185 /* Return if PER is not enabled */
186 if (!(env->psw.mask & PSW_MASK_PER)) {
187 return;
188 }
189
190 /* Return if storage-alteration event is not enabled. */
191 if (!(env->cregs[9] & PER_CR9_EVENT_STORE)) {
192 return;
193 }
194
195 if (env->cregs[10] == 0 && env->cregs[11] == -1LL) {
196 /* We can't create a watchoint spanning the whole memory range, so
197 split it in two parts. */
198 cpu_watchpoint_insert(cs, 0, 1ULL << 63, wp_flags, NULL);
199 cpu_watchpoint_insert(cs, 1ULL << 63, 1ULL << 63, wp_flags, NULL);
200 } else if (env->cregs[10] > env->cregs[11]) {
201 /* The address range loops, create two watchpoints. */
202 cpu_watchpoint_insert(cs, env->cregs[10], -env->cregs[10],
203 wp_flags, NULL);
204 cpu_watchpoint_insert(cs, 0, env->cregs[11] + 1, wp_flags, NULL);
205
206 } else {
207 /* Default case, create a single watchpoint. */
208 cpu_watchpoint_insert(cs, env->cregs[10],
209 env->cregs[11] - env->cregs[10] + 1,
210 wp_flags, NULL);
211 }
212}
213
David Hildenbrand257619b2019-02-22 09:11:52 +0100214typedef struct SigpSaveArea {
David Hildenbrandcf729ba2017-09-28 22:36:51 +0200215 uint64_t fprs[16]; /* 0x0000 */
216 uint64_t grs[16]; /* 0x0080 */
217 PSW psw; /* 0x0100 */
218 uint8_t pad_0x0110[0x0118 - 0x0110]; /* 0x0110 */
219 uint32_t prefix; /* 0x0118 */
220 uint32_t fpc; /* 0x011c */
221 uint8_t pad_0x0120[0x0124 - 0x0120]; /* 0x0120 */
222 uint32_t todpr; /* 0x0124 */
223 uint64_t cputm; /* 0x0128 */
224 uint64_t ckc; /* 0x0130 */
225 uint8_t pad_0x0138[0x0140 - 0x0138]; /* 0x0138 */
226 uint32_t ars[16]; /* 0x0140 */
227 uint64_t crs[16]; /* 0x0384 */
David Hildenbrand257619b2019-02-22 09:11:52 +0100228} SigpSaveArea;
229QEMU_BUILD_BUG_ON(sizeof(SigpSaveArea) != 512);
David Hildenbrandcf729ba2017-09-28 22:36:51 +0200230
231int s390_store_status(S390CPU *cpu, hwaddr addr, bool store_arch)
232{
233 static const uint8_t ar_id = 1;
David Hildenbrand257619b2019-02-22 09:11:52 +0100234 SigpSaveArea *sa;
David Hildenbrandcf729ba2017-09-28 22:36:51 +0200235 hwaddr len = sizeof(*sa);
236 int i;
237
238 sa = cpu_physical_memory_map(addr, &len, 1);
239 if (!sa) {
240 return -EFAULT;
241 }
242 if (len != sizeof(*sa)) {
243 cpu_physical_memory_unmap(sa, len, 1, 0);
244 return -EFAULT;
245 }
246
247 if (store_arch) {
248 cpu_physical_memory_write(offsetof(LowCore, ar_access_id), &ar_id, 1);
249 }
250 for (i = 0; i < 16; ++i) {
David Hildenbrand4f83d7d2019-05-29 09:15:38 +0200251 sa->fprs[i] = cpu_to_be64(*get_freg(&cpu->env, i));
David Hildenbrandcf729ba2017-09-28 22:36:51 +0200252 }
253 for (i = 0; i < 16; ++i) {
254 sa->grs[i] = cpu_to_be64(cpu->env.regs[i]);
255 }
256 sa->psw.addr = cpu_to_be64(cpu->env.psw.addr);
257 sa->psw.mask = cpu_to_be64(get_psw_mask(&cpu->env));
258 sa->prefix = cpu_to_be32(cpu->env.psa);
259 sa->fpc = cpu_to_be32(cpu->env.fpc);
260 sa->todpr = cpu_to_be32(cpu->env.todpr);
261 sa->cputm = cpu_to_be64(cpu->env.cputm);
262 sa->ckc = cpu_to_be64(cpu->env.ckc >> 8);
263 for (i = 0; i < 16; ++i) {
264 sa->ars[i] = cpu_to_be32(cpu->env.aregs[i]);
265 }
266 for (i = 0; i < 16; ++i) {
David Hildenbranddc0bbef2017-11-16 18:05:24 +0100267 sa->crs[i] = cpu_to_be64(cpu->env.cregs[i]);
David Hildenbrandcf729ba2017-09-28 22:36:51 +0200268 }
269
270 cpu_physical_memory_unmap(sa, len, 1, len);
271
272 return 0;
273}
David Hildenbrandf875cb02017-09-28 22:36:52 +0200274
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100275typedef struct SigpAdtlSaveArea {
276 uint64_t vregs[32][2]; /* 0x0000 */
277 uint8_t pad_0x0200[0x0400 - 0x0200]; /* 0x0200 */
278 uint64_t gscb[4]; /* 0x0400 */
279 uint8_t pad_0x0420[0x1000 - 0x0420]; /* 0x0420 */
280} SigpAdtlSaveArea;
281QEMU_BUILD_BUG_ON(sizeof(SigpAdtlSaveArea) != 4096);
282
David Hildenbrandf875cb02017-09-28 22:36:52 +0200283#define ADTL_GS_MIN_SIZE 2048 /* minimal size of adtl save area for GS */
284int s390_store_adtl_status(S390CPU *cpu, hwaddr addr, hwaddr len)
285{
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100286 SigpAdtlSaveArea *sa;
David Hildenbrandf875cb02017-09-28 22:36:52 +0200287 hwaddr save = len;
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100288 int i;
David Hildenbrandf875cb02017-09-28 22:36:52 +0200289
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100290 sa = cpu_physical_memory_map(addr, &save, 1);
291 if (!sa) {
David Hildenbrandf875cb02017-09-28 22:36:52 +0200292 return -EFAULT;
293 }
294 if (save != len) {
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100295 cpu_physical_memory_unmap(sa, len, 1, 0);
David Hildenbrandf875cb02017-09-28 22:36:52 +0200296 return -EFAULT;
297 }
298
David Hildenbrandf875cb02017-09-28 22:36:52 +0200299 if (s390_has_feat(S390_FEAT_VECTOR)) {
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100300 for (i = 0; i < 32; i++) {
David Hildenbrand4f83d7d2019-05-29 09:15:38 +0200301 sa->vregs[i][0] = cpu_to_be64(cpu->env.vregs[i][0]);
302 sa->vregs[i][1] = cpu_to_be64(cpu->env.vregs[i][1]);
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100303 }
David Hildenbrandf875cb02017-09-28 22:36:52 +0200304 }
305 if (s390_has_feat(S390_FEAT_GUARDED_STORAGE) && len >= ADTL_GS_MIN_SIZE) {
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100306 for (i = 0; i < 4; i++) {
307 sa->gscb[i] = cpu_to_be64(cpu->env.gscb[i]);
308 }
David Hildenbrandf875cb02017-09-28 22:36:52 +0200309 }
310
David Hildenbrand2cca53f2019-02-22 09:11:51 +0100311 cpu_physical_memory_unmap(sa, len, 1, len);
David Hildenbrandf875cb02017-09-28 22:36:52 +0200312 return 0;
313}
Alexander Grafd5a43962011-03-23 10:58:07 +0100314#endif /* CONFIG_USER_ONLY */
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200315
Markus Armbruster90c84c52019-04-17 21:18:02 +0200316void s390_cpu_dump_state(CPUState *cs, FILE *f, int flags)
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200317{
318 S390CPU *cpu = S390_CPU(cs);
319 CPUS390XState *env = &cpu->env;
320 int i;
321
322 if (env->cc_op > 3) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200323 qemu_fprintf(f, "PSW=mask %016" PRIx64 " addr %016" PRIx64 " cc %15s\n",
324 env->psw.mask, env->psw.addr, cc_name(env->cc_op));
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200325 } else {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200326 qemu_fprintf(f, "PSW=mask %016" PRIx64 " addr %016" PRIx64 " cc %02x\n",
327 env->psw.mask, env->psw.addr, env->cc_op);
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200328 }
329
330 for (i = 0; i < 16; i++) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200331 qemu_fprintf(f, "R%02d=%016" PRIx64, i, env->regs[i]);
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200332 if ((i % 4) == 3) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200333 qemu_fprintf(f, "\n");
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200334 } else {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200335 qemu_fprintf(f, " ");
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200336 }
337 }
338
Richard Hendersonaf6e5ea2018-05-10 20:38:23 -0700339 if (flags & CPU_DUMP_FPU) {
340 if (s390_has_feat(S390_FEAT_VECTOR)) {
341 for (i = 0; i < 32; i++) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200342 qemu_fprintf(f, "V%02d=%016" PRIx64 "%016" PRIx64 "%c",
David Hildenbrand4f83d7d2019-05-29 09:15:38 +0200343 i, env->vregs[i][0], env->vregs[i][1],
Markus Armbruster90c84c52019-04-17 21:18:02 +0200344 i % 2 ? '\n' : ' ');
Richard Hendersonaf6e5ea2018-05-10 20:38:23 -0700345 }
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200346 } else {
Richard Hendersonaf6e5ea2018-05-10 20:38:23 -0700347 for (i = 0; i < 16; i++) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200348 qemu_fprintf(f, "F%02d=%016" PRIx64 "%c",
David Hildenbrand4f83d7d2019-05-29 09:15:38 +0200349 i, *get_freg(env, i),
Markus Armbruster90c84c52019-04-17 21:18:02 +0200350 (i % 4) == 3 ? '\n' : ' ');
Richard Hendersonaf6e5ea2018-05-10 20:38:23 -0700351 }
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200352 }
353 }
354
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200355#ifndef CONFIG_USER_ONLY
356 for (i = 0; i < 16; i++) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200357 qemu_fprintf(f, "C%02d=%016" PRIx64, i, env->cregs[i]);
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200358 if ((i % 4) == 3) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200359 qemu_fprintf(f, "\n");
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200360 } else {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200361 qemu_fprintf(f, " ");
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200362 }
363 }
364#endif
365
366#ifdef DEBUG_INLINE_BRANCHES
367 for (i = 0; i < CC_OP_MAX; i++) {
Markus Armbruster90c84c52019-04-17 21:18:02 +0200368 qemu_fprintf(f, " %15s = %10ld\t%10ld\n", cc_name(i),
369 inline_branch_miss[i], inline_branch_hit[i]);
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200370 }
371#endif
372
Markus Armbruster90c84c52019-04-17 21:18:02 +0200373 qemu_fprintf(f, "\n");
Thomas Huthb5bd2e92017-07-24 10:52:46 +0200374}
David Hildenbrandc5340552017-08-18 13:43:44 +0200375
376const char *cc_name(enum cc_op cc_op)
377{
378 static const char * const cc_names[] = {
379 [CC_OP_CONST0] = "CC_OP_CONST0",
380 [CC_OP_CONST1] = "CC_OP_CONST1",
381 [CC_OP_CONST2] = "CC_OP_CONST2",
382 [CC_OP_CONST3] = "CC_OP_CONST3",
383 [CC_OP_DYNAMIC] = "CC_OP_DYNAMIC",
384 [CC_OP_STATIC] = "CC_OP_STATIC",
385 [CC_OP_NZ] = "CC_OP_NZ",
386 [CC_OP_LTGT_32] = "CC_OP_LTGT_32",
387 [CC_OP_LTGT_64] = "CC_OP_LTGT_64",
388 [CC_OP_LTUGTU_32] = "CC_OP_LTUGTU_32",
389 [CC_OP_LTUGTU_64] = "CC_OP_LTUGTU_64",
390 [CC_OP_LTGT0_32] = "CC_OP_LTGT0_32",
391 [CC_OP_LTGT0_64] = "CC_OP_LTGT0_64",
392 [CC_OP_ADD_64] = "CC_OP_ADD_64",
393 [CC_OP_ADDU_64] = "CC_OP_ADDU_64",
394 [CC_OP_ADDC_64] = "CC_OP_ADDC_64",
395 [CC_OP_SUB_64] = "CC_OP_SUB_64",
396 [CC_OP_SUBU_64] = "CC_OP_SUBU_64",
397 [CC_OP_SUBB_64] = "CC_OP_SUBB_64",
398 [CC_OP_ABS_64] = "CC_OP_ABS_64",
399 [CC_OP_NABS_64] = "CC_OP_NABS_64",
400 [CC_OP_ADD_32] = "CC_OP_ADD_32",
401 [CC_OP_ADDU_32] = "CC_OP_ADDU_32",
402 [CC_OP_ADDC_32] = "CC_OP_ADDC_32",
403 [CC_OP_SUB_32] = "CC_OP_SUB_32",
404 [CC_OP_SUBU_32] = "CC_OP_SUBU_32",
405 [CC_OP_SUBB_32] = "CC_OP_SUBB_32",
406 [CC_OP_ABS_32] = "CC_OP_ABS_32",
407 [CC_OP_NABS_32] = "CC_OP_NABS_32",
408 [CC_OP_COMP_32] = "CC_OP_COMP_32",
409 [CC_OP_COMP_64] = "CC_OP_COMP_64",
410 [CC_OP_TM_32] = "CC_OP_TM_32",
411 [CC_OP_TM_64] = "CC_OP_TM_64",
412 [CC_OP_NZ_F32] = "CC_OP_NZ_F32",
413 [CC_OP_NZ_F64] = "CC_OP_NZ_F64",
414 [CC_OP_NZ_F128] = "CC_OP_NZ_F128",
415 [CC_OP_ICM] = "CC_OP_ICM",
416 [CC_OP_SLA_32] = "CC_OP_SLA_32",
417 [CC_OP_SLA_64] = "CC_OP_SLA_64",
418 [CC_OP_FLOGR] = "CC_OP_FLOGR",
David Hildenbrand6d930332019-02-25 21:03:18 +0100419 [CC_OP_LCBB] = "CC_OP_LCBB",
David Hildenbrandff825c62019-04-11 10:00:25 +0200420 [CC_OP_VC] = "CC_OP_VC",
David Hildenbrandc5340552017-08-18 13:43:44 +0200421 };
422
423 return cc_names[cc_op];
424}