comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotExceptionHandler.java @ 2284:569d3fe7d65c

non-static VMEntries and VMExits, CompilationServer simplifications
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 07 Apr 2011 15:32:25 +0200
parents f58974bce9bd
children
comparison
equal deleted inserted replaced
2282:0309d394eb5f 2284:569d3fe7d65c
28 private int endBci; 28 private int endBci;
29 private int handlerBci; 29 private int handlerBci;
30 private int catchClassIndex; 30 private int catchClassIndex;
31 private RiType catchClass; 31 private RiType catchClass;
32 32
33 public HotSpotExceptionHandler() {
34 super(null);
35 }
36
33 @Override 37 @Override
34 public int startBCI() { 38 public int startBCI() {
35 return startBci; 39 return startBci;
36 } 40 }
37 41