-
Notifications
You must be signed in to change notification settings - Fork 26
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
Improve interface of reachable method analysis and related states to prevent misuse #220
base: develop
Are you sure you want to change the base?
Improve interface of reachable method analysis and related states to prevent misuse #220
Conversation
Code changes look reasonable, but I'm not sure what the purpose of an eager ReachableMethodsAnalysis would be. ReachableMethodsAnalysis is meant for analyses that only want to analyze methods that are definitely reachable, and that is only known once there is a respective Callers property. |
That is true, now that I think about it. Lets look at it this way: Initially, there is no purpose an eager Theoretically, we could just fix #112 and be fine. Since this code change does make sense regardless since it simply updates a class to reflect its own abilities, I'd still opt for merging this. |
Agreed, but #112 should really be fixed, using eager schedulers to work around this is merely a band aid and will not be sufficient once analysis batching is implemented. |
results | ||
) | ||
} | ||
|
||
/** | ||
* @deprecated Use [[processMethod]](ContextType, Option[_]) instead |
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.
Doesn't this lead to compile errors since we have warnings-as-errors active? This should produce a deprecation warning after all for the existing subclasses, right?
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.
That is true. I now decided to, instead of deprecating it, remove it entirely since we only do major updates for now anyways and the next release is allowed to break existing analyses. During this I will make it easier for analyses to define which portions of the reachable method analysis they implement (i.e. with / without body). This also includes a refactoring of the state handling for the only analysis that processes methods without a body but still implements TACAIBasedAnalysisState
regardless (which does not really make sense)...
eac46e6
to
ec68ef8
Compare
else | ||
otherDependees | ||
} | ||
abstract override def dependees: Set[SomeEOptionP] = super.dependees ++ Some(_tacDependee).filter(_.isRefinable) |
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 understand the wish to make this more 'functional', but I think this creates more overhead than necessary.
* @author Maximilian Rüsch | ||
*/ | ||
class TACAIBasedCGState[ContextType <: Context]( | ||
override val callContext: ContextType, |
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.
This looks weird. Does this really have to be an override val
? Can't it just be a constructor parameter that is passed to the CGState constructor?
returnResult(new DirectCalls(), enforceCalleesResult = true)(state) | ||
} else { | ||
val state = new CGState[ContextType](callContext) | ||
Results { |
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.
Use round parentheses
} else { | ||
val state = new CGState[ContextType](callContext) | ||
Results { | ||
new DirectCalls().partialResults(state.callContext, enforceCalleesResult = true) |
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.
Does this actually do anything? Doesn't look like it.
I think this produces no results at all while missing what the original returnResults
call would have returned: the InterimPartialResult for the state's dependees.
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.
It does do something: Enforce a partial callees result to be produced as it would by an empty direct calls helper instance. If you look at the previous code, it was simply calling returnResult
with the state and a newly instantiated helper object. Since the state cannot have a dependee since we did not provide it any (and it does not have access to the project or propertyStore), no InterimResult
could be ever produced. Thus, we can specialize returnResult
to use the TACAI-Based state to use in the continuation and return our result independently here.
I will make this clearer by removing the newly created state entirely, since we only use the callContext
from it anyways.
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.
Oh, right, I didn't see that.
else | ||
returnResult(new DirectCalls(), enforceCalleesResult = true)(state) | ||
} else { | ||
val state = new CGState[ContextType](callContext) |
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.
Having two different kinds of state here looks strange. If the code below actually did anything (see other comment), I'd expect this to fail in the continuation, because the continuation would get an unexpected kind of state.
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.
Since there is no continuation (see #220 (comment)), it cannot fail. I will remove the state entirely (see the other comment again).
// the method is reachable, so we analyze it! | ||
|
||
if (callersEOptP.isFinal && callersEOptP.ub == NoCallers) { | ||
return NoResult; |
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.
Shouldn't we keep the check for an illegal NoCallers
interim state at least as an assertion? Right now it is not clearly visible that the method is reachable and should be analyzed.
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.
The NoCallers
interim state was illegal since the code at the top did not know the class could use the continuation without a depending caller. Since the class can invoke and handle continuations just fine without using a depender constructed from a caller, the NoCallers
interim state is not illegal anymore.
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.
But it's an illegal state in general, isn't it? I don't think call graph analyses are supposed to ever create such an interim state.
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.
If it is an illegal state in general, then it should be asserted by the call graph generating framework and not the framework for analysis that use the call graph (even if they at least partially overlap). This class seems like the wrong area of code to make such an assertion (e.g. it would only be triggered when using such an analysis even though the result should be illegal regardless of using this class or not).
): ProperPropertyComputationResult = { | ||
val newCallers = if (eOptP.hasUBP) eOptP.ub else NoCallers |
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.
Wouldn't it be more sensible to turn this into an if, only executing the forNewCalleeContexts
if there is a UBP?
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.
Since we need the newCallers
for constructing a continuation and forNewCalleeContexts
does not do anything when NoCallers
is given, I view this as reasonable and less verbose as well.
tacEP: EPS[Method, TACAI] | ||
eOptP: EOptionP[DeclaredMethod, Callers], | ||
oldCallers: Callers, | ||
tacEPOpt: Option[EPS[Method, TACAI]] |
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.
An EPS wrapped into an Option looks wrong. EPS is already a subtype of EOptionP which captures the possibility of no value being present.
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.
It kind of depends on whether you understand EPK
as an interim / refinable state (which it says it is since the class expresses it is not final) that may produce a value if awaited via a continuation OR you understand it as a simple "there is no property here and there will never be one".
Since my understanding of the class is the former, I think an Option[EPS]
is more reasonable than an EOptionP
here.
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.
Well, EPK
is also used for queries, just representing a pair of entity and propertykey as the name suggest.
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 tried to use an EPK
, but there is a problem: Since the processMethodWithoutBody
is also invoked when no single defined method exists, there may be no Method
to derive from the given DeclaredMethod
with which you would create an EPK[Method, TACAI]
. See https://github.com/opalj/opal/actions/runs/10939312309/job/30369296437?pr=220.
So we probably have to go back to using an Option
, be it Option[EPS]
or Option[EOptionP]
. Or do you have another idea?
|
||
trait DefinedBodyReachableMethodAnalysis extends ReachableMethodAnalysis { |
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.
Since there seems to be only one ReachableMethodAnalysis that does process methods without body, might it be more sensible to switch the logic around, with the base trait not doing that and the specialized trait doing it?
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 pondered this and did could not answer this question. On one hand, if the specialized trait is used far more than the base trait, something might be wrong. Additionally, the specialized trait right now restricts the abilities of the base trait (if you want to view "does not process but just returns no result" as a restriction) which feels a bit against the core principles of inheritance.
On the other hand, even if the base trait does not handle unknown bodies, it still needs to define extension points for
- The unknown body specialised trait to handle such unknown bodies
- A
processMethod
or similar that has anEOptionP
as a parameter.
In short (using the flipped version): If you only extend the ReachableMethodAnalysis
you should only need to implement the EPS
version of processMethod
since you know you have a body. If you extend the UnknownBodyReachableMethodAnalysis
, you should only need to implement the EOptionP
version of processMethod
which can handle both scenarios.
All in all, I feel more comfortable with the current solution, but I am happy to replace it with a better one if you have some ideas.
ec68ef8
to
30bec19
Compare
During development on #1 a triggered analysis that is based on the
ReachableMethodAnalysis
trait got an eager scheduler. Turns out theReachableMethodAnalysis
trait implicitly expects to only implement triggered analyses and is not (yet) compatible with eager analyses.It expects at least some
ub
on theCallers
property on the entity (since that would be the only time it would be triggered), but with an eager analysis that might not be the case yet when the analysis values are computed at the same time as the call graph. The rest of the analysis actually returns a dependency on the callers property just fine, even if no callers are present:opal/OPAL/tac/src/main/scala/org/opalj/tac/fpcf/analyses/cg/ReachableMethodAnalysis.scala
Line 101 in c6d8224
This PR updates the
ReachableMethodAnalysis
to stop throwing a match exception when used with an eager analysis and adds compatibility. At the same time, some other handling of the analysis is improved to add clarity or prevent further misuse (such as throwing aroundnull
values which are discouraged in Scala).Note
This PR does not yet update the usages of the reachable method analysis to not use the deprecated method since they can be pretty expansive. Actually, the whole deprecation is up for discussion, so a second PR changing all the usages may not be created yet until we agree on a solution (which can also be revert the changes made to the public interface).