Skip to content

Commit 680e026

Browse files
committedFeb 24, 2022
Cleanup a comment and the code related to it that was very confusing to read.
1 parent d5d7ab3 commit 680e026

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
 

‎src/jdk.jdwp.agent/share/native/libjdwp/stepControl.c

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -463,9 +463,15 @@ handleMethodEnterEvent(JNIEnv *env, EventInfo *evinfo,
463463
*/
464464
JDI_ASSERT(step->depth == JDWP_STEP_DEPTH(INTO));
465465

466-
if ( (!eventFilter_predictFiltering(step->stepHandlerNode, clazz, classname))
467-
&& ( step->granularity != JDWP_STEP_SIZE(LINE)
468-
|| hasLineNumbers(method) ) ) {
466+
/*
467+
* We need to figure out if we are entering a method that we want to resume
468+
* single stepping in. If the class of this method is being filtered out, then
469+
* we don't resume. Otherwise, if we are not line stepping then we resume, and
470+
* if we are line stepping we don't resume unless the method has LineNumbers.
471+
*/
472+
jboolean filteredOut = eventFilter_predictFiltering(step->stepHandlerNode, clazz, classname);
473+
jboolean isStepLine = step->granularity == JDWP_STEP_SIZE(LINE);
474+
if (!filteredOut && (!isStepLine || hasLineNumbers(method))) {
469475
/*
470476
* We've found a suitable method in which to resume stepping.
471477
* We can also get rid of the method entry handler now.

0 commit comments

Comments
 (0)
Please sign in to comment.