This small change reduces compile time for small programs on targets that have
authorPuyan Lotfi <puyan@puyan.org>
Thu, 6 Feb 2014 08:42:01 +0000 (08:42 +0000)
committerPuyan Lotfi <puyan@puyan.org>
Thu, 6 Feb 2014 08:42:01 +0000 (08:42 +0000)
commit12ae04bd17e754a458cb72df5c3e7d1816793012
treee94be7c6afd07b323f88f5e8d87755b74d56e80d
parent0743a72caac082e6fa4e12c4c830fcd1e09fae40
This small change reduces compile time for small programs on targets that have
large register files. The omission of Queries.clear() is perfectly safe because
LiveIntervalUnion::Query doesn't contain any data that needs freeing and
because LiveRegMatrix::runOnFunction happens to reset the OwningArrayPtr
holding Queries every time it is run, so there's no need to zero out the
queries either. Not having to do this for very large numbers of physregs
is a noticeable constant cost reduction in compilation of small programs.

llvm-svn: 200913
llvm/lib/CodeGen/LiveRegMatrix.cpp