This is an archive of the discontinued LLVM Phabricator instance.

[VE] Clean canRealignStack implementation
ClosedPublic

Authored by kaz7 on Nov 22 2020, 2:57 AM.

Details

Summary

Old canRealignStack calls TRI::canRealignStack and hasReservedCallFrame.
But, this hasReservedCallFrame return true whenever for VE since VE
allocates call frame all the time. It means this canRealignStack is
identical to TRI::canRealignStack. This patch removes VE's
canRealignStack and let caller call TRI::canRealignStack directly.

Diff Detail

Event Timeline

kaz7 created this revision.Nov 22 2020, 2:57 AM
kaz7 requested review of this revision.Nov 22 2020, 2:57 AM
simoll accepted this revision.Nov 23 2020, 3:29 AM
This revision is now accepted and ready to land.Nov 23 2020, 3:29 AM
This revision was landed with ongoing or failed builds.Nov 23 2020, 4:09 AM
This revision was automatically updated to reflect the committed changes.