Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GR-54697] Implement debuginfo generation at image-runtime. #10522

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6428e75
Implementation for GDB JIT compilation interface
dominikmascherbauer Jun 26, 2024
8853448
Add a LocalVariableTable to SubstrateMethod
dominikmascherbauer Jun 26, 2024
8ff2d55
Create a test to manually trigger runtime compilation
dominikmascherbauer Jun 26, 2024
f2ee654
Create Initial Runtime Debug Info Implementation
dominikmascherbauer Jul 29, 2024
f9b8aef
Rework Runtime Debug Info Generation
dominikmascherbauer Sep 17, 2024
ce9464e
Implement the GDB JIT interface in System Java
dominikmascherbauer Oct 28, 2024
5938cc2
Refactor and rework gdb-debughelpers
dominikmascherbauer Oct 29, 2024
2207fea
Rework Debug Info Generation to create a Shared base for AOT and Runt…
dominikmascherbauer Nov 20, 2024
75e3ca0
Fix concurrency problems and some cleanup
dominikmascherbauer Dec 2, 2024
929f78a
Add some logging, Create more local info based on frame values, Bugfi…
dominikmascherbauer Dec 5, 2024
3dae547
Remove some constraints from logging in dwarf sections, Split up Debu…
dominikmascherbauer Dec 9, 2024
f111560
Cleanup, Refactoring and some Bugfixes
dominikmascherbauer Dec 10, 2024
68dee18
More Code Cleanup, Remove unused code, merge BFD Name providers
dominikmascherbauer Dec 12, 2024
d08b8e5
Code Cleanup and fix some issues with concurrency
dominikmascherbauer Dec 16, 2024
3b3f664
Add, update and fix copyright headers, fix style issues
dominikmascherbauer Dec 17, 2024
35a6d0f
Code cleanup and fix style issues
dominikmascherbauer Dec 19, 2024
93fc01a
Bugfix in handle release for GDB JIT compilation interface
dominikmascherbauer Jan 7, 2025
b4546fe
Updates and fixes of gdb-debughelpers for shared library supports
dominikmascherbauer Jan 10, 2025
a77914f
Add testing for runtime compilations
dominikmascherbauer Jan 10, 2025
2d16637
Update debug info provider to keep multi method info
dominikmascherbauer Jan 10, 2025
a0bb620
Fix style issue
dominikmascherbauer Jan 13, 2025
05969df
Bugfixes, fix style issue and add copyright headers
dominikmascherbauer Jan 14, 2025
7b88a7f
Bugfixes, Code Cleanup and fix style issue
dominikmascherbauer Jan 15, 2025
ce26fe1
Code cleanup, Add comments
dominikmascherbauer Jan 17, 2025
06ef6ab
Fix style issues
dominikmascherbauer Jan 17, 2025
c4c5130
Fix style issues, Add native image config for runtimedebuginfotest
dominikmascherbauer Jan 21, 2025
a6101eb
Add changelog entry
dominikmascherbauer Jan 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add changelog entry
  • Loading branch information
dominikmascherbauer committed Jan 21, 2025
commit a6101ebb50d9e01a5bde96bf87fb7790f775b3e1
1 change: 1 addition & 0 deletions substratevm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This changelog summarizes major changes to GraalVM Native Image.
* (GR-59313) Deprecated class-level metadata extraction using `native-image-inspect` and removed option `DumpMethodsData`. Use class-level SBOMs instead by passing `--enable-sbom=class-level,export` to the `native-image` builder. The default value of option `IncludeMethodData` was changed to `false`.
* (GR-52400) The build process now uses 85% of system memory in containers and CI environments. Otherwise, it tries to only use available memory. If less than 8GB of memory are available, it falls back to 85% of system memory. The reason for the selected memory limit is now also shown in the build resources section of the build output.
* (GR-59864) Added JVM version check to the Native Image agent. The agent will abort execution if the JVM major version does not match the version it was built with, and warn if the full JVM version is different.
* (GR-54697) Parallelize debug info generator and add support run-time debug info generation. `-H:+RuntimeDebugInfo` adds a run-time debug info generator into a native image. The run-time debug info generator notifies GDB via the [JIT Compilation Interface](https://sourceware.org/gdb/current/onlinedocs/gdb.html/JIT-Interface.html) about new object files for run-time compilations.

## GraalVM for JDK 24 (Internal Version 24.2.0)
* (GR-59717) Added `DuringSetupAccess.registerObjectReachabilityHandler` to allow registering a callback that is executed when an object of a specified type is marked as reachable during heap scanning.
Expand Down
Loading