File: swifterror.ll

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (43 lines) | stat: -rw-r--r-- 1,508 bytes parent folder | download
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
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s

%swift_error = type {i64, i8}

; CHECK: swifterror value can only be loaded and stored from, or as a swifterror argument!
; CHECK: %swift_error** %error_ptr_ref
; CHECK: %t = getelementptr inbounds %swift_error*, %swift_error** %error_ptr_ref, i64 1
define float @foo(%swift_error** swifterror %error_ptr_ref) {
  %t = getelementptr inbounds %swift_error*, %swift_error** %error_ptr_ref, i64 1
  ret float 1.0
}

; CHECK: swifterror argument for call has mismatched alloca
; CHECK: %error_ptr_ref = alloca %swift_error*
; CHECK: %call = call float @foo(%swift_error** swifterror %error_ptr_ref)
define float @caller(i8* %error_ref) {
entry:
  %error_ptr_ref = alloca %swift_error*
  store %swift_error* null, %swift_error** %error_ptr_ref
  %call = call float @foo(%swift_error** swifterror %error_ptr_ref)
  ret float 1.0
}

; CHECK: swifterror alloca must have pointer type
define void @swifterror_alloca_invalid_type() {
  %a = alloca swifterror i128
  ret void
}

; CHECK: swifterror alloca must not be array allocation
define void @swifterror_alloca_array() {
  %a = alloca swifterror i8*, i64 2
  ret void
}

; CHECK: Cannot have multiple 'swifterror' parameters!
declare void @a(i32** swifterror %a, i32** swifterror %b)

; CHECK: Attribute 'swifterror' applied to incompatible type!
declare void @b(i32 swifterror %a)

; CHECK: Attribute 'swifterror' only applies to parameters with pointer to pointer type!
declare void @c(i32* swifterror %a)