aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Hexagon/long-calls.ll
blob: 9f9a527a542f42b2d4f2ff1f490ac7c5057eee0f (plain) (blame)
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
73
; RUN: llc -march=hexagon -enable-save-restore-long < %s | FileCheck %s

; Check that the -long-calls feature is supported by the backend.

; CHECK: call ##foo
; CHECK: jump ##__restore
define i64 @test_longcall(i32 %x, i32 %y) #0 {
entry:
  %add = add nsw i32 %x, 5
  %call = tail call i64 @foo(i32 %add) #6
  %conv = sext i32 %y to i64
  %add1 = add nsw i64 %call, %conv
  ret i64 %add1
}

; CHECK: jump ##foo
define i64 @test_longtailcall(i32 %x, i32 %y) #1 {
entry:
  %add = add nsw i32 %x, 5
  %call = tail call i64 @foo(i32 %add) #6
  ret i64 %call
}

; CHECK: call ##bar
define i64 @test_longnoret(i32 %x, i32 %y) #2 {
entry:
  %add = add nsw i32 %x, 5
  %0 = tail call i64 @bar(i32 %add) #7
  unreachable
}

; CHECK: call foo
; CHECK: jump ##__restore
; The restore call will still be long because of the enable-save-restore-long
; option being used.
define i64 @test_shortcall(i32 %x, i32 %y) #3 {
entry:
  %add = add nsw i32 %x, 5
  %call = tail call i64 @foo(i32 %add) #6
  %conv = sext i32 %y to i64
  %add1 = add nsw i64 %call, %conv
  ret i64 %add1
}

; CHECK: jump foo
define i64 @test_shorttailcall(i32 %x, i32 %y) #4 {
entry:
  %add = add nsw i32 %x, 5
  %call = tail call i64 @foo(i32 %add) #6
  ret i64 %call
}

; CHECK: call bar
define i64 @test_shortnoret(i32 %x, i32 %y) #5 {
entry:
  %add = add nsw i32 %x, 5
  %0 = tail call i64 @bar(i32 %add) #7
  unreachable
}

declare i64 @foo(i32) #6
declare i64 @bar(i32) #7

attributes #0 = { minsize nounwind "target-cpu"="hexagonv60" "target-features"="+long-calls" }
attributes #1 = { nounwind "target-cpu"="hexagonv60" "target-features"="+long-calls" }
attributes #2 = { noreturn nounwind "target-cpu"="hexagonv60" "target-features"="+long-calls" }

attributes #3 = { minsize nounwind "target-cpu"="hexagonv60" "target-features"="-long-calls" }
attributes #4 = { nounwind "target-cpu"="hexagonv60" "target-features"="-long-calls" }
attributes #5 = { noreturn nounwind "target-cpu"="hexagonv60" "target-features"="-long-calls" }

attributes #6 = { noreturn "target-cpu"="hexagonv60" }
attributes #7 = { noreturn nounwind "target-cpu"="hexagonv60" }