File: restore-r30.ll

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (30 lines) | stat: -rw-r--r-- 998 bytes parent folder | download | duplicates (28)
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
; RUN: llc -relocation-model=pic < %s | FileCheck %s

; The load restoring r30 at the end of the function was placed out of order
; relative to its uses as the PIC base pointer.
; This was because the r30 operand was not marked as "def" which allowed
; the post-RA scheduler to move it over other uses of r30.

; CHECK-LABEL: fred
; CHECK:       lwz 30, 24(1)
; R30 should not appear in an instruction after it's been restored.
; CHECK-NOT:   30,

target datalayout = "E-m:e-p:32:32-i64:64-n32"
target triple = "powerpc--"

define double @fred(i64 %a) #0 {
entry:
  %0 = lshr i64 %a, 32
  %conv = trunc i64 %0 to i32
  %conv1 = sitofp i32 %conv to double
  %mul = fmul double %conv1, 0x41F0000000000000
  %and = and i64 %a, 4294967295
  %or = or i64 %and, 4841369599423283200
  %sub = fadd double %mul, 0xC330000000000000
  %1 = bitcast i64 %or to double
  %add = fadd double %sub, %1
  ret double %add
}

attributes #0 = { norecurse nounwind readnone "target-cpu"="ppc" "use-soft-float"="false" }