Re: [go-nuts] Re: Help translate x86-64 assenbly to Go assembly

2017-01-18 Thread Damian Gryski
On Tuesday, January 17, 2017 at 12:01:43 PM UTC+1, la...@namsral.com wrote: > > Thanks, Damian Gryski has a nice tutorial on how to write Go assembly > functions with PeachPy. > > https://blog.gopheracademy.com/advent-2016/peachpy/ > Thanks! I've written a bunch more assembly code using Peach

Re: [go-nuts] Re: Help translate x86-64 assenbly to Go assembly

2017-01-17 Thread lars
Thanks, Damian Gryski has a nice tutorial on how to write Go assembly functions with PeachPy. https://blog.gopheracademy.com/advent-2016/peachpy/ On Tuesday, January 17, 2017 at 11:43:11 AM UTC+1, Peter Waller wrote: > > A useful tool for this in general is > https://github.com/Maratyszcza/Pea

Re: [go-nuts] Re: Help translate x86-64 assenbly to Go assembly

2017-01-17 Thread Peter Waller
A useful tool for this in general is https://github.com/Maratyszcza/PeachPy/ It will even generate BYTE directives if the go assembler doesn't support the instruction you want to use. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscrib

[go-nuts] Re: Help translate x86-64 assenbly to Go assembly

2017-01-16 Thread lars
Managed to get this working The Go implementation now returns a monotonic time and works on 64 bit Intel Macs. Updated version at https://gist.github.com/namsral/376d0f063f631593a52e3f5b439e289c#file-time_amd64-v2-s On Tuesday, January 17, 2017 at 4:36:27 AM UTC+1, la...@namsral.com wrote: >