|
|
|
|
|
by naruhodo
8 days ago
|
|
I like reading articles like this, but as per usual, I also find these articles frustrating to read because they don't specify calling conventions[0] (which are many and varied) - particularly the allocation of arguments to registers and the stack frame. Articles about GoLang assembly language[1] are particularly vexing because the instruction parameters are bass-ackwards - source, destination - like AT&T syntax, but register references are missing their % sigil and so appear to be MASM-style[2]. Authors blogging from deep inside some technical tent should take pity on readers who are not so deeply in the tent and offer a brief primer on assumed knowledge. Any mistakes in the above should be viewed as confirmation of my confusion. [0] https://en.wikipedia.org/wiki/X86_calling_conventions [1] https://go.dev/doc/asm#x86 [2]https://en.wikipedia.org/wiki/X86_assembly_language |
|