File: changed-kind.ll

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (47 lines) | stat: -rw-r--r-- 1,325 bytes parent folder | download | duplicates (5)
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
43
44
45
46
47
; RUN: opt %loadPolly -polly-print-optree -disable-output < %s | FileCheck %s -match-full-lines

; In the code below, %0 is known to be equal to the content of @c (constant 0).
; Thus, in order to save a scalar dependency, forward-optree replaces
; the use of %0 in Stmt_lor_end93 by a load from @c by changing the
; access find from a scalar access to a array accesses.
; llvm.org/PR48034 describes a crash caused by the mid-processing change.

target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"

@c = external dso_local global i64, align 8

define void @func()  {
entry:
  br label %lor.end

while.cond.loopexit:
  %conv102.le = trunc i64 %xor101 to i8
  ret void

lor.end:
  %tobool72.not = icmp eq i64 0, 0
  br i1 %tobool72.not, label %lor.rhs87, label %lor.end.thread

lor.end.thread:
  br label %lor.rhs87

lor.rhs87:
  %0 = phi i64 [ 0, %lor.end.thread ], [ 0, %lor.end ]
  store i64 %0, ptr @c, align 8
  %neg79 = xor i64 %0, -1
  br label %lor.end93

lor.end93:
  %tobool93 = icmp ne i64 undef, 0
  %conv95 = zext i1 %tobool93 to i64
  %and100 = and i64 %conv95, undef
  %xor101 = xor i64 %and100, %neg79
  %xor103 = xor i64 %0, %conv95
  br label %while.cond.loopexit
}


; CHECK: Statistics {
; CHECK:     Reloads: 0
; CHECK: }