Simon Tatham
Simon Tatham
Yes, I noticed this last week as well. It's frustrating to have to fix it this way, because you'd _like_ the images to adapt to light vs dark mode in...
Good catch! I agree that the text "that is, argc and argv" is confusing and misleading. The intention, and every implementation I've seen, is that `SYS_GET_CMDLINE` returns a single long...
POSIX doesn't have any definition of a single-string command line _at all_. In POSIX, the command line is communicated across each `exec` system call as a list of separate NUL-terminated...
Thinking about it a bit more, it sounds as if what you're really after is a specification of the _convention_ used for breaking up the `SYS_GET_CMDLINE` string into `argv`? If...
Thanks. I've created #271 with some proposed wording.
#271 is merged, so this issue can be closed too. The thing I wanted clarified is now clear.
>Just thinking that someone is bound to (ab)use this in assembly I was already trying to imagine what else you could use this kind of feature for! A use case...
Nice thought! I think you're absolutely right: you can make ADRP+ADD consistently generate up to a 19-bit signed offset even though the ADD immediate can only hold 12 bits of...
Oops! The ADRP immediate is 21 bits, not 19. Almost didn't notice that the encoding has two more immediate bits near the top of the word.