Compare commits

...

6 Commits

Author SHA1 Message Date
5fc5eb08f8 fix: update breakpoints when removing bp 2024-03-30 12:52:44 +02:00
8acbc003c4 fix: properly resolve breakpoints 2024-03-30 12:13:04 +02:00
fda33112a7 fix: load maps when attaching debugger 2024-03-30 11:13:45 +02:00
67b2413d7c bump2 2024-03-30 10:36:55 +02:00
3a05416510 bump 2024-03-30 10:30:26 +02:00
c291328cc3 fix: detach debugger after close 2024-03-30 10:22:12 +02:00
4 changed files with 49 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
project_group = me.topchetoeu
project_name = jscript
project_version = 0.9.12-beta
project_version = 0.9.27-beta
main_class = me.topchetoeu.jscript.utils.JScriptRepl

View File

@@ -104,7 +104,9 @@ public class FunctionMap {
var res = new ArrayList<Location>(candidates.size());
for (var candidate : candidates.entrySet()) {
res.add(candidate.getValue().ceiling(new Location(line, column, candidate.getKey())));
var val = correctBreakpoint(new Location(line, column, candidate.getKey()));
if (val == null) continue;
res.add(val);
}
return res;

View File

@@ -32,10 +32,17 @@ public class DebugContext {
if (sources != null) {
for (var source : sources.entrySet()) debugger.onSourceLoad(source.getKey(), source.getValue());
}
if (maps != null) {
for (var map : maps.entrySet()) debugger.onFunctionLoad(map.getKey(), map.getValue());
}
this.debugger = debugger;
return true;
}
public boolean detachDebugger(DebugHandler debugger) {
if (this.debugger != debugger) return false;
return detachDebugger();
}
public boolean detachDebugger() {
this.debugger = null;
return true;

View File

@@ -86,7 +86,9 @@ public class SimpleDebugger implements Debugger {
public final String condition;
public final Pattern pattern;
public final int line, start;
public final WeakHashMap<FunctionBody, Set<Location>> resolvedLocations = new WeakHashMap<>();
public final long locNum;
public final HashMap<Filename, Location> resolvedLocations = new HashMap<>();
public final HashMap<Filename, Long> resolvedDistances = new HashMap<>();
public Breakpoint(int id, Pattern pattern, int line, int start, String condition) {
this.id = id;
@@ -94,18 +96,28 @@ public class SimpleDebugger implements Debugger {
this.pattern = pattern;
this.line = line;
this.start = start;
this.locNum = start | ((long)line << 32);
if (condition != null && condition.trim().equals("")) condition = null;
}
// TODO: Figure out how to unload a breakpoint
// TODO: Do location resolution with function boundaries
public void addFunc(FunctionBody body, FunctionMap map) {
try {
for (var loc : map.correctBreakpoint(pattern, line, start)) {
if (!resolvedLocations.containsKey(body)) resolvedLocations.put(body, new HashSet<>());
var set = resolvedLocations.get(body);
set.add(loc);
var currNum = loc.start() + ((long)loc.line() << 32);
long currDist = 0;
if (currNum > locNum) currDist = currNum - locNum;
else currDist = locNum - currNum;
if ( currDist > resolvedDistances.getOrDefault(loc.filename(), Long.MAX_VALUE)) continue;
resolvedLocations.put(loc.filename(), loc);
resolvedDistances.put(loc.filename(), currDist);
}
for (var loc : resolvedLocations.values()) {
ws.send(new V8Event("Debugger.breakpointResolved", new JSONMap()
.set("breakpointId", id)
.set("location", serializeLocation(loc))
@@ -205,8 +217,9 @@ public class SimpleDebugger implements Debugger {
private ObjectValue emptyObject = new ObjectValue();
private WeakHashMap<DebugContext, DebugContext> contexts = new WeakHashMap<>();
private WeakHashMap<FunctionBody, FunctionMap> mappings = new WeakHashMap<>();
private WeakHashMap<FunctionBody, HashMap<Location, Breakpoint>> bpLocs = new WeakHashMap<>();
private HashMap<Location, HashSet<Breakpoint>> bpLocs = new HashMap<>();
private HashMap<Integer, Breakpoint> idToBreakpoint = new HashMap<>();
@@ -296,13 +309,11 @@ public class SimpleDebugger implements Debugger {
bpLocs.clear();
for (var bp : idToBreakpoint.values()) {
for (var el : bp.resolvedLocations.entrySet()) {
if (!bpLocs.containsKey(el.getKey())) bpLocs.put(el.getKey(), new HashMap<>());
var map = bpLocs.get(el.getKey());
for (var loc : bp.resolvedLocations.values()) {
bpLocs.putIfAbsent(loc, new HashSet<>());
var set = bpLocs.get(loc);
for (var loc : el.getValue()) {
map.put(loc, bp);
}
set.add(bp);
}
}
}
@@ -642,11 +653,10 @@ public class SimpleDebugger implements Debugger {
execptionType = CatchType.NONE;
state = State.RESUMED;
// idToBptCand.clear();
mappings.clear();
bpLocs.clear();
idToBreakpoint.clear();
// locToBreakpoint.clear();
// tmpBreakpts.clear();
filenameToId.clear();
idToSource.clear();
@@ -664,6 +674,9 @@ public class SimpleDebugger implements Debugger {
stepOutFrame = currFrame = null;
stepOutPtr = 0;
for (var ctx : contexts.keySet()) ctx.detachDebugger(this);
contexts.clear();
updateNotifier.next();
}
@@ -717,16 +730,15 @@ public class SimpleDebugger implements Debugger {
var bpt = new Breakpoint(nextId(), regex, line, col, cond);
idToBreakpoint.put(bpt.id, bpt);
var locs = new JSONList();
for (var el : mappings.entrySet()) {
bpt.addFunc(el.getKey(), el.getValue());
}
for (var el : bpt.resolvedLocations.values()) {
for (var loc : el) {
locs.add(serializeLocation(loc));
}
var locs = new JSONList();
for (var loc : bpt.resolvedLocations.values()) {
locs.add(serializeLocation(loc));
}
ws.send(msg.respond(new JSONMap()
@@ -738,6 +750,7 @@ public class SimpleDebugger implements Debugger {
var id = Integer.parseInt(msg.params.string("breakpointId"));
idToBreakpoint.remove(id);
updateBreakpoints();
ws.send(msg.respond());
}
@Override public synchronized void continueToLocation(V8Message msg) throws IOException {
@@ -966,10 +979,11 @@ public class SimpleDebugger implements Debugger {
) {
pauseDebug(ctx, null);
}
else if (isBreakpointable && bpLocs.getOrDefault(cf.function.body, new HashMap<>()).containsKey(loc)) {
var bp = bpLocs.get(cf.function.body).get(loc);
var ok = bp.condition == null ? true : Values.toBoolean(run(currFrame, bp.condition).result);
if (ok) pauseDebug(ctx, bp);
else if (isBreakpointable && bpLocs.containsKey(loc)) {
for (var bp : bpLocs.get(loc)) {
var ok = bp.condition == null ? true : Values.toBoolean(run(currFrame, bp.condition).result);
if (ok) pauseDebug(ctx, bp);
}
}
// else if (isBreakpointable && tmpBreakpts.remove(loc)) pauseDebug(ctx, null);
else if (isBreakpointable && pendingPause) {
@@ -1041,6 +1055,7 @@ public class SimpleDebugger implements Debugger {
public SimpleDebugger attach(DebugContext ctx) {
ctx.attachDebugger(this);
contexts.put(ctx, ctx);
return this;
}