Currently when xmon is dumping instructions it reads a word at a time
and then prints that instruction (either as a hex number or by
disassembling it). For prefixed instructions it would be nice to show
its prefix and suffix as together. Use read_instr() so that if a prefix
is encountered its suffix is loaded too. Then print these in the form:
    prefix:suffix
Xmon uses the disassembly routines from GNU binutils. These currently do
not support prefixed instructions so we will not disassemble the
prefixed instructions yet.

Signed-off-by: Jordan Niethe <jniet...@gmail.com>
---
v2: Rename sufx to suffix
v3: Simplify generic_inst_dump()
---
 arch/powerpc/xmon/xmon.c | 38 ++++++++++++++++++++++++++++++--------
 1 file changed, 30 insertions(+), 8 deletions(-)

diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index a73a35aa4a75..bf304189e33a 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -2900,6 +2900,21 @@ prdump(unsigned long adrs, long ndump)
        }
 }
 
+static bool instrs_are_equal(unsigned long insta, unsigned long suffixa,
+                            unsigned long instb, unsigned long suffixb)
+{
+       if (insta != instb)
+               return false;
+
+       if (!IS_PREFIX(insta) && !IS_PREFIX(instb))
+               return true;
+
+       if (IS_PREFIX(insta) && IS_PREFIX(instb))
+               return suffixa == suffixb;
+
+       return false;
+}
+
 typedef int (*instruction_dump_func)(unsigned long inst, unsigned long addr);
 
 static int
@@ -2908,12 +2923,11 @@ generic_inst_dump(unsigned long adr, long count, int 
praddr,
 {
        int nr, dotted;
        unsigned long first_adr;
-       unsigned int inst, last_inst = 0;
-       unsigned char val[4];
+       unsigned int inst, suffix, last_inst = 0, last_suffix = 0;
 
        dotted = 0;
-       for (first_adr = adr; count > 0; --count, adr += 4) {
-               nr = mread(adr, val, 4);
+       for (first_adr = adr; count > 0; --count, adr += nr) {
+               nr = mread_instr(adr, &inst, &suffix);
                if (nr == 0) {
                        if (praddr) {
                                const char *x = fault_chars[fault_type];
@@ -2921,8 +2935,9 @@ generic_inst_dump(unsigned long adr, long count, int 
praddr,
                        }
                        break;
                }
-               inst = GETWORD(val);
-               if (adr > first_adr && inst == last_inst) {
+               if (adr > first_adr && instrs_are_equal(inst, suffix,
+                                                       last_inst,
+                                                       last_suffix)) {
                        if (!dotted) {
                                printf(" ...\n");
                                dotted = 1;
@@ -2931,10 +2946,17 @@ generic_inst_dump(unsigned long adr, long count, int 
praddr,
                }
                dotted = 0;
                last_inst = inst;
-               if (praddr)
+               last_suffix = suffix;
+               if (praddr) {
                        printf(REG"  %.8x", adr, inst);
+                       if (IS_PREFIX(inst))
+                               printf(":%.8x", suffix);
+               }
                printf("\t");
-               dump_func(inst, adr);
+               if (IS_PREFIX(inst))
+                       printf("%.8x:%.8x", inst, suffix);
+               else
+                       dump_func(inst, adr);
                printf("\n");
        }
        return adr - first_adr;
-- 
2.17.1

Reply via email to