Well, basically my idea would be best for application programming, and not OS, or even low level system programming..
but anyway..
ok so to code for optimizations on some archs, you use 100s of registers, so on those few archs that do support, it will be fast...but what do you do when the target arch only has 16?
My idea is to use memory in order to store missing registers..
the problem I have is bits(16,32,64) and endianess..I'm sure you could hardcode it somehow to fix that, but I'm not completely for sure on how to do that..
lets put endians aside..now bits:
lets say you wanted to program on 32bit for the generic assembly, but wanted to compile to use a 16bit arch. For example sake, we'll use 8086
Code: Select all
;generic
mov dword r0,0xFFFF FFFF ;spacing just there for readability..
Code: Select all
;actual produced
mov ax,0xFFFF
mov bx,0xFFFF
now where it gets more complicated is with arithmetic and conditioning..
Code: Select all
;generic
mov dword r0,0xFFFF FFFE
add dword r0,1
see..I can't figure out a quick fast, easy way to do that..
for my example compiler thing, I will only compile tokenized generic code to actual asm code..I don't want to mess with parsing all the crap...