blob: 205bf6d8a5bea7b22a4bb77a64783d6deaee2c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
// BreakpointManager.java - A convenience class for dealing with breakpoints
/* Copyright (C) 2006 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package gnu.gcj.jvmti;
import java.util.Hashtable;
/**
* A class which manages breakpoints in the VM interpreter engine.
*
* BreakpointManager is a location manager that the interpreter
* uses to lookup the original instruction for any given installed
* breakpoint. JVMTI does not allow multiple breakpoints to be set
* at any given location.
*
* @author Keith Seitz (keiths@redhat.com)
*/
public class BreakpointManager
{
private static BreakpointManager _instance = new BreakpointManager ();
// List of breakpoints indexed by Location
private Hashtable _breakpoints;
private BreakpointManager ()
{
_breakpoints = new Hashtable ();
}
/**
* Creates a new breakpoint. SetBreakpoint will verify the validity
* of the arguments.
*
* @param method method in which to set breakpoint (a jmethodID)
* @param location index where the breakpoint is to be set (a jlocation)
*/
public static Breakpoint newBreakpoint (long method, long location)
{
Breakpoint bp = new Breakpoint (method, location);
Location loc = new Location (method, location);
_instance._breakpoints.put (loc, bp);
return bp;
}
/**
* Deletes the breakpoint at the given Location
*
* @param method method in which to clear breakpoint
* @param location index of breakpoint in method
*/
public static void deleteBreakpoint (long method, long location)
{
Location loc = new Location (method, location);
_instance._breakpoints.remove (loc);
}
/**
* Returns the breakpoint at the given location or null if none installed
* at location
*
* @param method the jmethodID of the breakpoint location
* @param location the index in the method
*/
public static Breakpoint getBreakpoint (long method, long location)
{
Location loc = new Location (method, location);
return (Breakpoint) _instance._breakpoints.get (loc);
}
}
|