What does it mean 'IT can be omitted'?

Hi,

When I read the following on ARM website, I don't understand the first line. When I change ITTE to TE (as 'IT can be omitted"), the assembler complains an error of this line.

Could you explain it to me?

Thanks,

  ITTE NE ; IT can be omitted

  ANDNE r0,r0,r1 ; 16-bit AND, not ANDS

  ADDSNE r2,r2,#1 ; 32-bit ADDS (16-bit ADDS does not set flags in IT block)

  MOVEQ r2,r3 ; 16-bit MOV

  ITT AL ; emit 2 non-flag setting 16-bit instructions

  ADDAL r0,r0,r1 ; 16-bit ADD, not ADDS

  SUBAL r2,r2,#1 ; 16-bit SUB, not SUB

  ADD r0,r0,r1 ; expands into 32-bit ADD

  IT NE

  ADD r0,r0,r1 ; syntax error: no condition code used in IT block

    ITT    EQ       

    MOVEQ  r0,r1

    BEQ    dloop

Parents
  • Hello,

    is your information from ARM Information Center?

    If it is true, I think the meaning of 'IT can be omitted' is the statements in the document.

    You do not need to write IT instructions in your code, because the assembler generates them for you automatically according to the conditions specified on the following instructions. However, if you do write IT instructions, the assembler validates the conditions specified in the IT instructions against the conditions specified in the following instructions.

    That is, for exsample,  'ANDNE' stands for 'ANDITNE', and so on.

    Best regards,

    Yasuhiko Koumoto.

Reply
  • Hello,

    is your information from ARM Information Center?

    If it is true, I think the meaning of 'IT can be omitted' is the statements in the document.

    You do not need to write IT instructions in your code, because the assembler generates them for you automatically according to the conditions specified on the following instructions. However, if you do write IT instructions, the assembler validates the conditions specified in the IT instructions against the conditions specified in the following instructions.

    That is, for exsample,  'ANDNE' stands for 'ANDITNE', and so on.

    Best regards,

    Yasuhiko Koumoto.

Children
More questions in this forum