File: macro-at-pseudo-variable.s

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (95 lines) | stat: -rw-r--r-- 1,509 bytes parent folder | download | duplicates (7)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# RUN: rm -rf %t && split-file %s %t && cd %t
# RUN: llvm-mc -triple i386 a.s | FileCheck %s
# RUN: llvm-mc -triple i386 b.s | FileCheck %s --check-prefix=CHECK2

#--- a.s
.macro A
  add  $1\@, %eax
  add  $2\+, %eax
.endm

.macro B
  sub  $1\@, %eax
  sub  $2\+, %eax
.endm

  A
# CHECK:      addl  $10, %eax
# CHECK-NEXT: addl  $20, %eax
  A
# CHECK:      addl  $11, %eax
# CHECK-NEXT: addl  $21, %eax
  B
# CHECK:      subl  $12, %eax
# CHECK-NEXT: subl  $20, %eax
  B
# CHECK:      subl  $13, %eax
# CHECK-NEXT: subl  $21, %eax

# The following uses of \@ are undocumented, but valid:
.irpc foo,234
  add  $\foo\@, %eax
.endr
# CHECK:      addl  $24, %eax
# CHECK-NEXT: addl  $34, %eax
# CHECK-NEXT: addl  $44, %eax

.irp reg,%eax,%ebx
  sub  $2\@, \reg
.endr
# CHECK:      subl  $24, %eax
# CHECK-NEXT: subl  $24, %ebx

# Test that .irp(c) and .rep(t) do not increase \@.
# Only the use of A should increase \@, so we can test that it increases by 1
# each time.

.irpc foo,123
  sub  $\foo, %eax
.endr

  A
# CHECK: addl  $14, %eax

.irp reg,%eax,%ebx
  sub  $4, \reg
.endr

  A
# CHECK: addl  $15, %eax

.rept 2
  sub  $5, %eax
.endr

  A
# CHECK: addl  $16, %eax

.rep 3
  sub  $6, %eax
.endr

  A
# CHECK: addl  $17, %eax

#--- b.s
.rept 2
  .print "r\+ \+"
.endr
.irpc foo,12
  .print "\+\+i"
.endr
# CHECK2:      r0 0
# CHECK2-NEXT: r1 1
# CHECK2-NEXT: 00i
# CHECK2-NEXT: 11i

.rept 2
  .rept 2
    .print "n\+"
  .endr
.endr
# CHECK2:      n0
# CHECK2-NEXT: n0
# CHECK2-NEXT: n1
# CHECK2-NEXT: n1