Control structures

ARM assembler in Raspberry Pi – Chapter 6

Control structures

In the previous chapter we learnt branch instructions. They are really powerful tools because they allow us to express control structures. Structured programming is an important milestone in better computing engineering (a foundational one, but nonetheless an important one). So being able to map usual structured programming constructs in assembler, in our processor, is a Good Thing™.

If, then, else

Well, this one is a basic one, and in fact we already used this structure in the previous chapter. Consider the following structure, where E is an expression and S1 and S2 are statements (they may be compound statements like { SA; SB; SC; })

if (E) then
   S1
else
   S2

A possible way to express this in ARM assembler could be the following

if_eval: 
    /* Assembler that evaluates E and updates the cpsr accordingly */
bXX else /* Here XX is the appropiate condition */
then_part: 
   /* assembler for S1, the "then" part */
   b end_of_if
else:
   /* assembler for S2, the "else" part */
end_of_if:

If there is no else part, we can replace bXX else with bXX end_of_if.

Loops

This is another usual one in structured programming. While there are several types of loops, actually all reduce to the following structure.

while (E)
  S

Supposedly S makes something so E eventually becomes false and the loop is left. Otherwise we would stay in the loop forever (sometimes this is what you want but not in our examples). A way to implement these loops is as follows.

while_condition : /* assembler to evaluate E and update cpsr */
  bXX end_of_loop  /* If E is false, then leave the loop right now */
  /* assembler of S */
  b while_condition /* Unconditional branch to the beginning */
end_of_loop:

A common loop involves iterating from a single range of integers, like in

for (i = L; i < N; i += K)
  S

But this is nothing but

  i = L;
  while (i < N)
  {
     S;
     i += K;
  }

So we do not have to learn a new way to implement the loop itself.

1 + 2 + 3 + 4 + … + 22

As a first example lets sum all the numbers from 1 to 22 (I’ll tell you later why I chose 22). The result of the sum is 253 (check it with a calculator). I know it makes little sense to compute something the result of which we know already, but this is just an example.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* -- loop01.s */
.text
.global main
main:
    mov r1, #0       /* r1 ← 0 */
    mov r2, #1       /* r2 ← 1 */
loop: 
    cmp r2, #22      /* compare r2 and 22 */
    bgt end          /* branch if r2 > 22 to end */
    add r1, r1, r2   /* r1 ← r1 + r2 */
    add r2, r2, #1   /* r2 ← r2 + 1 */
    b loop
end:
    mov r0, r1       /* r0 ← r1 */
    bx lr

Here we are counting from 1 to 22. We will use the register r2 as the counter. As you can see in line 6 we initialize it to 1. The sum will be accumulated in the register r1, at the end of the program we move the contents of r1 into r0 to return the result of the sum as the error code of the program (we could have used r0 in all the code and avoid this final mov but I think it is clearer this way).

In line 8 we compare r2 (remember, the counter that will go from 1 to 22) to 22. This will update the cpsr thus in line 9 we can check if the comparison was such that r2 was greater than 22. If this is the case, we end the loop by branching to end. Otherwise we add the current value of r2 to the current value of r1 (remember, in r1 we accumulate the sum from 1 to 22).

Line 11 is an important one. We increase the value of r2, because we are counting from 1 to 22 and we already added the current counter value in r2 to the result of the sum in r1. Then at line 12 we branch back at the beginning of the loop. Note that if line 11 was not there we would hang as the comparison in line 8 would always be false and we would never leave the loop in line 9!

$ ./loop01; echo $?
253

Well, now you could change the line 8 and try with let’s say, #100. The result should be 5050.

$ ./loop01; echo $?
186

What happened? Well, it happens that in Linux the error code of a program is a number from 0 to 255 (8 bits). If the result is 5050, only the lower 8 bits of the number are used. 5050 in binary is 1001110111010, its lower 8 bits are 10111010 which is exactly 186. How can we check the computed r1 is 5050 before ending the program? Let’s use GDB.

$ gdb loop
...
(gdb) start
Temporary breakpoint 1 at 0x8390
Starting program: /home/roger/asm/chapter06/loop01 
 
Temporary breakpoint 1, 0x00008390 in main ()
(gdb) disas main,+(9*4)
Dump of assembler code from 0x8390 to 0x83b4:
   0x00008390 <main+0>:	mov	r1, #0
   0x00008394 <main+4>:	mov	r2, #1
   0x00008398 <loop+0>:	cmp	r2, #100	; 0x64
   0x0000839c <loop+4>:	bgt	0x83ac <end>
   0x000083a0 <loop+8>:	add	r1, r1, r2
   0x000083a4 <loop+12>:	add	r2, r2, #1
   0x000083a8 <loop+16>:	b	0x8398 <loop>
   0x000083ac <end+0>:	mov	r0, r1
   0x000083b0 <end+4>:	bx	lr
End of assembler dump.

Temporary breakpoint 1, 0x00008390 in main () (gdb) disas main,+(9*4) Dump of assembler code from 0x8390 to 0x83b4: 0x00008390 <main+0>: mov r1, #0 0x00008394 <main+4>: mov r2, #1 0x00008398 <loop+0>: cmp r2, #100 ; 0x64 0x0000839c <loop+4>: bgt 0x83ac <end> 0x000083a0 <loop+8>: add r1, r1, r2 0x000083a4 <loop+12>: add r2, r2, #1 0x000083a8 <loop+16>: b 0x8398 <loop> 0x000083ac <end+0>: mov r0, r1 0x000083b0 <end+4>: bx lr End of assembler dump.

Let’s tell gdb to stop at 0x000083ac, right before executing mov r0, r1.

(gdb) break *0x000083ac
(gdb) cont
Continuing.
 
Breakpoint 2, 0x000083ac in end ()
(gdb) disas
Dump of assembler code for function end:
=> 0x000083ac <+0>:	mov	r0, r1
   0x000083b0 <+4>:	bx	lr
End of assembler dump.
(gdb) info register r1
r1             0x13ba	5050

Breakpoint 2, 0x000083ac in end () (gdb) disas Dump of assembler code for function end: => 0x000083ac <+0>: mov r0, r1 0x000083b0 <+4>: bx lr End of assembler dump. (gdb) info register r1 r1 0x13ba 5050

Great, this is what we expected but we could not see due to limits in the error code.

Maybe you have noticed that something odd happens with our labels being identified as functions. We will address this issue in a future chapter, this is mostly harmless though.

3n + 1

Let’s make another example a bit more complicated. This is the famous 3n + 1 problem also known as the Collatz conjecture. Given a number n we will divide it by 2 if it is even and multiply it by 3 and add one if it is odd.

if (n % 2 == 0)
  n = n / 2;
else
  n = 3*n + 1;

Before continuing, our ARM processor is able to multiply two numbers but we should learn a new instruction mul which would detour us a bit. Instead we will use the following identity 3 * n = 2*n + n. We do not really know how to multiply or divide by two yet, we will study this in a future chapter, so for now just assume it works as shown in the assembler below.

Collatz conjecture states that, for any number n, repeatedly applying this procedure will eventually give us the number 1. Theoretically it could happen that this is not the case. So far, no such number has been found, but it has not been proved otherwise. If we want to repeatedly apply the previous procedure, our program is doing something like this.

n = ...;
while (n != 1)
{
  if (n % 2 == 0)
     n = n / 2;
  else
     n = 3*n + 1;
}

If the Collatz conjecture were false, there would exist some n for which the code above would hang, never reaching 1. But as I said, no such number has been found.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* -- collatz.s */
.text
.global main
main:
    mov r1, #123           /* r1 ← 123 */
    mov r2, #0             /* r2 ← 0 */
loop:
    cmp r1, #1             /* compare r1 and 1 */
    beq end                /* branch to end if r1 == 1 */
 
    and r3, r1, #1         /* r3 ← r1 & 1 */
    cmp r3, #0             /* compare r3 and 0 */
    bne odd                /* branch to odd if r3 != 0 */
even:
    mov r1, r1, ASR #1     /* r1 ← (r1 >> 1) */
    b end_loop
odd:
    add r1, r1, r1, LSL #1 /* r1 ← r1 + (r1 << 1) */
    add r1, r1, #1         /* r1 ← r1 + 1 */
 
end_loop:
    add r2, r2, #1         /* r2 ← r2 + 1 */
    b loop                 /* branch to loop */
 
end:
    mov r0, r2
    bx lr
and r3, r1, #1         /* r3 ← r1 &amp; 1 */
cmp r3, #0             /* compare r3 and 0 */
bne odd                /* branch to odd if r3 != 0 */

even: mov r1, r1, ASR #1 /* r1 ← (r1 >> 1) / b end_loop odd: add r1, r1, r1, LSL #1 / r1 ← r1 + (r1 << 1) / add r1, r1, #1 / r1 ← r1 + 1 */

end_loop: add r2, r2, #1 /* r2 ← r2 + 1 / b loop / branch to loop */

end: mov r0, r2 bx lr

In r1 we will keep the number n. In this case we will use the number 123. 123 reaches 1 in 46 steps: [123, 370, 185, 556, 278, 139, 418, 209, 628, 314, 157, 472, 236, 118, 59, 178, 89, 268, 134, 67, 202, 101, 304, 152, 76, 38, 19, 58, 29, 88, 44, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1]. We will count the number of steps in register r2. So we initialize r1 with 123 and r2 with 0 (no step has been performed yet).

At the beginning of the loop, in lines 8 and 9, we check if r1 is 1. So we compare it with 1 and if it is equal we leave the loop branching to end.

Now we know that r1 is not 1, so we proceed to check if it is even or odd. To do this we use a new instruction and which performs a bitwise and operation. An even number will have the least significant bit (LSB) to 0, while an odd number will have the LSB to 1. So a bitwise and using 1 will return 0 or 1 on even or odd numbers, respectively. In line 11 we keep the result of the bitwise and in r3 register and then, in line 12, we compare it against 0. If it is not zero then we branch to odd, otherwise we continue on the even case.

Now some magic happens in line 15. This is a combined operation that ARM allows us to do. This is a mov but we do not move the value of r1 directly to r1 (which would be doing nothing) but first we do an arithmetic shift right (ASR) to the value of r1 (to the value, no the register itself). Then this shifted value is moved to the register r1. An arithmetic shift right shifts all the bits of a register to the right: the rightmost bit is effectively discarded and the leftmost is set to the same value as the leftmost bit prior the shift. Shifting right one bit to a number is the same as dividing that number by 2. So this mov r1, r1, ASR #1 is actually doing r1 ← r1 / 2.

Some similar magic happens for the even case in line 18. In this case we are doing an add. The first and second operands must be registers (destination operand and the first source operand). The third is combined with a logical shift left (LSL). The value of the operand is shifted left 1 bit: the leftmost bit is discarded and the rightmost bit is set to 0. This is effectively multiplying the value by 2. So we are adding r1 (which keeps the value of n) to 2*r1. This is 3*r1, so 3*n. We keep this value in r1 again. In line 19 we add 1 to that value, so r1 ends having the value 3*n+1 that we wanted.

Do not worry very much now about these LSL and ASR. Just take them for granted now. In a future chapter we will see them in more detail.

Finally, at the end of the loop, in line 22 we update r2 (remember it keeps the counter of our steps) and then we branch back to the beginning of the loop. Before ending the program we move the counter to r0 so we return the number of steps we did to reach 1.

$ ./collatz; echo $?
46

Great.

That’s all for today.

Postscript

Kevin Millikin rightly pointed (in a comment below) that usually a loop is not implemented in the way shown above. In fact Kevin says that a better way to do the loop of loop01.s is as follows.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -- loop02.s */
.text
.global main
main:
    mov r1, #0       /* r1 ← 0 */
    mov r2, #1       /* r2 ← 1 */
    b check_loop     /* unconditionally jump at the end of the loop */
loop: 
    add r1, r1, r2   /* r1 ← r1 + r2 */
    add r2, r2, #1   /* r2 ← r2 + 1 */
check_loop:
    cmp r2, #22      /* compare r2 and 22 */
    ble loop         /* branch if r2 <= 22 to the beginning of the loop */
end:
    mov r0, r1       /* r0 ← r1 */
    bx lr

If you count the number of instruction in the two codes, there are 9 instructions in both. But if you look carefully in Kevin’s proposal you will see that by unconditionally branching to the end of the loop, and reversing the condition check, we can skip one branch thus reducing the number of instructions of the loop itself from 5 to 4.

There is another advantage in this second version, though: there is only one branch in the loop itself as we resort to implicit sequencing to reach again the two instructions performing the check. For reasons beyond the scope of this post, the execution of a branch instruction may negatively affect the performance of our programs. Processors have mechanisms to mitigate the performance loss due to branches (and in fact the processor in the Raspberry Pi does have them). But avoiding a branch instruction entirely avoids the potential performance penalization of executing a branch instruction.

While we do not care very much now about the performance of our assembler. However, I thought it was worth developing a bit more Kevin’s comment.

Share on Facebook Share on Google+ Tweet about this on Twitter Share on LinkedIn

, , , ,

		<h3>10 thoughts on “<span>ARM assembler in Raspberry Pi – Chapter 6</span>”</h3>
	<ul class="commentlist">
			<li class="comment even thread-even depth-1 parent" id="comment-756">
			<div id="div-comment-756" class="comment-body">
			<div class="comment-author vcard">
		<img alt="" src="http://2.gravatar.com/avatar/21e06f14b53b5c0239c2df5f857f0cb0?s=54&amp;d=mm&amp;r=g" srcset="http://2.gravatar.com/avatar/21e06f14b53b5c0239c2df5f857f0cb0?s=64&amp;d=mm&amp;r=g 2x" class="avatar avatar-32 photo grav-hashed grav-hijack" height="32" width="32" originals="32" src-orig="http://2.gravatar.com/avatar/21e06f14b53b5c0239c2df5f857f0cb0?s=32&amp;d=mm&amp;r=g" scale="1.5" id="grav-21e06f14b53b5c0239c2df5f857f0cb0-0">			<cite class="fn">Kevin Millikin</cite> <span class="says">says:</span>		</div>
	
	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-756">
		January 21, 2013 at 3:38 am</a>		</div>

	<p>Thanks for writing this.  It’s been fun reading so far.</p>

In practice one would normally test at the bottom of a while loop. In your loop01.s there are two tests in the loop on each iteration — a forward conditional branch (not taken) and a backward unconditional branch.

Instead compile the test at the bottom, invert the branch condition, and enter the loop with an unconditional branch to the test. Each iteration of the loop has a backward conditional branch (taken).

	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=756#respond" onclick="return addComment.moveForm( &quot;div-comment-756&quot;, &quot;756&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to Kevin Millikin">Reply</a></div>
			</div>
	<ul class="children">
	<li class="comment byuser comment-author-rferrer bypostauthor odd alt depth-2" id="comment-767">
			<div id="div-comment-767" class="comment-body">
			<div class="comment-author vcard">
		<img alt="" src="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=54&amp;d=mm&amp;r=g" srcset="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=64&amp;d=mm&amp;r=g 2x" class="avatar avatar-32 photo grav-hashed grav-hijack" height="32" width="32" originals="32" src-orig="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=32&amp;d=mm&amp;r=g" scale="1.5" id="grav-a779b8290b1ca104fdf84d8016fd010b-0">			<cite class="fn">rferrer</cite> <span class="says">says:</span>		</div>
	
	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-767">
		January 21, 2013 at 10:13 pm</a>		</div>

	<p>Hi Kevin.</p>

Thank you very much for your very proper comment about loops. I found it very interesting so I developed it a bit more at the end of the post.

Kind regards.

	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=767#respond" onclick="return addComment.moveForm( &quot;div-comment-767&quot;, &quot;767&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to rferrer">Reply</a></div>
			</div>
	</li><!-- #comment-## -->
  • Mark says:
    	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-803">
    		January 26, 2013 at 5:50 pm</a>		</div>
    
    	<p>Hi,</p>
    

    Nice set of articles. I first did ARM assembler back in 1987 !
    It’s usually better to count backwards in loops and use the free zero condition flag setting when you get to the end:
    .text
    .global main
    main:
    mov r1,#0
    mov r2,#22
    loop:
    add r1,r1,r2
    subs r2,r2,#1
    bne loop
    end:
    mov r0,r1
    bx lr

    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=803#respond" onclick="return addComment.moveForm( &quot;div-comment-803&quot;, &quot;803&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to Mark">Reply</a></div>
    			</div>
    	<ul class="children">
    	<li class="comment byuser comment-author-rferrer bypostauthor odd alt depth-2 parent" id="comment-804">
    			<div id="div-comment-804" class="comment-body">
    			<div class="comment-author vcard">
    		<img alt="" src="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=54&amp;d=mm&amp;r=g" srcset="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=64&amp;d=mm&amp;r=g 2x" class="avatar avatar-32 photo grav-hashed grav-hijack" height="32" width="32" originals="32" src-orig="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=32&amp;d=mm&amp;r=g" scale="1.5" id="grav-a779b8290b1ca104fdf84d8016fd010b-1">			<cite class="fn">rferrer</cite> <span class="says">says:</span>		</div>
    	
    	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-804">
    		January 26, 2013 at 6:03 pm</a>		</div>
    
    	<p>Hi Mark, thanks for your comment!</p>
    

    You are entirely right but since I have not explained the suffix S of instructions I could not use your approach.

    I’ll explain this in a later chapter. I am going rather slow, introducing just a little bit in each chapter.

    Kind regards,

    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=804#respond" onclick="return addComment.moveForm( &quot;div-comment-804&quot;, &quot;804&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to rferrer">Reply</a></div>
    			</div>
    	<ul class="children">
    	<li class="comment even depth-3" id="comment-823">
    			<div id="div-comment-823" class="comment-body">
    			<div class="comment-author vcard">
    		<img alt="" src="http://2.gravatar.com/avatar/583277e7960a8516fec6fdf00545bc2b?s=54&amp;d=mm&amp;r=g" srcset="http://2.gravatar.com/avatar/583277e7960a8516fec6fdf00545bc2b?s=64&amp;d=mm&amp;r=g 2x" class="avatar avatar-32 photo grav-hashed grav-hijack" height="32" width="32" originals="32" src-orig="http://2.gravatar.com/avatar/583277e7960a8516fec6fdf00545bc2b?s=32&amp;d=mm&amp;r=g" scale="1.5" id="grav-583277e7960a8516fec6fdf00545bc2b-0">			<cite class="fn">Mark</cite> <span class="says">says:</span>		</div>
    	
    	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-823">
    		January 28, 2013 at 8:22 pm</a>		</div>
    
    	<p>Yes, good point.</p>
    
    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=823#respond" onclick="return addComment.moveForm( &quot;div-comment-823&quot;, &quot;823&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to Mark">Reply</a></div>
    			</div>
    	</li><!-- #comment-## -->
    
  • 	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-1432">
    		June 29, 2013 at 3:16 am</a>		</div>
    
    	<p>nice but very nice code … I learn much …</p>
    
    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=1432#respond" onclick="return addComment.moveForm( &quot;div-comment-1432&quot;, &quot;1432&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to Mariani Antonio Mario">Reply</a></div>
    			</div>
    	</li><!-- #comment-## -->
    	<li class="comment even thread-odd thread-alt depth-1 parent" id="comment-1754">
    			<div id="div-comment-1754" class="comment-body">
    			<div class="comment-author vcard">
    		<img alt="" src="http://1.gravatar.com/avatar/445c0c582daf37aab5ae8716f751374e?s=54&amp;d=mm&amp;r=g" srcset="http://1.gravatar.com/avatar/445c0c582daf37aab5ae8716f751374e?s=64&amp;d=mm&amp;r=g 2x" class="avatar avatar-32 photo grav-hashed grav-hijack" height="32" width="32" id="grav-445c0c582daf37aab5ae8716f751374e-0" originals="32" src-orig="http://1.gravatar.com/avatar/445c0c582daf37aab5ae8716f751374e?s=32&amp;d=mm&amp;r=g" scale="1.5">			<cite class="fn">Bug Killer</cite> <span class="says">says:</span>		</div>
    	
    	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-1754">
    		October 13, 2013 at 1:05 am</a>		</div>
    
    	<p>There’s a typo:</p>
    

    add r1, r1, r2 /* r1 ← r1 + r1 */

    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=1754#respond" onclick="return addComment.moveForm( &quot;div-comment-1754&quot;, &quot;1754&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to Bug Killer">Reply</a></div>
    			</div>
    	<ul class="children">
    	<li class="comment byuser comment-author-rferrer bypostauthor odd alt depth-2" id="comment-1757">
    			<div id="div-comment-1757" class="comment-body">
    			<div class="comment-author vcard">
    		<img alt="" src="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=54&amp;d=mm&amp;r=g" srcset="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=64&amp;d=mm&amp;r=g 2x" class="avatar avatar-32 photo grav-hashed grav-hijack" height="32" width="32" originals="32" src-orig="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=32&amp;d=mm&amp;r=g" scale="1.5" id="grav-a779b8290b1ca104fdf84d8016fd010b-2">			<cite class="fn">rferrer</cite> <span class="says">says:</span>		</div>
    	
    	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-1757">
    		October 13, 2013 at 2:07 pm</a>		</div>
    
    	<p>Fixed, thanks!</p>
    
    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=1757#respond" onclick="return addComment.moveForm( &quot;div-comment-1757&quot;, &quot;1757&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to rferrer">Reply</a></div>
    			</div>
    	</li><!-- #comment-## -->
    
  • Cecil Ward says:
    	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-968714">
    		May 31, 2016 at 1:44 am</a>		</div>
    
    	<p>in your original loop01, isn’t there a _signed_ comparison branch, bgt? I would suggest it’s worth warning against the use of signed instructions because of the risk of integer overflow with sufficiently high values unless you really need signed arithmetic, so the advice is to stick to unsigned versions always unless you need to do otherwise and the range of values is safe.</p>
    
    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=968714#respond" onclick="return addComment.moveForm( &quot;div-comment-968714&quot;, &quot;968714&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to Cecil Ward">Reply</a></div>
    			</div>
    	<ul class="children">
    	<li class="comment byuser comment-author-rferrer bypostauthor odd alt depth-2" id="comment-969151">
    			<div id="div-comment-969151" class="comment-body">
    			<div class="comment-author vcard">
    		<img alt="" src="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=54&amp;d=mm&amp;r=g" srcset="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=64&amp;d=mm&amp;r=g 2x" class="avatar avatar-32 photo grav-hashed grav-hijack" height="32" width="32" originals="32" src-orig="http://1.gravatar.com/avatar/a779b8290b1ca104fdf84d8016fd010b?s=32&amp;d=mm&amp;r=g" scale="1.5" id="grav-a779b8290b1ca104fdf84d8016fd010b-3">			<cite class="fn">Roger Ferrer Ibáñez</cite> <span class="says">says:</span>		</div>
    	
    	<div class="comment-meta commentmetadata"><a href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#comment-969151">
    		June 4, 2016 at 7:46 pm</a>		</div>
    
    	<p>Hi Cecil,</p>
    

    yes unsigned integers have larger ranges, but overflow may happen also when working with them. Since most of the examples in the chapters use signed integers it makes sense to me to use bgt (rather than bhi)

    Kind regards,

    	<div class="reply"><a rel="nofollow" class="comment-reply-link" href="http://thinkingeek.com/2013/01/20/arm-assembler-raspberry-pi-chapter-6/?replytocom=969151#respond" onclick="return addComment.moveForm( &quot;div-comment-969151&quot;, &quot;969151&quot;, &quot;respond&quot;, &quot;479&quot; )" aria-label="Reply to Roger Ferrer Ibáñez">Reply</a></div>
    			</div>
    	</li><!-- #comment-## -->
    
  • <p></p>
    	<div id="respond" class="comment-respond">
    	<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2013/01/20/arm-assembler-raspberry-pi-chapter-6/#respond" style="display:none;">Cancel reply</a></small></h3>			<form action="http://thinkingeek.com/wp-comments-post.php" method="post" id="commentform" class="comment-form">
    			<p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> Required fields are marked <span class="required">*</span></p><p class="comment-form-comment"><label for="comment">Comment</label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" aria-required="true" required="required"></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" aria-required="true" required="required"></p>
    


    书籍推荐