File: 2007-03-25-BadShiftMask.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (42 lines) | stat: -rw-r--r-- 1,329 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
33
34
35
36
37
38
39
40
41
42
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; PR1271
; RUN: opt < %s -passes=instcombine -S | FileCheck %s

%struct..0anon = type { i32, i32 }
%struct..1anon = type { double }

define i32 @main() {
; CHECK-LABEL: @main(
; CHECK-NEXT:  entry:
; CHECK-NEXT:    [[U:%.*]] = alloca [[STRUCT__1ANON:%.*]], align 8
; CHECK-NEXT:    store double 0x7FF0000000000000, ptr [[U]], align 8
; CHECK-NEXT:    [[TMP5:%.*]] = getelementptr inbounds [[STRUCT__0ANON:%.*]], ptr [[U]], i64 0, i32 1
; CHECK-NEXT:    [[TMP6:%.*]] = load i32, ptr [[TMP5]], align 4
; CHECK-NEXT:    [[TMP0:%.*]] = and i32 [[TMP6]], 2146435072
; CHECK-NEXT:    [[DOTNOT:%.*]] = icmp eq i32 [[TMP0]], 2146435072
; CHECK-NEXT:    br i1 [[DOTNOT]], label [[COND_FALSE:%.*]], label [[COND_TRUE:%.*]]
; CHECK:       cond_true:
; CHECK-NEXT:    ret i32 0
; CHECK:       cond_false:
; CHECK-NEXT:    ret i32 1
;
entry:
  %u = alloca %struct..1anon, align 8
  store double 0x7FF0000000000000, ptr %u
  %tmp5 = getelementptr %struct..0anon, ptr %u, i32 0, i32 1
  %tmp6 = load i32, ptr %tmp5
  %tmp7 = shl i32 %tmp6, 1
  %tmp8 = lshr i32 %tmp7, 21
  %tmp89 = trunc i32 %tmp8 to i16
  icmp ne i16 %tmp89, 2047
  zext i1 %0 to i8
  icmp ne i8 %1, 0
  br i1 %2, label %cond_true, label %cond_false

cond_true:
  ret i32 0

cond_false:
  ret i32 1
}