File: aix-ignore-xcoff-visibility.ll

package info (click to toggle)
llvm-toolchain-16 1%3A16.0.6-15~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,634,792 kB
  • sloc: cpp: 6,179,261; ansic: 1,216,205; asm: 741,319; python: 196,614; objc: 75,325; f90: 49,640; lisp: 32,396; pascal: 12,286; sh: 9,394; perl: 7,442; ml: 5,494; awk: 3,523; makefile: 2,723; javascript: 1,206; xml: 886; fortran: 581; cs: 573
file content (48 lines) | stat: -rw-r--r-- 1,719 bytes parent folder | download | duplicates (12)
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
; RUN: llc -verify-machineinstrs -mtriple powerpc-ibm-aix-xcoff -mcpu=pwr4 \
; RUN:     -mattr=-altivec -data-sections=false < %s | \
; RUN:   FileCheck --check-prefix=VISIBILITY-ASM %s
; RUN: llc -verify-machineinstrs -mtriple powerpc-ibm-aix-xcoff -mcpu=pwr4 \
; RUN:     -mattr=-altivec -data-sections=false -ignore-xcoff-visibility < %s | \
; RUN:   FileCheck --check-prefix=IGNOREVISIBILITY-ASM %s
; RUN: llc -verify-machineinstrs -mtriple powerpc64-ibm-aix-xcoff -mcpu=pwr4 \
; RUN:     -mattr=-altivec -data-sections=false < %s | \
; RUN:   FileCheck --check-prefix=VISIBILITY-ASM %s
; RUN: llc -verify-machineinstrs -mtriple powerpc64-ibm-aix-xcoff -mcpu=pwr4 \
; RUN:     -mattr=-altivec -data-sections=false -ignore-xcoff-visibility < %s | \
; RUN:   FileCheck --check-prefix=IGNOREVISIBILITY-ASM %s

@foo_p = global ptr @zoo_extern_h, align 4
@b = protected global i32 0, align 4

define hidden void @foo_h(ptr %p) {
entry:
  %p.addr = alloca ptr, align 4
  store ptr %p, ptr %p.addr, align 4
  %0 = load ptr, ptr %p.addr, align 4
  %1 = load i32, ptr %0, align 4
  %inc = add nsw i32 %1, 1
  store i32 %inc, ptr %0, align 4
  ret void
}

declare hidden void @zoo_extern_h()

define protected void @bar() {
entry:
  call void @foo_h(ptr @b)
  %0 = load ptr, ptr @foo_p, align 4
  call void %0()
  ret void
}

; VISIBILITY-ASM: .globl  foo_h[DS],hidden
; VISIBILITY-ASM: .globl  .foo_h,hidden
; VISIBILITY-ASM: .globl  bar[DS],protected
; VISIBILITY-ASM: .globl  .bar,protected
; VISIBILITY-ASM: .globl  b,protected

; IGNOREVISIBILITY-ASM: .globl  foo_h[DS]
; IGNOREVISIBILITY-ASM: .globl  .foo_h
; IGNOREVISIBILITY-ASM: .globl  bar[DS]
; IGNOREVISIBILITY-ASM: .globl  .bar
; IGNOREVISIBILITY-ASM: .globl  b