File: unaligned-memops.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (35 lines) | stat: -rw-r--r-- 1,775 bytes parent folder | download | duplicates (7)
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
; NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
; RUN: llc -march=mips -mcpu=mips32r2 -stop-before=finalize-isel < %s | FileCheck %s --check-prefix=MIPS
; RUN: llc -march=mips -mcpu=mips32r2 -mattr=+micromips -stop-before=finalize-isel < %s | FileCheck %s --check-prefix=MICROMIPS

; Test that the correct ISA version of the unaligned memory operations is
; selected up front.

define void @g2(i32* %a, i32* %b) {
  ; MIPS-LABEL: name: g2
  ; MIPS: bb.0.entry:
  ; MIPS:   liveins: $a0, $a1
  ; MIPS:   [[COPY:%[0-9]+]]:gpr32 = COPY $a1
  ; MIPS:   [[COPY1:%[0-9]+]]:gpr32 = COPY $a0
  ; MIPS:   [[DEF:%[0-9]+]]:gpr32 = IMPLICIT_DEF
  ; MIPS:   [[LWL:%[0-9]+]]:gpr32 = LWL [[COPY1]], 0, [[DEF]] :: (load (s32) from %ir.a, align 1)
  ; MIPS:   [[LWR:%[0-9]+]]:gpr32 = LWR [[COPY1]], 3, [[LWL]] :: (load (s32) from %ir.a, align 1)
  ; MIPS:   SWL [[LWR]], [[COPY]], 0 :: (store (s32) into %ir.b, align 1)
  ; MIPS:   SWR [[LWR]], [[COPY]], 3 :: (store (s32) into %ir.b, align 1)
  ; MIPS:   RetRA
  ; MICROMIPS-LABEL: name: g2
  ; MICROMIPS: bb.0.entry:
  ; MICROMIPS:   liveins: $a0, $a1
  ; MICROMIPS:   [[COPY:%[0-9]+]]:gpr32 = COPY $a1
  ; MICROMIPS:   [[COPY1:%[0-9]+]]:gpr32 = COPY $a0
  ; MICROMIPS:   [[DEF:%[0-9]+]]:gpr32 = IMPLICIT_DEF
  ; MICROMIPS:   [[LWL_MM:%[0-9]+]]:gpr32 = LWL_MM [[COPY1]], 0, [[DEF]] :: (load (s32) from %ir.a, align 1)
  ; MICROMIPS:   [[LWR_MM:%[0-9]+]]:gpr32 = LWR_MM [[COPY1]], 3, [[LWL_MM]] :: (load (s32) from %ir.a, align 1)
  ; MICROMIPS:   SWL_MM [[LWR_MM]], [[COPY]], 0 :: (store (s32) into %ir.b, align 1)
  ; MICROMIPS:   SWR_MM [[LWR_MM]], [[COPY]], 3 :: (store (s32) into %ir.b, align 1)
  ; MICROMIPS:   RetRA
entry:
  %0 = load i32, i32* %a, align 1
  store i32 %0, i32* %b, align 1
  ret void
}