Skip to content

Commit

Permalink
JIT/x86 - add comment with more alignment byte sequences
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@11684 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
Leopold Toetsch committed Feb 20, 2006
1 parent 3f66b60 commit 1b376d0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/jit/i386/jit_emit.h
Expand Up @@ -3083,6 +3083,12 @@ jit_set_args_pc(Parrot_jit_info_t *jit_info, Interp * interpreter,
* s. also info gcc /align-jump
*
* noop; mov %esi, %esi; lea 0(%esi), %esi
* TODO
* 7 bytes: 8d b4 26 00 00 00 00 lea 0x0(%esi),%esi
* 6 bytes: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
* 5 bytes: 90 8d 74 26 00 nop, lea 0x0(%esi),%esi
* 4 bytes: 8d 74 26 00 lea 0x0(%esi),%esi
*
*/

# define jit_emit_noop(pc) do { \
Expand Down

0 comments on commit 1b376d0

Please sign in to comment.