From 8c012e9571e3320aa9857e31356f5a0fe5f7dde1 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 2 Jun 2010 12:58:03 -0500 Subject: ARM: Make the predecoder print out the ExtMachInst it gathered when traced. --- src/arch/arm/predecoder.hh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/arch') diff --git a/src/arch/arm/predecoder.hh b/src/arch/arm/predecoder.hh index 63da78dd7..5aba16a6f 100644 --- a/src/arch/arm/predecoder.hh +++ b/src/arch/arm/predecoder.hh @@ -100,7 +100,8 @@ namespace ArmISA emi.instBits = emi.instBits | word; bigThumb = false; offset += 2; - DPRINTF(Predecoder, "Second half of 32 bit Thumb.\n"); + DPRINTF(Predecoder, "Second half of 32 bit Thumb: %#x.\n", + emi.instBits); } else { uint16_t highBits = word & 0xF800; if (highBits == 0xE800 || highBits == 0xF000 || @@ -109,9 +110,9 @@ namespace ArmISA emi.bigThumb = 1; if (offset == 0) { // We've got the whole thing. - DPRINTF(Predecoder, - "All of 32 bit Thumb.\n"); emi.instBits = (data >> 16) | (data << 16); + DPRINTF(Predecoder, "All of 32 bit Thumb: %#x.\n", + emi.instBits); offset += 4; } else { // We only have the first half word. @@ -123,11 +124,12 @@ namespace ArmISA } } else { // A 16 bit thumb inst. - DPRINTF(Predecoder, "16 bit Thumb.\n"); offset += 2; emi.instBits = word; // Set the condition code field artificially. emi.condCode = COND_UC; + DPRINTF(Predecoder, "16 bit Thumb: %#x.\n", + emi.instBits); } } } -- cgit v1.2.3