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

ruby: remove some FPs from rb/useless-assignment-to-local #19164

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

yoff
Copy link
Contributor

@yoff yoff commented Mar 31, 2025

In preparation for shipping rb/useless-assignment-to-local as a quality query, this PR removes three classes of FPs:

  • a call to super without any parameters is calling the super method with all the parameters. These reads are currently not recognised by our SSA analysis, leading to false positives. This PR crudely filters them out.
  • a call to result on an ERB template will grab all the local variables referenced in the template (example here). As an approximation, we do not report useless assignments in the vicinity of such calls.
  • a reference to binding (as seen in the above example, but templates can also work without such a reference) will capture all the local variables in the scope. This means such assignments are useful even if not explicitly read. Our SSA analysis currently do not see these implicit reads. As an approximation, we do not report useless assignments in the vicinity of references to binding.
  • if there is a retry statement, the assigned variable may be read when control is transferred to the block being rescued. Currently, the control flow graph is missing this edge, so the uses are not seen. As an approximation, we do not report useless assignments in the vicinity of retry statements. (I did implement this missing edge, but it had some performance implications, so I will postpone that solution.)

It may be interesting to make proper improvements to the SSA analysis and the CFG to handle these cases more accurately in the future.

@github-actions github-actions bot added the Ruby label Mar 31, 2025
@yoff yoff added the Awaiting evaluation Do not merge yet, this PR is waiting for an evaluation to finish label Mar 31, 2025
@yoff yoff force-pushed the ruby/refine-deadstore branch from dfa0118 to 38e8c0f Compare March 31, 2025 15:17
@yoff yoff removed the Awaiting evaluation Do not merge yet, this PR is waiting for an evaluation to finish label Apr 2, 2025
@yoff yoff marked this pull request as ready for review April 2, 2025 11:59
@Copilot Copilot bot review requested due to automatic review settings April 2, 2025 11:59
@yoff yoff requested a review from a team as a code owner April 2, 2025 11:59
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot wasn't able to review any files in this pull request.

Files not reviewed (1)
  • ruby/ql/src/queries/variables/DeadStoreOfLocal.ql: Language not supported

Tip: If you use Visual Studio Code, you can request a review from Copilot before you push from the "Source Control" tab. Learn more

@hvitved
Copy link
Contributor

hvitved commented Apr 2, 2025

  • a call to super without any parameters is calling the super method with all the parameters. These reads are currently not recognised by our SSA analysis, leading to false positives. This PR crudely filters them out.

I have attempted to synthesize these arguments here.

@yoff
Copy link
Contributor Author

yoff commented Apr 4, 2025

  • a call to super without any parameters is calling the super method with all the parameters. These reads are currently not recognised by our SSA analysis, leading to false positives. This PR crudely filters them out.

I have attempted to synthesize these arguments here.

Excellent! As soon as that lands, we can remove the filtering from this query.

Copy link
Contributor

@hvitved hvitved left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this PR ought to add some tests for the query.

@yoff
Copy link
Contributor Author

yoff commented Apr 4, 2025

I think this PR ought to add some tests for the query.

Agreed

Copy link
Contributor

github-actions bot commented Apr 4, 2025

QHelp previews:

ruby/ql/src/queries/variables/DeadStoreOfLocal.qhelp

Useless assignment to local variable

A value is assigned to a local variable, but either that variable is never read later on, or its value is always overwritten before being read. This means that the original assignment has no effect, and could indicate a logic error or incomplete code.

Recommendation

Ensure that you check the control and data flow in the method carefully. If a value is really not needed, consider omitting the assignment. Be careful, though: if the right-hand side has a side-effect (like performing a method call), it is important to keep this to preserve the overall behavior.

Example

In the following example, the return value of the call to send on line 2 is assigned to the local variable result, but then never used.

def f(x)
  result = send(x)
  waitForResponse
  return getResponse
end

Assuming that send returns a status code indicating whether the operation succeeded or not, the value of result should be checked, perhaps like this:

def f(x)
  result = send(x)
	# check for error
  if (result == -1)
    raise "Unable to send, check network."
  end
  waitForResponse
  return getResponse
end

References

@yoff yoff force-pushed the ruby/refine-deadstore branch from 48b565f to 3701ee0 Compare April 4, 2025 14:46
@yoff
Copy link
Contributor Author

yoff commented Apr 4, 2025

I have rebased for a proper structure: Add tests - make improvements - see test results improve.

@yoff yoff requested a review from hvitved April 4, 2025 14:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants