<div dir="auto"><div><div class="gmail_quote"><div dir="ltr">J. Gareth Moreton <<a href="mailto:gareth@moreton-family.com">gareth@moreton-family.com</a>> schrieb am Mo., 28. Mai 2018, 02:55:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">In this case, the ".balign" hint adds 2 bytes to pad the loop.  However, my question is this... why does it immediately jump to the end of the loop to check the condition (which is very likely to be true on the first iteration), only to jump to the beginning again? Granted, in this case the condition is relatively simple, but why not simply check the condition where the "jmp" instruction is, and jumping to the line after the "jl" instruction if it's false? For example:<br>
<br>
    xorl    %r10d,%r10d // <-- The line that appears before "jmp .Lj6"<br>
    movl    $1,%r11d    // <-- Optimised from "movl %r10d,%eax", "leaq 1(%rax),%r11", since %r10d, and hence %rax, are known to be zero<br>
    movl    %edx,%eax<br>
    cmpq    %rax,%r11<br>
    jge  .Lj7 // <-- Or whatever label is given for a position right after "jl .Lj5"<br>
    .balign 8,0x90<br>
.Lj5:<br>
    ...<br>
    <br>
In this case, no jumps occur upon entering the while loop when the condition is true.<br>
<br>
(Ignore the fact that there could be a lot of other potential optimizations if the constant switching between 32-bit and 64-bit registers can be sorted)<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">The following is only guess work of mine: I think that the idea is to avoid a jump back once the condition is false. Also it might be too keep the difference between "while ... do ..." and "repeat ... until ..." minimal (namely only that initial jump). </div><div dir="auto"><br></div><div dir="auto">Speaking of which: if you assume that the list isn't empty and thus the loop is entered at least once why don't you use a repeat-loop instead of a while-loop? </div><div dir="auto"><br></div><div dir="auto">Regards, </div><div dir="auto">Sven </div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote></div></div></div>