File: call.ll

package info (click to toggle)
swiftlang 6.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,604 kB
  • sloc: cpp: 9,901,740; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (39 lines) | stat: -rw-r--r-- 1,275 bytes parent folder | download | duplicates (17)
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
; RUN: llc -mtriple=arm-eabi -mattr=+v4t %s -o - \
; RUN:   | FileCheck %s -check-prefix=CHECKV4

; RUN: llc -mtriple=arm-eabi -mattr=+v5t %s -o - \
; RUN:   | FileCheck %s -check-prefix=CHECKV5

; RUN: llc -mtriple=armv6-linux-gnueabi -relocation-model=pic %s -o - \
; RUN:   | FileCheck %s -check-prefix=CHECKELF

@t = weak global ptr null           ; <ptr> [#uses=1]

declare void @g(i32, i32, i32, i32)

define void @f() {
; CHECKELF: bl g
        call void @g( i32 1, i32 2, i32 3, i32 4 )
        ret void
}

define void @g.upgrd.1() {
; CHECKV4: mov lr, pc
; CHECKV5: blx
        %tmp = load ptr, ptr @t         ; <ptr> [#uses=1]
        %tmp.upgrd.2 = call i32 %tmp( )            ; <i32> [#uses=0]
        ret void
}

define ptr @m_231b(i32, i32, ptr, ptr, ptr) nounwind {
; CHECKV4: m_231b
; CHECKV4: bx r{{.*}}
BB0:
  %5 = inttoptr i32 %0 to ptr                    ; <ptr> [#uses=1]
  %t35 = load volatile i32, ptr %5                    ; <i32> [#uses=1]
  %6 = inttoptr i32 %t35 to ptr                 ; <ptr> [#uses=1]
  %7 = getelementptr ptr, ptr %6, i32 86             ; <ptr> [#uses=1]
  %8 = load ptr, ptr %7                              ; <ptr> [#uses=1]
  %9 = call ptr %8(i32 %0, ptr null, i32 %1, ptr %2, ptr %3, ptr %4) ; <ptr> [#uses=1]
  ret ptr %9
}