Minux Ma
                                            Minux Ma
                                        
                                    I think this issue gives one reason for do go test -c ./... for the whole GOPATH: test the SSA compiler code generation. The key point is most tests are...
By conflicting flags added by tests, consider two packages that both add -update flags to update golden output of their test data. The code will compile, but will fail at...
@bradfitz, I think for your purpose, having multiple go test -c processes is better than figuring out where to store the compiled binaries when building multiple tests (the only safe...
It seems we'd better introduce a new name for the real sp register, because SP in source code really means the virtual one, independent of how it's used.
On Feb 4, 2015 2:36 PM, "Charles Forsyth" [email protected] wrote: > nearly: ADD $32, Rn, SP (say) will add exactly 32 to the hardware > register, > no messing about....
Or we can adopt the x86 rule: "On architectures with a real register namedSP, the name prefix distinguishes references to the virtual stack pointer from references to the architectural SP...
FYI, golang.org/cl/4823 Rob's new cmd/asm treat SP and PC on ARM as pseudo-registers, so if you want to refer to the real hardware register, you have to use R13 and...
On Fri, Feb 13, 2015 at 7:31 PM, Dave Cheney [email protected] wrote: > At some point I want to ask you why PC and SP are virtual registers, I >...
I was bit by this problem again. Basically, each time I see $0(SP), the intent really is $0(RSP).
I guess you really mean to use FMOV (scalar, immediate) instruction to load FP immediates? Because liblink currently rewrites FP immediate loads to memory loads correctly ($f32.xxxx, $f64.xxxx symbols) in...