00001 package gov.nasa.arc.ase.jpf.jvm;
00002
00003 import gov.nasa.arc.ase.jpf.*;
00004 import de.fub.bytecode.Repository;
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 public class Main {
00039 public static String VERSION = "JVM 0.1 beta 12 - (C) 2000 RIACS/NASA Ames Research Center";
00040
00041 public static void main(String args[]) {
00042 Engine.options = VirtualMachine.options = new JVMOptions(Main.class);
00043
00044 Repository.resetClassPath();
00045 Engine.init(args);
00046
00047
00048
00049
00050
00051 VirtualMachine vm = new VirtualMachine(Engine.className);
00052 Engine.vm = vm;
00053
00054
00055
00056
00057
00058 Engine.start();
00059
00060
00061
00062
00063
00064
00065 Engine.statistics.set("/Pools/Fields", new Integer(VirtualMachine.fieldsPool.size()));
00066 Engine.statistics.set("/Pools/ObjectInfo", new Integer(VirtualMachine.objectInfoPool.size()));
00067 Engine.statistics.set("/Pools/StackFrame", new Integer(VirtualMachine.framePool.size()));
00068 Engine.statistics.set("/Pools/ThreadData", new Integer(VirtualMachine.threadPool.size()));
00069
00070
00071
00072
00073
00074
00075 Engine.stop();
00076 }
00077 }