File: dyn-alloca-aligned.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 (35 lines) | stat: -rw-r--r-- 1,177 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
; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 < %s | FileCheck %s
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
target triple = "powerpc64-unknown-linux-gnu"

%struct.s = type { i32, i32 }

declare void @bar(i32*, i32*) #0

define void @goo(%struct.s* byval(%struct.s) nocapture readonly %a, i32 signext %n) #0 {
entry:
  %0 = zext i32 %n to i64
  %vla = alloca i32, i64 %0, align 128
  %vla1 = alloca i32, i64 %0, align 128
  %a2 = getelementptr inbounds %struct.s, %struct.s* %a, i64 0, i32 0
  %1 = load i32, i32* %a2, align 4
  store i32 %1, i32* %vla1, align 128
  %b = getelementptr inbounds %struct.s, %struct.s* %a, i64 0, i32 1
  %2 = load i32, i32* %b, align 4
  %arrayidx3 = getelementptr inbounds i32, i32* %vla1, i64 1
  store i32 %2, i32* %arrayidx3, align 4
  call void @bar(i32* %vla1, i32* %vla) #0
  ret void

; CHECK-LABEL: @goo

; CHECK-DAG: li [[REG1:[0-9]+]], -128
; CHECK-DAG: neg [[REG2:[0-9]+]],
; CHECK: and [[REG3:[0-9]+]], [[REG2]], [[REG1]]
; CHECK: stdux {{[0-9]+}}, 1, [[REG3]]

; CHECK: blr

}

attributes #0 = { nounwind }