monitor: fix object_del for command-line-created objects
[qemu/ar7.git] / target / hppa / cpu.h
blob4cf4ac65e3a8d8a884bed39968f5dd112f679990
1 /*
2 * PA-RISC emulation cpu definitions for qemu.
4 * Copyright (c) 2016 Richard Henderson <rth@twiddle.net>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef HPPA_CPU_H
21 #define HPPA_CPU_H
23 #include "qemu-common.h"
24 #include "cpu-qom.h"
26 /* We only support hppa-linux-user at present, so 32-bit only. */
27 #define TARGET_LONG_BITS 32
28 #define TARGET_PHYS_ADDR_SPACE_BITS 32
29 #define TARGET_VIRT_ADDR_SPACE_BITS 32
31 #define CPUArchState struct CPUHPPAState
33 #include "exec/cpu-defs.h"
34 #include "fpu/softfloat.h"
36 #define TARGET_PAGE_BITS 12
38 #define ALIGNED_ONLY
39 #define NB_MMU_MODES 1
40 #define MMU_USER_IDX 0
41 #define TARGET_INSN_START_EXTRA_WORDS 1
43 #define EXCP_SYSCALL 1
44 #define EXCP_SYSCALL_LWS 2
45 #define EXCP_SIGSEGV 3
46 #define EXCP_SIGILL 4
47 #define EXCP_SIGFPE 5
49 typedef struct CPUHPPAState CPUHPPAState;
51 struct CPUHPPAState {
52 target_ulong gr[32];
53 uint64_t fr[32];
55 target_ulong sar;
56 target_ulong cr26;
57 target_ulong cr27;
59 target_ulong psw_n; /* boolean */
60 target_long psw_v; /* in most significant bit */
62 /* Splitting the carry-borrow field into the MSB and "the rest", allows
63 * for "the rest" to be deleted when it is unused, but the MSB is in use.
64 * In addition, it's easier to compute carry-in for bit B+1 than it is to
65 * compute carry-out for bit B (3 vs 4 insns for addition, assuming the
66 * host has the appropriate add-with-carry insn to compute the msb).
67 * Therefore the carry bits are stored as: cb_msb : cb & 0x11111110.
69 target_ulong psw_cb; /* in least significant bit of next nibble */
70 target_ulong psw_cb_msb; /* boolean */
72 target_ulong iaoq_f; /* front */
73 target_ulong iaoq_b; /* back, aka next instruction */
75 target_ulong ior; /* interrupt offset register */
77 uint32_t fr0_shadow; /* flags, c, ca/cq, rm, d, enables */
78 float_status fp_status;
80 /* Those resources are used only in QEMU core */
81 CPU_COMMON
84 /**
85 * HPPACPU:
86 * @env: #CPUHPPAState
88 * An HPPA CPU.
90 struct HPPACPU {
91 /*< private >*/
92 CPUState parent_obj;
93 /*< public >*/
95 CPUHPPAState env;
98 static inline HPPACPU *hppa_env_get_cpu(CPUHPPAState *env)
100 return container_of(env, HPPACPU, env);
103 #define ENV_GET_CPU(e) CPU(hppa_env_get_cpu(e))
104 #define ENV_OFFSET offsetof(HPPACPU, env)
106 #include "exec/cpu-all.h"
108 static inline int cpu_mmu_index(CPUHPPAState *env, bool ifetch)
110 return 0;
113 void hppa_translate_init(void);
115 HPPACPU *cpu_hppa_init(const char *cpu_model);
117 #define cpu_init(cpu_model) CPU(cpu_hppa_init(cpu_model))
119 void hppa_cpu_list(FILE *f, fprintf_function cpu_fprintf);
121 static inline void cpu_get_tb_cpu_state(CPUHPPAState *env, target_ulong *pc,
122 target_ulong *cs_base,
123 uint32_t *pflags)
125 *pc = env->iaoq_f;
126 *cs_base = env->iaoq_b;
127 *pflags = env->psw_n;
130 target_ulong cpu_hppa_get_psw(CPUHPPAState *env);
131 void cpu_hppa_put_psw(CPUHPPAState *env, target_ulong);
132 void cpu_hppa_loaded_fr0(CPUHPPAState *env);
134 #define cpu_signal_handler cpu_hppa_signal_handler
136 int cpu_hppa_signal_handler(int host_signum, void *pinfo, void *puc);
137 int hppa_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int rw, int midx);
138 int hppa_cpu_gdb_read_register(CPUState *cpu, uint8_t *buf, int reg);
139 int hppa_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg);
140 void hppa_cpu_do_interrupt(CPUState *cpu);
141 bool hppa_cpu_exec_interrupt(CPUState *cpu, int int_req);
142 void hppa_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function, int);
144 #endif /* HPPA_CPU_H */