From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 11/17] target/i386: Simplify how x86_cpu_dump_local_apic_state() prints
Date: Fri, 12 Apr 2019 18:49:58 +0100 [thread overview]
Message-ID: <20190412174958.GN2906@work-vm> (raw)
In-Reply-To: <20190411152520.10061-12-armbru@redhat.com>
* Markus Armbruster (armbru@redhat.com) wrote:
> x86_cpu_dump_local_apic_state() takes an fprintf()-like callback and a
> FILE * to pass to it, and so do its helper functions.
>
> Its only caller hmp_info_local_apic() passes monitor_fprintf() and the
> current monitor cast to FILE *. monitor_fprintf() casts it right
> back, and is otherwise identical to monitor_printf(). The
> type-punning is ugly.
>
> Drop the callback, and call qemu_printf() instead.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
> target/i386/cpu.h | 3 +-
> target/i386/helper.c | 79 ++++++++++++++++++++-----------------------
> target/i386/monitor.c | 3 +-
> 3 files changed, 39 insertions(+), 46 deletions(-)
>
> diff --git a/target/i386/cpu.h b/target/i386/cpu.h
> index b39327dcb7..139fe30960 100644
> --- a/target/i386/cpu.h
> +++ b/target/i386/cpu.h
> @@ -1924,8 +1924,7 @@ void enable_compat_apic_id_mode(void);
> #define APIC_DEFAULT_ADDRESS 0xfee00000
> #define APIC_SPACE_SIZE 0x100000
>
> -void x86_cpu_dump_local_apic_state(CPUState *cs, FILE *f,
> - fprintf_function cpu_fprintf, int flags);
> +void x86_cpu_dump_local_apic_state(CPUState *cs, int flags);
>
> /* cpu.c */
> bool cpu_is_bsp(X86CPU *cpu);
> diff --git a/target/i386/helper.c b/target/i386/helper.c
> index e695f8ba7a..565391a9f6 100644
> --- a/target/i386/helper.c
> +++ b/target/i386/helper.c
> @@ -20,6 +20,7 @@
> #include "qemu/osdep.h"
> #include "cpu.h"
> #include "exec/exec-all.h"
> +#include "qemu/qemu-print.h"
> #include "sysemu/kvm.h"
> #include "kvm_i386.h"
> #ifndef CONFIG_USER_ONLY
> @@ -231,12 +232,10 @@ static inline const char *dm2str(uint32_t dm)
> return str[dm];
> }
>
> -static void dump_apic_lvt(FILE *f, fprintf_function cpu_fprintf,
> - const char *name, uint32_t lvt, bool is_timer)
> +static void dump_apic_lvt(const char *name, uint32_t lvt, bool is_timer)
> {
> uint32_t dm = (lvt & APIC_LVT_DELIV_MOD) >> APIC_LVT_DELIV_MOD_SHIFT;
> - cpu_fprintf(f,
> - "%s\t 0x%08x %s %-5s %-6s %-7s %-12s %-6s",
> + qemu_printf("%s\t 0x%08x %s %-5s %-6s %-7s %-12s %-6s",
> name, lvt,
> lvt & APIC_LVT_INT_POLARITY ? "active-lo" : "active-hi",
> lvt & APIC_LVT_LEVEL_TRIGGER ? "level" : "edge",
> @@ -248,9 +247,9 @@ static void dump_apic_lvt(FILE *f, fprintf_function cpu_fprintf,
> "tsc-deadline" : "one-shot",
> dm2str(dm));
> if (dm != APIC_DM_NMI) {
> - cpu_fprintf(f, " (vec %u)\n", lvt & APIC_VECTOR_MASK);
> + qemu_printf(" (vec %u)\n", lvt & APIC_VECTOR_MASK);
> } else {
> - cpu_fprintf(f, "\n");
> + qemu_printf("\n");
> }
> }
>
> @@ -282,8 +281,7 @@ static inline void mask2str(char *str, uint32_t val, uint8_t size)
>
> #define MAX_LOGICAL_APIC_ID_MASK_SIZE 16
>
> -static void dump_apic_icr(FILE *f, fprintf_function cpu_fprintf,
> - APICCommonState *s, CPUX86State *env)
> +static void dump_apic_icr(APICCommonState *s, CPUX86State *env)
> {
> uint32_t icr = s->icr[0], icr2 = s->icr[1];
> uint8_t dest_shorthand = \
> @@ -293,16 +291,16 @@ static void dump_apic_icr(FILE *f, fprintf_function cpu_fprintf,
> uint32_t dest_field;
> bool x2apic;
>
> - cpu_fprintf(f, "ICR\t 0x%08x %s %s %s %s\n",
> + qemu_printf("ICR\t 0x%08x %s %s %s %s\n",
> icr,
> logical_mod ? "logical" : "physical",
> icr & APIC_ICR_TRIGGER_MOD ? "level" : "edge",
> icr & APIC_ICR_LEVEL ? "assert" : "de-assert",
> shorthand2str(dest_shorthand));
>
> - cpu_fprintf(f, "ICR2\t 0x%08x", icr2);
> + qemu_printf("ICR2\t 0x%08x", icr2);
> if (dest_shorthand != 0) {
> - cpu_fprintf(f, "\n");
> + qemu_printf("\n");
> return;
> }
> x2apic = env->features[FEAT_1_ECX] & CPUID_EXT_X2APIC;
> @@ -310,9 +308,9 @@ static void dump_apic_icr(FILE *f, fprintf_function cpu_fprintf,
>
> if (!logical_mod) {
> if (x2apic) {
> - cpu_fprintf(f, " cpu %u (X2APIC ID)\n", dest_field);
> + qemu_printf(" cpu %u (X2APIC ID)\n", dest_field);
> } else {
> - cpu_fprintf(f, " cpu %u (APIC ID)\n",
> + qemu_printf(" cpu %u (APIC ID)\n",
> dest_field & APIC_LOGDEST_XAPIC_ID);
> }
> return;
> @@ -320,87 +318,84 @@ static void dump_apic_icr(FILE *f, fprintf_function cpu_fprintf,
>
> if (s->dest_mode == 0xf) { /* flat mode */
> mask2str(apic_id_str, icr2 >> APIC_ICR_DEST_SHIFT, 8);
> - cpu_fprintf(f, " mask %s (APIC ID)\n", apic_id_str);
> + qemu_printf(" mask %s (APIC ID)\n", apic_id_str);
> } else if (s->dest_mode == 0) { /* cluster mode */
> if (x2apic) {
> mask2str(apic_id_str, dest_field & APIC_LOGDEST_X2APIC_ID, 16);
> - cpu_fprintf(f, " cluster %u mask %s (X2APIC ID)\n",
> + qemu_printf(" cluster %u mask %s (X2APIC ID)\n",
> dest_field >> APIC_LOGDEST_X2APIC_SHIFT, apic_id_str);
> } else {
> mask2str(apic_id_str, dest_field & APIC_LOGDEST_XAPIC_ID, 4);
> - cpu_fprintf(f, " cluster %u mask %s (APIC ID)\n",
> + qemu_printf(" cluster %u mask %s (APIC ID)\n",
> dest_field >> APIC_LOGDEST_XAPIC_SHIFT, apic_id_str);
> }
> }
> }
>
> -static void dump_apic_interrupt(FILE *f, fprintf_function cpu_fprintf,
> - const char *name, uint32_t *ireg_tab,
> +static void dump_apic_interrupt(const char *name, uint32_t *ireg_tab,
> uint32_t *tmr_tab)
> {
> int i, empty = true;
>
> - cpu_fprintf(f, "%s\t ", name);
> + qemu_printf("%s\t ", name);
> for (i = 0; i < 256; i++) {
> if (apic_get_bit(ireg_tab, i)) {
> - cpu_fprintf(f, "%u%s ", i,
> + qemu_printf("%u%s ", i,
> apic_get_bit(tmr_tab, i) ? "(level)" : "");
> empty = false;
> }
> }
> - cpu_fprintf(f, "%s\n", empty ? "(none)" : "");
> + qemu_printf("%s\n", empty ? "(none)" : "");
> }
>
> -void x86_cpu_dump_local_apic_state(CPUState *cs, FILE *f,
> - fprintf_function cpu_fprintf, int flags)
> +void x86_cpu_dump_local_apic_state(CPUState *cs, int flags)
> {
> X86CPU *cpu = X86_CPU(cs);
> APICCommonState *s = APIC_COMMON(cpu->apic_state);
> if (!s) {
> - cpu_fprintf(f, "local apic state not available\n");
> + qemu_printf("local apic state not available\n");
> return;
> }
> uint32_t *lvt = s->lvt;
>
> - cpu_fprintf(f, "dumping local APIC state for CPU %-2u\n\n",
> + qemu_printf("dumping local APIC state for CPU %-2u\n\n",
> CPU(cpu)->cpu_index);
> - dump_apic_lvt(f, cpu_fprintf, "LVT0", lvt[APIC_LVT_LINT0], false);
> - dump_apic_lvt(f, cpu_fprintf, "LVT1", lvt[APIC_LVT_LINT1], false);
> - dump_apic_lvt(f, cpu_fprintf, "LVTPC", lvt[APIC_LVT_PERFORM], false);
> - dump_apic_lvt(f, cpu_fprintf, "LVTERR", lvt[APIC_LVT_ERROR], false);
> - dump_apic_lvt(f, cpu_fprintf, "LVTTHMR", lvt[APIC_LVT_THERMAL], false);
> - dump_apic_lvt(f, cpu_fprintf, "LVTT", lvt[APIC_LVT_TIMER], true);
> + dump_apic_lvt("LVT0", lvt[APIC_LVT_LINT0], false);
> + dump_apic_lvt("LVT1", lvt[APIC_LVT_LINT1], false);
> + dump_apic_lvt("LVTPC", lvt[APIC_LVT_PERFORM], false);
> + dump_apic_lvt("LVTERR", lvt[APIC_LVT_ERROR], false);
> + dump_apic_lvt("LVTTHMR", lvt[APIC_LVT_THERMAL], false);
> + dump_apic_lvt("LVTT", lvt[APIC_LVT_TIMER], true);
>
> - cpu_fprintf(f, "Timer\t DCR=0x%x (divide by %u) initial_count = %u\n",
> + qemu_printf("Timer\t DCR=0x%x (divide by %u) initial_count = %u\n",
> s->divide_conf & APIC_DCR_MASK,
> divider_conf(s->divide_conf),
> s->initial_count);
>
> - cpu_fprintf(f, "SPIV\t 0x%08x APIC %s, focus=%s, spurious vec %u\n",
> + qemu_printf("SPIV\t 0x%08x APIC %s, focus=%s, spurious vec %u\n",
> s->spurious_vec,
> s->spurious_vec & APIC_SPURIO_ENABLED ? "enabled" : "disabled",
> s->spurious_vec & APIC_SPURIO_FOCUS ? "on" : "off",
> s->spurious_vec & APIC_VECTOR_MASK);
>
> - dump_apic_icr(f, cpu_fprintf, s, &cpu->env);
> + dump_apic_icr(s, &cpu->env);
>
> - cpu_fprintf(f, "ESR\t 0x%08x\n", s->esr);
> + qemu_printf("ESR\t 0x%08x\n", s->esr);
>
> - dump_apic_interrupt(f, cpu_fprintf, "ISR", s->isr, s->tmr);
> - dump_apic_interrupt(f, cpu_fprintf, "IRR", s->irr, s->tmr);
> + dump_apic_interrupt("ISR", s->isr, s->tmr);
> + dump_apic_interrupt("IRR", s->irr, s->tmr);
>
> - cpu_fprintf(f, "\nAPR 0x%02x TPR 0x%02x DFR 0x%02x LDR 0x%02x",
> + qemu_printf("\nAPR 0x%02x TPR 0x%02x DFR 0x%02x LDR 0x%02x",
> s->arb_id, s->tpr, s->dest_mode, s->log_dest);
> if (s->dest_mode == 0) {
> - cpu_fprintf(f, "(cluster %u: id %u)",
> + qemu_printf("(cluster %u: id %u)",
> s->log_dest >> APIC_LOGDEST_XAPIC_SHIFT,
> s->log_dest & APIC_LOGDEST_XAPIC_ID);
> }
> - cpu_fprintf(f, " PPR 0x%02x\n", apic_get_ppr(s));
> + qemu_printf(" PPR 0x%02x\n", apic_get_ppr(s));
> }
> #else
> -void x86_cpu_dump_local_apic_state(CPUState *cs, FILE *f,
> - fprintf_function cpu_fprintf, int flags)
> +void x86_cpu_dump_local_apic_state(CPUState *cs, int flags)
> {
> }
> #endif /* !CONFIG_USER_ONLY */
> diff --git a/target/i386/monitor.c b/target/i386/monitor.c
> index 74a13c571b..56e2dbece7 100644
> --- a/target/i386/monitor.c
> +++ b/target/i386/monitor.c
> @@ -664,8 +664,7 @@ void hmp_info_local_apic(Monitor *mon, const QDict *qdict)
> monitor_printf(mon, "No CPU available\n");
> return;
> }
> - x86_cpu_dump_local_apic_state(cs, (FILE *)mon, monitor_fprintf,
> - CPU_DUMP_FPU);
> + x86_cpu_dump_local_apic_state(cs, CPU_DUMP_FPU);
> }
>
> void hmp_info_io_apic(Monitor *mon, const QDict *qdict)
> --
> 2.17.2
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2019-04-12 17:50 UTC|newest]
Thread overview: 82+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-11 15:25 [Qemu-devel] [PATCH 00/17] Clean up and simplify around fprintf_function Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-11 15:25 ` [Qemu-devel] [PATCH 01/17] include: Include fprintf-fn.h only where needed Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 16:53 ` Dr. David Alan Gilbert
2019-04-12 16:53 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 02/17] trace: Simplify how st_print_trace_file_status() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 16:55 ` Dr. David Alan Gilbert
2019-04-12 16:55 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 03/17] tcg: Simplify how dump_opcount_info() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 16:58 ` Dr. David Alan Gilbert
2019-04-12 16:58 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 04/17] tcg: Simplify how dump_exec_info() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:09 ` Dr. David Alan Gilbert
2019-04-12 17:09 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 05/17] tcg: Simplify how dump_drift_info() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:18 ` Dr. David Alan Gilbert
2019-04-12 17:18 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 06/17] qsp: Simplify how qsp_report() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:25 ` Dr. David Alan Gilbert
2019-04-12 17:25 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 07/17] block/qapi: Clean up how we print to monitor or stdout Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:59 ` Dr. David Alan Gilbert
2019-04-12 17:59 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 08/17] memory: Clean up how mtree_info() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:44 ` Dr. David Alan Gilbert
2019-04-12 17:44 ` Dr. David Alan Gilbert
2019-04-12 18:25 ` Markus Armbruster
2019-04-12 18:25 ` Markus Armbruster
2019-04-11 15:25 ` [Qemu-devel] [PATCH 09/17] target: Simplify how the TARGET_cpu_list() print Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-15 15:43 ` Dr. David Alan Gilbert
2019-04-15 15:43 ` Dr. David Alan Gilbert
2019-04-16 6:14 ` Markus Armbruster
2019-04-16 6:14 ` Markus Armbruster
2019-04-16 8:20 ` Dr. David Alan Gilbert
2019-04-16 8:20 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 10/17] target: Clean up how the dump_mmu() print Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-15 15:53 ` Dr. David Alan Gilbert
2019-04-15 15:53 ` Dr. David Alan Gilbert
2019-04-16 6:23 ` Markus Armbruster
2019-04-16 6:23 ` Markus Armbruster
2019-04-11 15:25 ` [Qemu-devel] [PATCH 11/17] target/i386: Simplify how x86_cpu_dump_local_apic_state() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:49 ` Dr. David Alan Gilbert [this message]
2019-04-12 17:49 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 12/17] qom/cpu: Simplify how CPUClass::dump_statistics() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:50 ` Dr. David Alan Gilbert
2019-04-12 17:50 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 13/17] qemu-print: New qemu_fprintf(), qemu_vfprintf() Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 17:53 ` Dr. David Alan Gilbert
2019-04-12 17:53 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 14/17] qom/cpu: Simplify how CPUClass:cpu_dump_state() prints Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-15 16:47 ` Dr. David Alan Gilbert
2019-04-15 16:47 ` Dr. David Alan Gilbert
2019-04-16 6:32 ` Markus Armbruster
2019-04-16 6:32 ` Markus Armbruster
2019-04-11 15:25 ` [Qemu-devel] [PATCH 15/17] monitor: Clean up how monitor_disas() funnels output to monitor Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 18:01 ` Dr. David Alan Gilbert
2019-04-12 18:01 ` Dr. David Alan Gilbert
2019-04-11 15:25 ` [Qemu-devel] [PATCH 16/17] disas: Rename include/disas/bfd.h back to include/disas/dis-asm.h Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-11 15:25 ` [Qemu-devel] [PATCH 17/17] include: Move fprintf_function to disas/ Markus Armbruster
2019-04-11 15:25 ` Markus Armbruster
2019-04-12 18:39 ` Dr. David Alan Gilbert
2019-04-12 18:39 ` Dr. David Alan Gilbert
2019-04-13 4:59 ` Markus Armbruster
2019-04-13 4:59 ` Markus Armbruster
2019-04-11 15:49 ` [Qemu-devel] [PATCH 00/17] Clean up and simplify around fprintf_function no-reply
2019-04-11 15:49 ` no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190412174958.GN2906@work-vm \
--to=dgilbert@redhat.com \
--cc=armbru@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).