File: biggot.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (55 lines) | stat: -rw-r--r-- 1,946 bytes parent folder | download | duplicates (6)
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
; RUN: llc -mtriple=mipsel -mattr=+xgot \
; RUN:     -relocation-model=pic < %s | FileCheck %s -check-prefix=O32
; RUN: llc -mtriple=mips64el -mcpu=mips64r2 -mattr=+xgot \
; RUN:     -relocation-model=pic < %s | FileCheck %s -check-prefix=N64
; RUN: llc -mtriple=mipsel -mattr=+xgot -fast-isel \
; RUN:     -relocation-model=pic < %s | FileCheck %s -check-prefix=O32
; RUN: llc -mtriple=mips64el -mcpu=mips64r2 -mattr=+xgot -fast-isel \
; RUN:     -relocation-model=pic < %s | FileCheck %s -check-prefix=N64

@v0 = external global i32

define void @foo1() nounwind {
entry:
; O32-LABEL: foo1:
; O32: lui $[[R0:[0-9]+]], %got_hi(v0)
; O32: addu  $[[R1:[0-9]+]], $[[R0]], ${{[a-z0-9]+}}
; O32: lw  ${{[0-9]+}}, %got_lo(v0)($[[R1]])
; O32: lui $[[R2:[0-9]+]], %call_hi(foo0)
; O32: addu  $[[R3:[0-9]+]], $[[R2]], ${{[a-z0-9]+}}
; O32: lw  ${{[0-9]+}}, %call_lo(foo0)($[[R3]])

; N64-LABEL: foo1:
; N64-DAG: lui $[[R0:[0-9]+]], %got_hi(v0)
; N64-DAG: daddu  $[[R1:[0-9]+]], $[[R0]], ${{[a-z0-9]+}}
; N64-DAG: lui $[[R2:[0-9]+]], %call_hi(foo0)
; N64-DAG: daddu  $[[R3:[0-9]+]], $[[R2]], ${{[a-z0-9]+}}
; N64-DAG: ld  ${{[0-9]+}}, %got_lo(v0)($[[R1]])
; N64-DAG: ld  ${{[0-9]+}}, %call_lo(foo0)($[[R3]])

  %0 = load i32, ptr @v0, align 4
  tail call void @foo0(i32 %0) nounwind
  ret void
}

declare void @foo0(i32)

; call to external function.

define void @foo2(ptr nocapture %d, ptr nocapture %s, i32 %n) nounwind {
entry:
; O32-LABEL: foo2:
; O32: lui $[[R2:[0-9]+]], %call_hi(memcpy)
; O32: addu  $[[R3:[0-9]+]], $[[R2]], ${{[a-z0-9]+}}
; O32: lw  ${{[0-9]+}}, %call_lo(memcpy)($[[R3]])

; N64-LABEL: foo2:
; N64: lui $[[R2:[0-9]+]], %call_hi(memcpy)
; N64: daddu  $[[R3:[0-9]+]], $[[R2]], ${{[a-z0-9]+}}
; N64: ld  ${{[0-9]+}}, %call_lo(memcpy)($[[R3]])

  tail call void @llvm.memcpy.p0.p0.i32(ptr align 4 %d, ptr align 4 %s, i32 %n, i1 false)
  ret void
}

declare void @llvm.memcpy.p0.p0.i32(ptr nocapture, ptr nocapture, i32, i1) nounwind