File: simplestorefp1.ll

package info (click to toggle)
llvm-toolchain-3.9 1%3A3.9.1-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 441,060 kB
  • ctags: 428,777
  • sloc: cpp: 2,546,577; ansic: 538,318; asm: 119,677; objc: 103,316; python: 102,148; sh: 27,847; pascal: 5,626; ml: 5,510; perl: 5,293; lisp: 4,801; makefile: 2,177; xml: 686; cs: 362; php: 212; csh: 117
file content (54 lines) | stat: -rw-r--r-- 2,122 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
48
49
50
51
52
53
54
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=1 -mcpu=mips32r2 \
; RUN:     < %s | FileCheck %s 
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=1 -mcpu=mips32 \
; RUN:     < %s | FileCheck %s
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=1 -mcpu=mips32r2 \
; RUN:     < %s | FileCheck %s -check-prefix=mips32r2 
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=1 -mcpu=mips32 \
; RUN:     < %s | FileCheck %s -check-prefix=mips32

@f = common global float 0.000000e+00, align 4
@de = common global double 0.000000e+00, align 8

; Function Attrs: nounwind
define void @f1() #0 {
entry:
  store float 0x3FFA76C8C0000000, float* @f, align 4
  ret void
; CHECK:  .ent  f1
; CHECK:  lui  $[[REG1:[0-9]+]], 16339
; CHECK:  ori  $[[REG2:[0-9]+]], $[[REG1]], 46662
; CHECK:  mtc1  $[[REG2]], $f[[REG3:[0-9]+]]
; CHECK:  lw  $[[REG4:[0-9]+]], %got(f)(${{[0-9]+}})
; CHECK:  swc1  $f[[REG3]], 0($[[REG4]])
; CHECK:   .end  f1

}

; Function Attrs: nounwind
define void @d1() #0 {
entry:
  store double 1.234567e+00, double* @de, align 8
; mip32r2:  .ent  d1
; mips32r2:  lui  $[[REG1a:[0-9]+]], 16371
; mips32r2:  ori  $[[REG2a:[0-9]+]], $[[REG1a]], 49353
; mips32r2:  lui  $[[REG1b:[0-9]+]], 21403
; mips32r2:  ori  $[[REG2b:[0-9]+]], $[[REG1b]], 34951
; mips32r2:  mtc1  $[[REG2b]], $f[[REG3:[0-9]+]]
; mips32r2:  mthc1  $[[REG2a]], $f[[REG3]]
; mips32r2:  sdc1  $f[[REG3]], 0(${{[0-9]+}})
; mips32r2:  .end  d1
; mips32:  .ent  d1
; mips32:  lui  $[[REG1a:[0-9]+]], 16371
; mips32:  ori  $[[REG2a:[0-9]+]], $[[REG1a]], 49353
; mips32:  lui  $[[REG1b:[0-9]+]], 21403
; mips32:  ori  $[[REG2b:[0-9]+]], $[[REG1b]], 34951
; mips32:  mtc1  $[[REG2b]], $f[[REG3:[0-9]+]]
; mips32:  mtc1  $[[REG2a]], $f{{[0-9]+}}
; mips32:  sdc1  $f[[REG3]], 0(${{[0-9]+}})
; mips32:  .end  d1

  ret void
}

attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }