File: tailcc-musttail.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,696 kB
  • sloc: cpp: 7,438,781; ansic: 1,393,871; asm: 1,012,926; python: 241,771; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 8,596; ml: 5,082; perl: 4,730; makefile: 3,591; awk: 3,523; javascript: 2,251; xml: 892; fortran: 672
file content (72 lines) | stat: -rw-r--r-- 2,033 bytes parent folder | download | duplicates (22)
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
; RUN: not opt -passes=verify %s 2>&1 | FileCheck %s

declare tailcc void @simple()

define tailcc void @inreg(ptr inreg) {
; CHECK: inreg attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @inalloca(ptr inalloca(i8)) {
; CHECK: inalloca attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @swifterror(ptr swifterror) {
; CHECK: swifterror attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @preallocated(ptr preallocated(i8)) {
; CHECK: preallocated attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @byref(ptr byref(i8)) {
; CHECK: byref attribute not allowed in tailcc musttail caller
  musttail call tailcc void @simple()
  ret void
}

define tailcc void @call_inreg() {
; CHECK: inreg attribute not allowed in tailcc musttail callee
  musttail call tailcc void @inreg(ptr inreg undef)
  ret void
}

define tailcc void @call_inalloca() {
; CHECK: inalloca attribute not allowed in tailcc musttail callee
  musttail call tailcc void @inalloca(ptr inalloca(i8) undef)
  ret void
}

define tailcc void @call_swifterror() {
; CHECK: swifterror attribute not allowed in tailcc musttail callee
  %err = alloca swifterror ptr
  musttail call tailcc void @swifterror(ptr swifterror %err)
  ret void
}

define tailcc void @call_preallocated() {
; CHECK: preallocated attribute not allowed in tailcc musttail callee
  musttail call tailcc void @preallocated(ptr preallocated(i8) undef)
  ret void
}

define tailcc void @call_byref() {
; CHECK: byref attribute not allowed in tailcc musttail callee
  musttail call tailcc void @byref(ptr byref(i8) undef)
  ret void
}


declare tailcc void @varargs(...)
define tailcc void @call_varargs(...) {
; CHECK: cannot guarantee tailcc tail call for varargs function
  musttail call tailcc void(...) @varargs(...)
  ret void
}