File: builtins-ppc-xlcompat-trap-annotations-tw.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 (51 lines) | stat: -rw-r--r-- 1,952 bytes parent folder | download | duplicates (5)
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
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu \
; RUN:   --ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s
; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu \
; RUN:   --ppc-asm-full-reg-names -mcpu=pwr7 < %s | FileCheck %s
; RUN: llc -verify-machineinstrs -mtriple=powerpc-unknown-linux-gnu \
; RUN:   --ppc-asm-full-reg-names -mcpu=pwr7 < %s | FileCheck %s
; RUN: llc -verify-machineinstrs -mtriple=powerpc-unknown-aix \
; RUN:   --ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s -check-prefix=AIX
; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-aix \
; RUN:   --ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s -check-prefix=AIX
; RUN: llc -mtriple=powerpc-ibm-aix-xcoff -filetype=obj -o %t_32.o < %s
; RUN: llvm-readobj --exception-section %t_32.o | FileCheck %s --check-prefix=OBJ

; Check that we do not crash in object mode
; OBJ:       Exception section {
; OBJ-NEXT:    Symbol: .test__trap_annotation (3)

!1 = !{!"ppc-trap-reason", !"1", !"2"}
declare void @llvm.ppc.trap(i32 %a)
declare void @llvm.ppc.tw(i32 %a, i32 %b, i32 immarg)
define dso_local void @test__trap_annotation(i32 %a) {
; CHECK-LABEL: test__trap_annotation:
; CHECK:       # %bb.0:
; CHECK-NEXT:    twi 24, r3, 0
; CHECK-NEXT:    blr
;
; AIX-LABEL: test__trap_annotation:
; AIX:       # %bb.0:
; AIX-NEXT:  L..tmp0:
; AIX-NEXT:    .except .test__trap_annotation, 1, 2
; AIX-NEXT:    twi 24, r3, 0
; AIX-NEXT:    blr
  call void @llvm.ppc.trap(i32 %a), !annotation !1
  ret void
}

define dso_local void @test__tw_annotation(i32 %a) {
; CHECK-LABEL: test__tw_annotation:
; CHECK:       # %bb.0:
; CHECK-NEXT:    twi 0, r3, 4
; CHECK-NEXT:    blr
;
; AIX-LABEL: test__tw_annotation:
; AIX:       # %bb.0:
; AIX-NEXT:  L..tmp1:
; AIX-NEXT:    .except .test__tw_annotation, 1, 2
; AIX-NEXT:    twi 0, r3, 4
; AIX-NEXT:    blr
  call void @llvm.ppc.tw(i32 4, i32 %a, i32 0), !annotation !1
  ret void
}