-
Notifications
You must be signed in to change notification settings - Fork 33
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
Add the mangled_args property to kernel_api types. #1443
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# SPDX-FileCopyrightText: 2020 - 2024 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
"""Implements a custom debug metadata generator class for numba-dpex kernels. | ||
""" | ||
|
||
from numba.core import debuginfo | ||
|
||
|
||
class DIBuilder(debuginfo.DIBuilder): | ||
"""Overrides Numba's default DIBuilder with numba-dpex-specific customizations.""" | ||
|
||
# pylint: disable=too-many-arguments | ||
def mark_subprogram(self, function, qualname, argnames, argtypes, line): | ||
"""Sets DW_AT_name and DW_AT_linkagename tags for a kernel decorated function. | ||
|
||
Numba generates a unique name for every function it compiles, but in | ||
upstream Numba the unique name is not used as the "qualified" name of | ||
the function. The behavior leads to a bug discovered in Numba-dpex when | ||
a compiled function uses closure variables. | ||
Refer (https://github.com/IntelPython/numba-dpex/issues/898). | ||
To resolve the issue numba-dpex uses the unique_name as the qualified | ||
name. Refer to | ||
:class:`numba_dpex.core.passes.passes.QualNameDisambiguationLowering`. | ||
However, doing so breaks setting GDB breakpoints based on function | ||
name as the function name is no longer what is in the source, but what | ||
is the unique name generated by Numba. To fix it, numba-dpex uses a | ||
modified DISubprogram metadata generator. The name (DW_AT_name) tag is | ||
set to the base function name, discarding the unique qualifier and | ||
linkagename is set to an empty string. | ||
""" | ||
name = qualname[0 : qualname.find("$")] # noqa: E203 | ||
argmap = dict(zip(argnames, argtypes)) | ||
|
||
di_subp = self._add_subprogram( | ||
name=name, | ||
linkagename="", | ||
line=line, | ||
function=function, | ||
argmap=argmap, | ||
) | ||
function.set_metadata("dbg", di_subp) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was it add to bypass test or there was a bug here? Change looks suspicious)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After these changes the
linkagename
tag is no longer used. So changed the test to a negative test case to make surelinkagename
is not set. I have added comments make the change clearer.