Arm Community
Arm Community
  • Site
  • User
  • Site
  • Search
  • User
Arm Community blogs
Arm Community blogs
Architectures and Processors blog Condition Codes 3: Conditional Execution in Thumb-2
  • Blogs
  • Mentions
  • Sub-Groups
  • Tags
  • Jump...
  • Cancel
More blogs in Arm Community blogs
  • AI blog

  • Announcements

  • Architectures and Processors blog

  • Automotive blog

  • Embedded and Microcontrollers blog

  • Internet of Things (IoT) blog

  • Laptops and Desktops blog

  • Mobile, Graphics, and Gaming blog

  • Operating Systems blog

  • Servers and Cloud Computing blog

  • SoC Design and Simulation blog

  • Tools, Software and IDEs blog

Tell us what you think
Tags
  • Assembly
  • Armv8-A
  • Thumb
  • Thumb2
  • Tutorial
Actions
  • RSS
  • More
  • Cancel
Related blog posts
Related forum threads

Condition Codes 3: Conditional Execution in Thumb-2

Jacob Bramley
Jacob Bramley
September 11, 2013
6 minute read time.
This post is part of a series:
  • Condition Codes 1: Condition Flags and Codes
  • Condition Codes 2: Conditional Execution
  • Condition Codes 3: Conditional Execution in Thumb-2
  • Condition Codes 4: Floating-Point Comparison Using VFP

Note: Armv8 deprecates the use of the it instruction to make anything other than a single 16-bit instruction conditional. This affects many of the examples in this post. Refer to the Armv8-A Architecture Reference Manual for details.

Thumb-2 can make use of the same conditional execution features that the Arm instruction set provides. For conditionally executing one or two instructions, this mechanism can provide code-size and performance benefits over the (more conventional) conditional branching mechanism.

I noted at the end of the last post in this series that this mechanism is not directly available to Thumb. Instead, Thumb-2 has an instruction — it — which can provide the same functionality as Arm conditional execution. In this article, I will describe the it instruction, and I will also explain a few caveats of condition-setting instructions in Thumb-2. Note that the it instruction is only available to Thumb-2, and so most of this article will not be relevant to the old Thumb instruction set 1.

The it Instruction

With the exception of simple conditional branches, Thumb-2 instructions do not have the 4-bit condition code field that most Arm instruction have. Instead, Thumb-2 has the it instruction, which conditionally executes up to four subsequent instructions. The instructions affected by an it instruction are said to be in an it block.

The mnemonic it represents an if-then construct. If the condition code (given as an argument to the instruction) evaluates to true, then the next instruction is executed. Up to three additional t (then) or e (else) codes can be added to control the execution of the subsequent instructions. For example, read ite as if-then-else, and ittee as if-then-then-else- else. The following code either increments r0, or resets it to 0 if it is greater than or equal to 10:

.syntax unified   @ Remember this!
.thumb
[...]
cmp     r0, #10
ite     lo        @ if r0 is lower than 10 ...
addlo   r0, #1    @ ... then r0 = r0 + 1
movhs   r0, #0    @ ... else r0 = 0


Note that the conditionally-executed instructions inside the it block must still be given condition codes, as they would in Arm assembly. Assemblers will check that the condition you gave to it is consistent with those on the individual instructions. The then conditions must match the condition code, and any else conditions must be the opposite condition. In the example, the else condition was hs (higher or same) — the opposite of lo (lower). The table below shows the condition codes and their opposites:

Condition Code Opposite
Code Description Code Description
eq Equal. ne Not equal.
hs (or cs) Unsigned higher or same (or carry set). lo (or cc) Unsigned lower (or carry clear).
mi Negative. pl Positive or zero.
vs Signed overflow. vc No signed overflow.
hi Unsigned higher. ls Unsigned lower or same.
ge Signed greater than or equal. lt Signed less than.
gt Signed greater than. le Signed less than or equal.
al (or omitted) Always executed. There is no opposite to al.

Whilst it is valid to give condition code al to the it, it has no opposite as there is no never code. It is not valid to specify the al condition code in an it instruction that uses an else clause.

Branches

Just like other instructions, Thumb-2's branches can be conditionally executed using it. Indeed, some branches cannot be conditionally executed without using an it block. However, any branches that exist in an it block must be the last instruction in the block. The following, for example, is unpredictable:

ite     eq
blxeq   some_label  @ UNPREDICTABLE during an IT block.
movne   r0, #0

The correct way to implement the above would be to put the mov before the blx, as follows:

ite     ne
movne   r0, #0
blxeq   some_label  @ Ok at the end of an IT block.

Compatibility with Arm Assembly

The it instruction is valid in Arm assembly, though it will not generate any code. This is done for compatibility with Thumb-2 assembly, and allows most assembly sequences to be assembled for both Arm and Thumb-2.

Simple Conditional Branches

Just like Arm code, a simple Thumb b instruction can be made conditional by adding a suitable condition code suffix. Indeed, the if/else example provided in my last post will assemble for Thumb just as it will for Arm.

Interesting Optimization Possibilities

Condition Code al

16-bit forms of Thumb arithmetic instructions usually set the condition flags. When inside an it block, however, the 16-bit forms do not set the flags. This property can be useful in combination with condition code al. Consider the following code sequence:

                        @ Instruction Size
add     r0, r0, #1      @   4 bytes
add     r1, r1, #1      @   4 bytes
add     r2, r2, #1      @   4 bytes
add     r3, r3, #1      @   4 bytes
                  @ Total: 16 bytes

Writing an equivalent code sequence using an it block can result in smaller code size:

                        @ Instruction Size
itttt   al              @   2 bytes
addal   r0, r0, #1      @   2 bytes
addal   r1, r1, #1      @   2 bytes
addal   r2, r2, #1      @   2 bytes
addal   r3, r3, #1      @   2 bytes
                  @ Total: 10 bytes

It should be noted that the 16-bit forms have additional limitations, so the it trick used above may not always be applicable. The restrictions vary between each instruction, but typically the 16-bit instruction forms can typically only access r0-r7 and have a very restricted range of immediate constants. For details, refer to the Architecture Reference Manual.

Flag Setting

Because (outside of it blocks) most arithmetic instruction that set the flags have 16-bit forms, code size can be dramatically improved by setting the flags even when not necessary. This will provide the best (smallest) code size possible. However, depending on your target processor, this technique may have a small negative performance impact. It is perhaps advisable to use the al condition trick or 32-bit instructions in performance-critical code.

You can force the assembler to produce 16-bit instructions by adding a .n suffix. Assemblers will do this anyway, but if your instruction cannot be encoded using a 16-bit form and you specify .n, the assembler will give an error message.

[...]                   @ Not in an IT block.
adds.n  r1, r2, r3      @ Generates a 16-bit instruction.
add.n   r1, r2, r3      @ Error: No 16-bit form for this.

Refer to the Architecture Reference Manual for details of each instruction, and information about the constraints of the 16-bit forms. There are many exceptions and special cases so I won't describe them here in detail.

Read next blog in series


1Thumb-2 is available on the Armv6T2 architecture and above (including Armv7-A). Processors based on these architecture versions include Arm1156 and all of the Cortex series, but not older processors or the others in the Arm11 series.

Anonymous
Architectures and Processors blog
  • Introducing GICv5: Scalable and secure interrupt management for Arm

    Christoffer Dall
    Christoffer Dall
    Introducing Arm GICv5: a scalable, hypervisor-free interrupt controller for modern multi-core systems with improved virtualization and real-time support.
    • April 28, 2025
  • Getting started with AARCHMRS Features.json using Python

    Joh
    Joh
    A high-level introduction to the Arm Architecture Machine Readable Specification (AARCHMRS) Features.json with some examples to interpret and start to work with the available data using Python.
    • April 8, 2025
  • Advancing server manageability on Arm Neoverse Compute Subsystem (CSS) with OpenBMC

    Samer El-Haj-Mahmoud
    Samer El-Haj-Mahmoud
    Arm and 9elements Cyber Security have brought a prototype of OpenBMC to the Arm Neoverse Compute Subsystem (CSS) to advancing server manageability.
    • January 28, 2025