Earlier quoted context omitted.
Interesting, would you mind sharing the script or give a short overview how it works?
Here it is (warning: Perl): http://pastebin.com/MFmDzY0g It calls "objdump -d" on the binary, which is binutil's disassembler. objdump prints each instruction out in the following format: 5dc: 67 80 7d 00 00 cmpb $0x0,0x0(%ebp) The first part is the instruction offset; the second is the bytes that comprise the instruction; the third part is the instruction in AT&T assembly syntax. The script uses regexs to cut off th…
X86 Register Encoding
51–54 of 54 posts
Re: X86 Register Encoding
#52Earlier quoted context omitted.
Amd64 encoding, as is the case with most x86 encodings, is longer then it should be. Due to the two companies not communicating/cooperating. That is the one advantage that i think ARM has over x86/amd64. That ARM encoding is much shorter.
You just repeated your point without adding anything new, that doesn't help your argument.
Re: X86 Register Encoding
#53Earlier quoted context omitted.
You just repeated your point without adding anything new, that doesn't help your argument.
They couldn't use the shorter code space. So no, they could not do whatever they wanted. (note that making a completely new instruction encoding scheme would fail for obvious reasons)
Re: X86 Register Encoding
#54Earlier quoted context omitted.
They couldn't use the shorter code space. So no, they could not do whatever they wanted. (note that making a completely new instruction encoding scheme would fail for obvious reasons)
I disagree, 64bit mode did not have to have any kind of instruction compatibility. It could have been a completely new instruction encoding scheme. A 64bit process must run all 64bit code, there is no invoking 32bit code from a 64bit process on any modern OS for AMD64.