summaryrefslogtreecommitdiffstats
path: root/dexdump
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@android.com>2010-11-17 12:05:04 -0800
committerDan Bornstein <danfuzz@android.com>2010-11-17 12:05:04 -0800
commit8424432a87c784547e4510bca538eaedc312e40d (patch)
treefd2adcb356418d6dc697ba5a8e1a1bb90eb1fde2 /dexdump
parentd03baafc41fe04167d0a8ba01d8cbc9bcbed8195 (diff)
downloadandroid_dalvik-8424432a87c784547e4510bca538eaedc312e40d.tar.gz
android_dalvik-8424432a87c784547e4510bca538eaedc312e40d.tar.bz2
android_dalvik-8424432a87c784547e4510bca538eaedc312e40d.zip
Generate the tables in InstrUtils.c...almost.
This patch adds code to opcode-gen to generate the opcode info tables currently built at vm start time, but they are left commented out for now. I wanted to separate the work of getting these tables generated from the work of getting those new tables hooked up, and this seemed like a reasonable way to cut through the larger effort. To be clear, I've already verified that the data in the new pregenerated tables matches what's in the status quo. Change-Id: Ie73dc6c6a5721e8f714f845c97b5338141995770
Diffstat (limited to 'dexdump')
-rw-r--r--dexdump/DexDump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dexdump/DexDump.c b/dexdump/DexDump.c
index 071793ea3..594930376 100644
--- a/dexdump/DexDump.c
+++ b/dexdump/DexDump.c
@@ -1032,7 +1032,7 @@ void dumpInstruction(DexFile* pDexFile, const DexCode* pCode, int insnIdx,
pDecInsn->vA, conv.d, pDecInsn->vB_wide);
}
break;
- case kFmtUnknown:
+ case kFmt00x: // unknown op or breakpoint
break;
default:
printf(" ???");