File: varargs.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 (44 lines) | stat: -rw-r--r-- 1,513 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
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; RUN: opt -mtriple=amdgcn-- -S -passes='lto<O2>' < %s | FileCheck %s
target triple = "amdgcn-amd-amdhsa"

; REQUIRES: amdgpu-registered-target

; We use the ExpandVariadics pass to lower variadic functions so they can be
; inlined.

define i32 @foo() {
; CHECK-LABEL: define i32 @foo(
; CHECK-SAME: ) local_unnamed_addr #[[ATTR0:[0-9]+]] {
; CHECK-NEXT:  [[ENTRY:.*:]]
; CHECK-NEXT:    ret i32 6
;
entry:
  %call = tail call i32 (i32, ...) @vararg(i32 poison, i32 noundef 1, i32 noundef 2, i32 noundef 3)
  ret i32 %call
}

define internal i32 @vararg(i32 %first, ...) {
entry:
  %vlist.alloca = alloca ptr, align 8, addrspace(5)
  %vlist = addrspacecast ptr addrspace(5) %vlist.alloca to ptr
  call void @llvm.va_start.p0(ptr %vlist)
  %vlist.promoted = load ptr, ptr %vlist, align 8
  %argp.a = getelementptr inbounds i8, ptr %vlist.promoted, i64 4
  store ptr %argp.a, ptr %vlist, align 8
  %a = load i32, ptr %vlist.promoted, align 4
  %argp.b = getelementptr inbounds i8, ptr %vlist.promoted, i64 8
  store ptr %argp.b, ptr %vlist, align 8
  %b = load i32, ptr %argp.a, align 4
  %sum = add nsw i32 %b, %a
  %argp.c = getelementptr inbounds i8, ptr %vlist.promoted, i64 12
  store ptr %argp.c, ptr %vlist, align 8
  %c = load i32, ptr %argp.b, align 4
  %ret = add nsw i32 %c, %sum
  call void @llvm.va_end.p0(ptr %vlist)
  ret i32 %ret
}

declare void @llvm.va_start.p0(ptr)

declare void @llvm.va_end.p0(ptr)