File: 2016-04-17-combine.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (26 lines) | stat: -rw-r--r-- 895 bytes parent folder | download | duplicates (14)
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
; RUN: llc -verify-machineinstrs <%s | FileCheck %s
target datalayout = "e-m:e-i64:64-n32:64"
target triple = "powerpc64le-unknown-linux-gnu"

; PR27390 crasher

%typ = type { i32, i32 }

; On release builds, it doesn't crash, spewing nonsense instead.
; To make sure it works, check that rldicl is still alive.
; CHECK: rldicl
; Also, in release, it emits a COPY from a 32-bit register to
; a 64-bit register, which happens to be emitted as cror [!]
; by the confused CodeGen.  Just to be sure, check there isn't one.
; CHECK-NOT: cror
; Function Attrs: uwtable
define signext i32 @_Z8access_pP1Tc(ptr %p, i8 zeroext %type) {
  %b = getelementptr inbounds %typ, ptr %p, i64 0, i32 1
  %1 = load i32, ptr %b, align 4
  %2 = ptrtoint ptr %b to i64
  %3 = and i64 %2, -35184372088833
  %4 = inttoptr i64 %3 to ptr
  %_msld = load i32, ptr %4, align 4
  %zzz = add i32 %1,  %_msld
  ret i32 %zzz
}