File: thumb-add-sub-width.s

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (70 lines) | stat: -rw-r--r-- 2,872 bytes parent folder | download | duplicates (27)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// RUN: llvm-mc -triple thumbv6m -show-encoding < %s | FileCheck %s

  .text
  .thumb

  // Check that the correct encoding of the add and sub instructions is
  // selected, for all combinations of flag-setting, condition and 2- or
  // 3-operand syntax.

  .arch armv6-m
  add r0, r0, r1     // T2
  add r0, r1         // T2
  adds r0, r0, r1    // T1
  adds r0, r1        // T1
// CHECK: add     r0, r1                  @ encoding: [0x08,0x44]
// CHECK: add     r0, r1                  @ encoding: [0x08,0x44]
// CHECK: adds    r0, r0, r1              @ encoding: [0x40,0x18]
// CHECK: adds    r0, r0, r1              @ encoding: [0x40,0x18]

  .arch armv7-m
  add r0, r0, r1     // T2, T3
  add r0, r1         // T2, T3
  adds r0, r0, r1    // T1, T3
  adds r0, r1        // T1, T3
// CHECK: add     r0, r1                  @ encoding: [0x08,0x44]
// CHECK: add     r0, r1                  @ encoding: [0x08,0x44]
// CHECK: adds    r0, r0, r1              @ encoding: [0x40,0x18]
// CHECK: adds    r0, r0, r1              @ encoding: [0x40,0x18]

  itttt eq
// CHECK: itttt   eq                      @ encoding: [0x01,0xbf]
  addeq r0, r0, r1   // T1, T2, T3
  addeq r0, r1       // T2, T1, T3
  addseq r0, r0, r1  // T3
  addseq r0, r1      // T3
  // NOTE: Both T1 and T2 are valid for these two instructions, which one is
  // the preferred varies depending on whether the 2- or 3-operand syntax was
  // used.
// CHECK: addeq   r0, r0, r1              @ encoding: [0x40,0x18]
// CHECK: addeq   r0, r1                  @ encoding: [0x08,0x44]
// CHECK: addseq.w        r0, r0, r1      @ encoding: [0x10,0xeb,0x01,0x00]
// CHECK: addseq.w        r0, r0, r1      @ encoding: [0x10,0xeb,0x01,0x00]

  .arch armv6-m
  // NOTE: There is no non-flag-setting sub instruction for v6-M
  subs r0, r0, r1    // T1, T2
  subs r0, r1        // T1, T2
// CHECK: subs    r0, r0, r1              @ encoding: [0x40,0x1a]
// CHECK: subs    r0, r0, r1              @ encoding: [0x40,0x1a]

  .arch armv7-m
  sub r0, r0, r1     // T2
  sub r0, r1         // T2
  subs r0, r0, r1    // T1, T2
  subs r0, r1        // T1, T2
// CHECK: sub.w   r0, r0, r1              @ encoding: [0xa0,0xeb,0x01,0x00]
// CHECK: sub.w   r0, r0, r1              @ encoding: [0xa0,0xeb,0x01,0x00]
// CHECK: subs    r0, r0, r1              @ encoding: [0x40,0x1a]
// CHECK: subs    r0, r0, r1              @ encoding: [0x40,0x1a]

  itttt eq
// CHECK: itttt   eq                      @ encoding: [0x01,0xbf]
  subeq r0, r0, r1   // T1, T2
  subeq r0, r1       // T1, T2
  subseq r0, r0, r1  // T2
  subseq r0, r1      // T2
// CHECK: subeq   r0, r0, r1              @ encoding: [0x40,0x1a]
// CHECK: subeq   r0, r0, r1              @ encoding: [0x40,0x1a]
// CHECK: subseq.w        r0, r0, r1      @ encoding: [0xb0,0xeb,0x01,0x00]
// CHECK: subseq.w        r0, r0, r1      @ encoding: [0xb0,0xeb,0x01,0x00]