File: calltest.ll

package info (click to toggle)
llvm-toolchain-3.9 1%3A3.9.1-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 441,060 kB
  • ctags: 428,777
  • sloc: cpp: 2,546,577; ansic: 538,318; asm: 119,677; objc: 103,316; python: 102,148; sh: 27,847; pascal: 5,626; ml: 5,510; perl: 5,293; lisp: 4,801; makefile: 2,177; xml: 686; cs: 362; php: 212; csh: 117
file content (34 lines) | stat: -rw-r--r-- 917 bytes parent folder | download | duplicates (21)
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
; RUN: llvm-as < %s | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll

%FunTy = type i32 (i32)

define void @invoke(%FunTy* %x) {
  %foo = call i32 %x( i32 123 )           ; <i32> [#uses=0]
  %foo2 = tail call i32 %x( i32 123 )             ; <i32> [#uses=0]
  ret void
}

define i32 @main(i32 %argc) personality i32 (...)* @__gxx_personality_v0 {
  %retval = call i32 @test( i32 %argc )           ; <i32> [#uses=2]
  %two = add i32 %retval, %retval         ; <i32> [#uses=1]
  %retval2 = invoke i32 @test( i32 %argc )
     to label %Next unwind label %Error              ; <i32> [#uses=1]

Next:
  %two2 = add i32 %two, %retval2          ; <i32> [#uses=1]
  call void @invoke( %FunTy* @test )
  ret i32 %two2

Error:
  %exn = landingpad {i8*, i32}
            cleanup
  ret i32 -1
}

define i32 @test(i32 %i0) {
        ret i32 %i0
}

declare i32 @__gxx_personality_v0(...)