1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00
llvm-mirror/test/CodeGen/X86/disable-shrink-store.ll
Guozhi Wei 7118b8a8dd [DAGCombiner] Add command line options to guard store width reduction
optimizations

As discussed in the thread http://lists.llvm.org/pipermail/llvm-dev/2020-May/141838.html,
some bit field access width can be reduced by ReduceLoadOpStoreWidth, some
can't. If two accesses are very close, and the first access width is reduced,
the second is not. Then the wide load of second access will be stalled for long
time.

This patch add command line options to guard ReduceLoadOpStoreWidth and
ShrinkLoadReplaceStoreWithStore, so users can use them to disable these
store width reduction optimizations.

Differential Revision: https://reviews.llvm.org/D80745
2020-05-29 09:41:41 -07:00

19 lines
577 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-- -combiner-shrink-load-replace-store-with-store=false | FileCheck %s
define void @shrink(i16* %ptr) {
; CHECK-LABEL: shrink:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: movzbl (%rdi), %eax
; CHECK-NEXT: orl $25600, %eax # imm = 0x6400
; CHECK-NEXT: movw %ax, (%rdi)
; CHECK-NEXT: retq
entry:
%val = load i16, i16* %ptr
%masked_val = and i16 %val, 255
%replaced_val = or i16 %masked_val, 25600
store i16 %replaced_val, i16* %ptr
ret void
}