-
Notifications
You must be signed in to change notification settings - Fork 273
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 missing source locations #7856
Add missing source locations #7856
Conversation
861a411
to
9df6b29
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #7856 +/- ##
========================================
Coverage 79.66% 79.67%
========================================
Files 1682 1682
Lines 195431 195489 +58
========================================
+ Hits 155694 155748 +54
- Misses 39737 39741 +4 ☔ View full report in Codecov by Sentry. |
9df6b29
to
b8de17a
Compare
0392ca4
to
697598d
Compare
I'd be curious why the various program elements end up not having a source location to begin with. |
It may be preferable to fix that when they are generated, as opposed to fixing it up later. |
Is this specifically about the commit "switch-case conversion: ensure case selection has source location" - I think all other commits do as you say, or am I missing something? |
697598d
to
d9c01d5
Compare
Thank you for insisting that this be done. I believe I have now fixed the root causes as far as feasible. (There are still places outside the language front-ends that generate symbol expressions without a source location, but we might not even have a reasonable source location to pick in those cases.) |
d9c01d5
to
a959d8d
Compare
a959d8d
to
a220db8
Compare
a220db8
to
861fabd
Compare
861fabd
to
1f28ad1
Compare
We already supported the fluent-style with_source_location for copying from another expression (since 917f9a0). Now also support passing a source location directly.
1f28ad1
to
661e6e7
Compare
Create or maintain source location information in symbol expressions.
We had this folder in place for a while, but it was neither included in the Makefile nor the CMake-based regression test execution.
Linking (and also other workflows) use expression replacement. Doing so must not destroy the source location annotated to an expression. This left us with instructions without location.
We must not produce goto-program instructions without location, even when they are considered dummy instructions: those instructions may subsequently be used to produce a source location, which was thus missing when converting nested if-then-else statements.
The expression operand was at times lacking a source location when it had been subject to expression simplification. Fixes the root cause in the C front-end, and makes sure the invariant is maintained during goto conversion.
Return type fix-up tried to use the source location from the function-call code, which had just been constructed and necessarily lacked a source location. Instead, explicitly pass a source location.
661e6e7
to
5d8abbe
Compare
Linking (and also other workflows) use expression replacement. Doing so
must not destroy the source location annotated to an expression. This
left us with instructions without location.