This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch, rfc] Make store motion use alias oracle


On 1/29/07, Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> wrote:
Hello,

I have some doubts about its usefulness, though.  The usage of alias
oracle makes sm more expensive -- for each "nice" memory reference that
would previously be refused because of may-alias according to vops, we
now need to check all the memory references with that it might conflict
using the alias oracle;

Well, actually, you can do significantly better than this by using schemes that enable you to only have to check a small subset of the memory references (those with a base that could alias, those with the same type if it's dereferenced, etc). That said, i agree that more experimentation is necessary before we go ahead with this.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]