* [Qemu-devel] [4912] Print default and available CPU features separately
@ 2008-07-20 18:23 Blue Swirl
0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2008-07-20 18:23 UTC (permalink / raw)
To: qemu-devel
Revision: 4912
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4912
Author: blueswir1
Date: 2008-07-20 18:23:50 +0000 (Sun, 20 Jul 2008)
Log Message:
-----------
Print default and available CPU features separately
Modified Paths:
--------------
trunk/target-sparc/helper.c
Modified: trunk/target-sparc/helper.c
===================================================================
--- trunk/target-sparc/helper.c 2008-07-20 18:22:16 UTC (rev 4911)
+++ trunk/target-sparc/helper.c 2008-07-20 18:23:50 UTC (rev 4912)
@@ -1570,11 +1570,14 @@
sparc_defs[i].features, "+");
(*cpu_fprintf)(f, "\n");
}
- (*cpu_fprintf)(f, "CPU feature flags (+/-): ");
- print_features(f, cpu_fprintf, -1, NULL);
+ (*cpu_fprintf)(f, "Default CPU feature flags (use '-' to remove): ");
+ print_features(f, cpu_fprintf, CPU_DEFAULT_FEATURES, NULL);
(*cpu_fprintf)(f, "\n");
- (*cpu_fprintf)(f, "Numerical features (=): iu_version fpu_version "
- "mmu_version nwindows\n");
+ (*cpu_fprintf)(f, "Available CPU feature flags (use '+' to add): ");
+ print_features(f, cpu_fprintf, ~CPU_DEFAULT_FEATURES, NULL);
+ (*cpu_fprintf)(f, "\n");
+ (*cpu_fprintf)(f, "Numerical features (use '=' to set): iu_version "
+ "fpu_version mmu_version nwindows\n");
}
#define GET_FLAG(a,b) ((env->psr & a)?b:'-')
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-07-20 18:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-20 18:23 [Qemu-devel] [4912] Print default and available CPU features separately Blue Swirl
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).