Philipp Marek wrote: > I'd like to (manually) define some byte blocks, eg. as functions with > an identifier. Then, if GCC would emit exactly these bytes, it > puts a JMP identifier there instead.
One achitectural problem here is that GCC doesn't emit bytes. It emits ASCII text, in the form of assembly instructions, and it's not always easy to predict how they'll look by the time they've been through the assembler and then had relocs applied by the linker. (Indeed, to know what particular bytes you'd end up with you'd need to do everything the assembler and linker does, which is why we have an assembler and linker - the stuff GCC emits isn't directly executable...) Shouldn't this be done in the linker instead? cheers, DaveK -- Can't think of a witty .sigline today....