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

Java: Adjust caching of BasicBlocks, BaseSSA, and CompileTimeConstants #19093

Merged
merged 4 commits into from
Mar 31, 2025

Conversation

aschackmull
Copy link
Contributor

@aschackmull aschackmull commented Mar 21, 2025

This PR makes 3 changes to caching in the Java QL libs (separated cleanly in individual commits):

  • Merge the cached stages related to BasicBlocks, and cache the char-pred.
  • Merge the cached stages related to BaseSSA, and cache the SourceVariable newtype.
  • Values of CompileTimeConstants of type int, bool, and string involve mutually recursive calculation. The int values were cached but the other two weren't, so I fixed that. Since they're mutually recursive they all end up in the same stage.

All 3 of these changes were motivated by statically inspecting DIL overlap between stages. These cases stood out as potentially being able to cause recomputation.

The changes caused a bit of performance fallout, which was fixed in an additional commit.

@github-actions github-actions bot added the Java label Mar 21, 2025
@@ -24,7 +40,10 @@

/** Gets an immediate successor of this basic block. */
cached
BasicBlock getABBSuccessor() { result = this.getLastNode().getASuccessor() }
BasicBlock getABBSuccessor() {

Check warning

Code scanning / CodeQL

Acronyms should be PascalCase/camelCase. Warning

Acronyms in getABBSuccessor should be PascalCase/camelCase.
@aschackmull aschackmull added the no-change-note-required This PR does not need a change note label Mar 25, 2025
@aschackmull aschackmull changed the title Java: Adjust caching Java: Adjust caching of BasicBlocks, BaseSSA, and CompileTimeConstants Mar 25, 2025
@aschackmull
Copy link
Contributor Author

Dca looks like a decent performance improvement.

@aschackmull aschackmull marked this pull request as ready for review March 25, 2025 08:17
@aschackmull aschackmull requested a review from a team as a code owner March 25, 2025 08:17
@hvitved
Copy link
Contributor

hvitved commented Mar 31, 2025

Dca looks like a decent performance improvement.

Also a decent DIL size improvement.

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.

One question, the caching changes LGTM.

private predicate localFlowPlusInitializers(DataFlow::Node pred, DataFlow::Node succ) {
exists(Variable v | v.isFinal() and pred.asExpr() = v.getInitializer() |
DataFlow::localFlow(DataFlow::exprNode(v.getAnAccess()), succ)
private predicate localFlowStepPlusInitializers(DataFlow::Node pred, DataFlow::Node succ) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this rewrite semantics preserving? It looks like before it would calculate flow as

pred --initializer--> access --local--*> succ

and now it is

pred --initializer/local--*> succ

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Correct, it's not 100% semantics preserving, but I think the tweaked version makes more sense: If we're doing local flow plus initialization of final fields, then it seems like a mistake to rule out local flow prior to the initialization, like e.g. a cast or something like that.

@aschackmull aschackmull merged commit e8e9403 into github:main Mar 31, 2025
16 checks passed
@aschackmull aschackmull deleted the java/caching branch March 31, 2025 08:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Java no-change-note-required This PR does not need a change note
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants