File: subtarget-align.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 1,998,492 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 (39 lines) | stat: -rw-r--r-- 1,058 bytes parent folder | download | duplicates (16)
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
; RUN: llc -mtriple=arm-linux-gnueabihf -filetype=obj <%s | llvm-objdump --triple=armv7 --no-show-raw-insn -d - | FileCheck %s

;; Expect architectural nop to be used between func2 and func3 but not func1
;; and func2 due to lack of subtarget support in func2.

define i32 @func1() #0 align 16 {
entry:
  ret i32 0
}

define i32 @func2() #1 align 16 {
entry:
  ret i32 0
}

define i32 @func3() #0 align 16 {
entry:
  ret i32 0
}

attributes #0 = { "target-cpu"="generic" "target-features"="+armv7-a,+dsp,+neon,+vfp3,-thumb-mode" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #1 = { "target-cpu"="arm7tdmi" "target-features"="+armv4t" "use-soft-float"="true" }


; CHECK: 00000000 <func1>:
; CHECK-NEXT:  0: mov     r0, #0
; CHECK-NEXT:  4: bx      lr
; CHECK-NEXT:  8: mov     r0, r0
; CHECK-NEXT:  c: mov     r0, r0

; CHECK: 00000010 <func2>:
; CHECK-NEXT: 10: mov     r0, #0
; CHECK-NEXT: 14: bx      lr
; CHECK-NEXT: 18: nop
; CHECK-NEXT: 1c: nop

; CHECK: 00000020 <func3>:
; CHECK-NEXT: 20: mov     r0, #0
; CHECK-NEXT: 24: bx      lr