Eliminate the global variable "InsnToMemAcc" to make Scop/ScopInfo become more protable, such that we can safely use them in a CallGraphSCC pass.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Comments are inlined.
include/polly/ScopDetection.h | ||
---|---|---|
225 ↗ | (On Diff #47901) | Why mutable? If you try to modify it but the "const" state of almost all methods in the ScopDetection is blocking you, put the InstToMemAcc into the DetectionContext, that is what we always did and what makes it clear it belongs to this detection context. |
523 ↗ | (On Diff #47901) | In methods like "getBoxedLoops" you can easily see how you can access the "correct" InstToMemAcc once it is moved to the DetectionContext. |
lib/Analysis/ScopDetection.cpp | ||
505 ↗ | (On Diff #47901) | Thank you sooo much! Finally, somebody removed that thing... |