These getters are non-trivial, and should always return the same
result. Move them to avoid this, although this doesn't give a
noteworthy compile time improvement.
Details
Details
- Reviewers
rampitec
Diff Detail
Diff Detail
Event Timeline
Comment Actions
LGTM, but I believe they are trivial:
unsigned SGPRSetID; unsigned VGPRSetID;
...
unsigned getSGPRPressureSet() const { return SGPRSetID; };
unsigned getVGPRPressureSet() const { return VGPRSetID; };Comment Actions
That one is non-trivial, but it will change the answer every time occupancy changes.