I understand when to use a cobbler list (e.g. listing a register which is modified in the assembly so that it doesn\'t get chosen for use as an input register, etc), but I c
By default, the compiler assumes all inputs will be consumed before any output registers are written to, so that it's allowed to use the same registers for both. This leads to better code when possible, but if the assumption is wrong, things will fail catastrophically. The "early clobber" marker is a way to tell the compiler that this output will be written before all the input has been consumed, so it cannot share a register with any input.