-
Notifications
You must be signed in to change notification settings - Fork 33
Fix assignability analysis for prematurely read fields #190
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
base: develop
Are you sure you want to change the base?
Conversation
...lidate/src/test/java/org/opalj/fpcf/fixtures/xl/js/sandbox/JSAllocationWriteFieldFromJS.java
Outdated
Show resolved
Hide resolved
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.
Apart from the comments in the code, the tests fail with this PR, please have a look why and make sure tests succeed, as otherwise this can't be merged.
...cala/org/opalj/tac/fpcf/analyses/fieldassignability/AbstractFieldAssignabilityAnalysis.scala
Outdated
Show resolved
Hide resolved
...cala/org/opalj/tac/fpcf/analyses/fieldassignability/AbstractFieldAssignabilityAnalysis.scala
Outdated
Show resolved
Hide resolved
} else { | ||
receiverVar.isDefined && receiverVar.get.definedBy != SelfReferenceParameter | ||
} | ||
if (method.isInitializer && method.classFile == field.classFile) { |
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.
I think this part of the code needs documentation to understand what all of the different conditions do
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.
Still not documented
...main/scala/org/opalj/tac/fpcf/analyses/fieldassignability/L2FieldAssignabilityAnalysis.scala
Outdated
Show resolved
Hide resolved
...main/scala/org/opalj/tac/fpcf/analyses/fieldassignability/L2FieldAssignabilityAnalysis.scala
Outdated
Show resolved
Hide resolved
...utability/openworld/assignability/advanced_counter_examples/PrematurelyReadOfFinalField.java
Outdated
Show resolved
Hide resolved
...utability/openworld/assignability/advanced_counter_examples/PrematurelyReadOfFinalField.java
Outdated
Show resolved
Hide resolved
…m/opalj/opal into fix/assignability-prematurelyRead
…assignments of array values
...main/scala/org/opalj/tac/fpcf/analyses/fieldassignability/L2FieldAssignabilityAnalysis.scala
Outdated
Show resolved
Hide resolved
if (index > 0 && stmts(index).isPutStatic) { | ||
stmts(index).asPutStatic.value.asVar | ||
} else if ( | ||
index > 0 && stmts(index).isPutField && stmts(index).asPutField.value.asVar.value.isArrayValue.isYes |
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.
Please document this case, it is unclear why it is like this. In particular, why do we take the value from all PutStatic instructions, but only PutField instructions with array values? And why can't we rely on the receiverVar in all cases? Shouldn't it be same the asPut{Static,Field}.value.asVar anyway?
if (index > 0 && stmts(index).isPutStatic) { | ||
stmts(index).asPutStatic.value.asVar | ||
} else if ( | ||
index > 0 && stmts(index).isPutField && stmts(index).asPutField.value.asVar.value.isArrayValue.isYes |
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.
What if it is unknown whether the value is an array value? (Not sure if this can happen here, but still, one should think about it)
} else { | ||
receiverVar.isDefined && receiverVar.get.definedBy != SelfReferenceParameter | ||
} | ||
if (method.isInitializer && method.classFile == field.classFile) { |
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.
Still not documented
# Conflicts: # OPAL/tac/src/main/scala/org/opalj/tac/fpcf/analyses/fieldassignability/L2FieldAssignabilityAnalysis.scala
# Conflicts: # OPAL/tac/src/main/scala/org/opalj/tac/fpcf/analyses/fieldassignability/AbstractFieldAssignabilityAnalysis.scala
The
FieldAssignabilityAnalysis
tries to determine whether one can consider a field as "final", i.e. if only one known value exists for this field. This can be the case even when the field is not itself final, i.e. when there is a singular write in the constructor that publishes a single value.However, one can read the field before this singular write in the constructor, yielding the default value of the field (whether explicitly given or not). Thus, two known values of this field exist, and we cannot simply consider the field as having one value anymore.
We need to think about this some more!