File: knownzero-addrspacecast.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 (24 lines) | stat: -rw-r--r-- 688 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
; RUN: opt -instcombine -S < %s | FileCheck %s

; When a pointer is addrspacecasted to a another addr space, we cannot assume
; anything about the new bits.

target datalayout = "p:32:32-p3:32:32-p4:64:64"

; CHECK-LABEL: @test_shift
; CHECK-NOT: ret i64 0
define i64 @test_shift(i8* %p) {
  %g = addrspacecast i8* %p to i8 addrspace(4)*
  %i = ptrtoint i8 addrspace(4)* %g to i64
  %shift = lshr i64 %i, 32
  ret i64 %shift
}

; CHECK-LABEL: @test_null
; A null pointer casted to another addr space may no longer have null value.
; CHECK-NOT: ret i32 0
define i32 @test_null() {
  %g = addrspacecast i8* null to i8 addrspace(3)*
  %i = ptrtoint i8 addrspace(3)* %g to i32
  ret i32 %i
}