File: mem-par-metadata-sroa-cast.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 (32 lines) | stat: -rw-r--r-- 1,057 bytes parent folder | download | duplicates (3)
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
; RUN: opt < %s -passes=sroa -S | FileCheck %s
;
; Make sure the llvm.access.group meta-data is preserved
; when a load/store is replaced with another load/store by sroa
; Ensure this is done for casting too.
;
; CHECK: entry:
; CHECK: load i32, i32* {{.*}}, !llvm.access.group [[DISTINCT:![0-9]*]]
; CHECK: load i32, i32* {{.*}}, !llvm.access.group [[DISTINCT]]
; CHECK: ret void
; CHECK: [[DISTINCT]] = distinct !{}

%CMPLX = type { float, float }

define dso_local void @test() {
entry:
  %PART = alloca %CMPLX, align 8
  %PREV = alloca %CMPLX, align 8
  %r2 = getelementptr %CMPLX, %CMPLX* %PREV, i32 0, i32 0
  store float 0.000000e+00, float* %r2, align 4
  %i2 = getelementptr %CMPLX, %CMPLX* %PREV, i32 0, i32 1
  store float 0.000000e+00, float* %i2, align 4
  %dummy = sext i16 0 to i64
  %T = getelementptr %CMPLX, %CMPLX* %PART, i64 %dummy
  %X35 = bitcast %CMPLX* %T to i64*
  %X36 = bitcast %CMPLX* %PREV to i64*
  %X37 = load i64, i64* %X35, align 8, !llvm.access.group !0
  store i64 %X37, i64* %X36, align 8
  ret void
}

!0 = distinct !{}