Re: [PATCH] [MIPS] Mark built-in functions as pure

2019-10-31 Thread Jeff Law
On 10/30/19 9:07 AM, Mihailo Stojanović wrote: > Hello Jeff, > > I already have write access on this e-mail address (but not on > the @wavecomp.com address, which you have been putting > into ChangeLogs), so I guess I could commit any further patches > that get approved. OK. I'll let you commit t

Re: [PATCH] [MIPS] Mark built-in functions as pure

2019-10-30 Thread Mihailo Stojanović
Hello Jeff, I already have write access on this e-mail address (but not on the @wavecomp.com address, which you have been putting into ChangeLogs), so I guess I could commit any further patches that get approved. Regards, Mihailo

Re: [PATCH] [MIPS] Mark built-in functions as pure

2019-10-28 Thread Jeff Law
On 10/18/19 12:10 AM, Mihailo Stojanovic wrote: > Mips built-in functions are currently not marked as pure, which > invalidates pointers across built-in function calls. If a pointer is > alive across built-in call, dereferencing it before and after the call > will generate two load instructions ins

[PATCH] [MIPS] Mark built-in functions as pure

2019-10-17 Thread Mihailo Stojanovic
Mips built-in functions are currently not marked as pure, which invalidates pointers across built-in function calls. If a pointer is alive across built-in call, dereferencing it before and after the call will generate two load instructions instead of one. This marks the built-ins as pure, which re