From b83e4ad3356da6152b327e3b8291cbc4d694bce2 Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 7 May 1999 22:55:38 +0000 Subject: [PATCH] add interpreter debugging option git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@794 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/GlobalOptions.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jode/jode/GlobalOptions.java b/jode/jode/GlobalOptions.java index 2b726f4..2f8fd47 100644 --- a/jode/jode/GlobalOptions.java +++ b/jode/jode/GlobalOptions.java @@ -41,11 +41,12 @@ public class GlobalOptions { public static final int DEBUG_CHECK = 0x080; public static final int DEBUG_LOCALS = 0x100; public static final int DEBUG_CONSTRS = 0x200; + public static final int DEBUG_INTERPRT = 0x400; public static final String[] debuggingNames = { "bytecode", "verifier", "types", "flow", "inout", "analyze", "lvt", "check", "locals", - "constructors", + "constructors", "interpreter" }; public static void usageDebugging() { @@ -71,6 +72,8 @@ public class GlobalOptions { "dump local merging information."); err.println("\tconstructors " + "dump constructor simplification."); + err.println("\tinterpreter " + + "debug execution of interpreter."); System.exit(0); }