File: largeimmprinting.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (36 lines) | stat: -rw-r--r-- 1,362 bytes parent folder | download | duplicates (7)
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
; RUN: llc -march=mipsel -relocation-model=pic < %s | FileCheck %s -check-prefix=32
; RUN: llc -march=mips64el -mcpu=mips4 -target-abi=n64 -relocation-model=pic < %s | \
; RUN:     FileCheck %s -check-prefix=64
; RUN: llc -march=mips64el -mcpu=mips64 -target-abi=n64 -relocation-model=pic < %s | \
; RUN:     FileCheck %s -check-prefix=64

%struct.S1 = type { [65536 x i8] }

@s1 = external global %struct.S1

define void @f() nounwind {
entry:
; 32:  lui     $[[R0:[0-9]+]], 1
; 32:  addiu   $[[R0]], $[[R0]], 24
; 32:  subu    $sp, $sp, $[[R0]]
; 32:  lui     $[[R1:[0-9]+]], 1
; 32:  addu    $[[R1]], $sp, $[[R1]]
; 32:  sw      $ra, 20($[[R1]])

; 64:  lui     $[[R0:[0-9]+]], 1
; 64:  daddiu  $[[R0]], $[[R0]], 32
; 64:  dsubu   $sp, $sp, $[[R0]]
; 64:  lui     $[[R1:[0-9]+]], 1
; 64:  daddu   $[[R1]], $sp, $[[R1]]
; 64:  sd      $ra, 24($[[R1]])

  %agg.tmp = alloca %struct.S1, align 1
  %tmp = getelementptr inbounds %struct.S1, %struct.S1* %agg.tmp, i32 0, i32 0, i32 0
  call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 1 %tmp, i8* align 1 getelementptr inbounds (%struct.S1, %struct.S1* @s1, i32 0, i32 0, i32 0), i32 65536, i1 false)
  call void @f2(%struct.S1* byval(%struct.S1) %agg.tmp) nounwind
  ret void
}

declare void @f2(%struct.S1* byval(%struct.S1))

declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i1) nounwind