Y
Hacker News
new
|
ask
|
show
|
jobs
by
rtoway
1883 days ago
Isn't x86 assembly not directly executed by the CPU? IIRC it's turned into microcode instructions. I could be wrong though
3 comments
umanwizard
1883 days ago
It’s turned into uops... by the CPU.
(And most instructions correspond to 1 or a few uops in a straightforward way).
link
tux3
1883 days ago
The ASM (text) that you write is converted into machine code, and that is directly accepted and decoded by the hardware (which may turn it into Mops and uops internally, but that's an implementation detail!)
link
zeckalpha
1883 days ago
Yes
link
(And most instructions correspond to 1 or a few uops in a straightforward way).