Searched refs:CPU_NB_REGS (Results 1 – 8 of 8) sorted by relevance
/openbmc/qemu/target/i386/ |
H A D | xsave_helper.c | 43 for (i = 0; i < CPU_NB_REGS; i++) { in x86_cpu_xsave_all_areas() 58 for (i = 0; i < CPU_NB_REGS; i++) { in x86_cpu_xsave_all_areas() 101 for (i = 0; i < CPU_NB_REGS; i++) { in x86_cpu_xsave_all_areas() 177 for (i = 0; i < CPU_NB_REGS; i++) { in x86_cpu_xrstor_all_areas() 191 for (i = 0; i < CPU_NB_REGS; i++) { in x86_cpu_xrstor_all_areas() 241 for (i = 0; i < CPU_NB_REGS; i++) { in x86_cpu_xrstor_all_areas()
|
H A D | gdbstub.c | 65 #define IDX_IP_REG CPU_NB_REGS 71 #define IDX_MXCSR_REG (IDX_XMM_REGS + CPU_NB_REGS) 128 if (n < CPU_NB_REGS) { in x86_cpu_gdb_read_register() 148 } else if (n >= IDX_XMM_REGS && n < IDX_XMM_REGS + CPU_NB_REGS) { in x86_cpu_gdb_read_register() 287 if (n < CPU_NB_REGS) { in x86_cpu_gdb_write_register() 306 } else if (n >= IDX_XMM_REGS && n < IDX_XMM_REGS + CPU_NB_REGS) { in x86_cpu_gdb_write_register()
|
H A D | machine.c | 54 VMSTATE_STRUCT_SUB_ARRAY(_field, _state, _start, CPU_NB_REGS, 0, \ 70 VMSTATE_STRUCT_SUB_ARRAY(_field, _state, _start, CPU_NB_REGS, _v, \ 87 VMSTATE_STRUCT_SUB_ARRAY(_field, _state, _start, CPU_NB_REGS, 0, \ 109 VMSTATE_STRUCT_SUB_ARRAY(_field, _state, _start, CPU_NB_REGS, 0, \ 949 for (i = 0; i < CPU_NB_REGS; i++) { in avx512_needed() 1661 VMSTATE_UINTTL_ARRAY(env.regs, X86CPU, CPU_NB_REGS),
|
H A D | cpu.h | 1522 #define CPU_NB_REGS CPU_NB_REGS64 macro 1524 #define CPU_NB_REGS CPU_NB_REGS32 macro 1738 target_ulong regs[CPU_NB_REGS]; 1795 ZMMReg xmm_regs[CPU_NB_REGS == 8 ? 8 : 32] QEMU_ALIGNED(16);
|
/openbmc/qemu/target/i386/nvmm/ |
H A D | nvmm-all.c | 161 for (i = 0; i < CPU_NB_REGS; i++) { in nvmm_set_registers() 316 for (i = 0; i < CPU_NB_REGS; i++) { in nvmm_get_registers()
|
/openbmc/qemu/target/i386/whpx/ |
H A D | whpx-all.c | 415 for (idx = 0; idx < CPU_NB_REGS; idx += 1) { in whpx_set_registers() 642 for (idx = 0; idx < CPU_NB_REGS; idx += 1) { in whpx_get_registers()
|
/openbmc/qemu/target/i386/tcg/ |
H A D | translate.c | 78 static TCGv cpu_regs[CPU_NB_REGS]; 3535 static const char reg_names[CPU_NB_REGS][4] = { in tcg_x86_init() 3597 for (i = 0; i < CPU_NB_REGS; ++i) { in tcg_x86_init()
|
H A D | emit.c.inc | 4622 tcg_constant_ptr(CPU_NB_REGS * sizeof(ZMMReg))); 4629 for (i = 0; i < CPU_NB_REGS; i++) {
|