Skip to content

Commit 5bf6a7f

Browse files
committedMar 14, 2022
8282691: add jdb "-R" option for passing any argument to the launched debuggee process
Reviewed-by: alanb, kevinw
1 parent f66070b commit 5bf6a7f

File tree

4 files changed

+35
-6
lines changed

4 files changed

+35
-6
lines changed
 

‎src/jdk.jdi/share/classes/com/sun/tools/example/debug/tty/TTY.java

+3-1
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
@@ -993,6 +993,8 @@ public static void main(String argv[]) throws MissingResourceException {
993993
token.startsWith("-ss") || token.startsWith("-oss") ) {
994994

995995
javaArgs = addArgument(javaArgs, token);
996+
} else if (token.startsWith("-R")) {
997+
javaArgs = addArgument(javaArgs, token.substring(2));
996998
} else if (token.equals("-tclassic")) {
997999
usageError("Classic VM no longer supported.");
9981000
return;

‎src/jdk.jdi/share/classes/com/sun/tools/example/debug/tty/TTYResources.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,9 @@ public Object[][] getContents() {
477477
" -dbgtrace [flags] print info for debugging {0}\n" +
478478
" -tclient run the application in the HotSpot(TM) Client Compiler\n" +
479479
" -tserver run the application in the HotSpot(TM) Server Compiler\n" +
480+
" -R<option> forward <option> to debuggee process if launched by jdb, otherwise ignored\n" +
480481
"\n" +
481-
"options forwarded to debuggee process:\n" +
482+
"options forwarded to debuggee process if lauched by jdb (shorthand instead of using -R):\n" +
482483
" -v -verbose[:class|gc|jni]\n" +
483484
" turn on verbose mode\n" +
484485
" -D<name>=<value> set a system property\n" +

‎src/jdk.jdi/share/man/jdb.1

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.\" Copyright (c) 1995, 2018, Oracle and/or its affiliates. All rights reserved.
1+
.\" Copyright (c) 1995, 2022, Oracle and/or its affiliates. All rights reserved.
22
.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
.\"
44
.\" This code is free software; you can redistribute it and/or modify it
@@ -230,15 +230,25 @@ Runs the application in the Java HotSpot VM server.
230230
.RE
231231
.TP
232232
.B \f[CB]\-J\f[R]\f[I]option\f[R]
233-
Passes \f[I]option\f[R] to the JVM, where option is one of the options
234-
described on the reference page for the Java application launcher.
233+
Passes \f[I]option\f[R] to the JDB JVM, where option is one of the
234+
options described on the reference page for the Java application
235+
launcher.
235236
For example, \f[CB]\-J\-Xms48m\f[R] sets the startup memory to 48 MB.
236237
See \f[I]Overview of Java Options\f[R] in \f[B]java\f[R].
237238
.RS
238239
.RE
239240
.PP
240241
The following options are forwarded to the debuggee process:
241242
.TP
243+
.B \f[CB]\-R\f[R]\f[I]option\f[R]
244+
Passes \f[I]option\f[R] to the debuggee JVM, where option is one of the
245+
options described on the reference page for the Java application
246+
launcher.
247+
For example, \f[CB]\-R\-Xms48m\f[R] sets the startup memory to 48 MB.
248+
See \f[I]Overview of Java Options\f[R] in \f[B]java\f[R].
249+
.RS
250+
.RE
251+
.TP
242252
.B \f[CB]\-v\f[R] or \f[CB]\-verbose\f[R][\f[CB]:\f[R]\f[I]class\f[R]|\f[CB]gc\f[R]|\f[CB]jni\f[R]]
243253
Turns on the verbose mode.
244254
.RS

‎test/jdk/com/sun/jdi/JdbOptions.java

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 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
@@ -151,6 +151,22 @@ public static void main(String[] args) throws Exception {
151151
.expectedArg("-XX:StartFlightRecording:dumponexit=true,maxsize=500M")
152152
.expectedArg("-XX:FlightRecorderOptions:repository=jfrrep");
153153

154+
// -R is tested to see if options are passed through.
155+
test("-R-Dprop1=val1",
156+
"-R-Dprop2=val 2",
157+
"-R-Xmixed",
158+
"-R--add-modules", "-Rjdk.attach",
159+
"-R-Xcheck:jni",
160+
"-R--enable-preview",
161+
"-connect",
162+
"com.sun.jdi.CommandLineLaunch:vmexec=java,main=" + targ + " " + outFilename + " prop1 prop2")
163+
.expectedProp("prop1", "val1")
164+
.expectedProp("prop2", "val 2")
165+
.expectedArg("-Xmixed")
166+
.expectedArg("--add-modules=jdk.attach")
167+
.expectedArg("-Xcheck:jni")
168+
.expectedArg("--enable-preview");
169+
154170
}
155171

156172
private static class TestResult {

0 commit comments

Comments
 (0)
Please sign in to comment.