File: mem-par-metadata-sroa-cast.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,418,840 kB
  • sloc: cpp: 5,290,826; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,898; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,913; xml: 953; cs: 573; fortran: 539
file content (32 lines) | stat: -rw-r--r-- 1,050 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 -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 !{}