133 lines · plain
1; Test 8-bit atomic ORs.2;3; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s4; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CHECK-SHIFT15; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s -check-prefix=CHECK-SHIFT26 7; Check OR of a variable.8; - CHECK is for the main loop.9; - CHECK-SHIFT1 makes sure that the negated shift count used by the second10; RLL is set up correctly. The negation is independent of the NILL and L11; tested in CHECK.12; - CHECK-SHIFT2 makes sure that %b is shifted into the high part of the word13; before being used. This shift is independent of the other loop prologue14; instructions.15define i8 @f1(ptr %src, i8 %b) {16; CHECK-LABEL: f1:17; CHECK: risbg [[RISBG:%r[1-9]+]], %r2, 0, 189, 0{{$}}18; CHECK-DAG: sll %r2, 319; CHECK-DAG: l [[OLD:%r[0-9]+]], 0([[RISBG]])20; CHECK: [[LABEL:\.[^:]*]]:21; CHECK: rll [[ROT:%r[0-9]+]], [[OLD]], 0(%r2)22; CHECK: or [[ROT]], %r323; CHECK: rll [[NEW:%r[0-9]+]], [[ROT]], 0({{%r[1-9]+}})24; CHECK: cs [[OLD]], [[NEW]], 0([[RISBG]])25; CHECK: jl [[LABEL]]26; CHECK: rll %r2, [[OLD]], 8(%r2)27; CHECK: br %r1428;29; CHECK-SHIFT1-LABEL: f1:30; CHECK-SHIFT1: sll %r2, 331; CHECK-SHIFT1: lcr [[NEGSHIFT:%r[1-9]+]], %r232; CHECK-SHIFT1: rll33; CHECK-SHIFT1: rll {{%r[0-9]+}}, {{%r[0-9]+}}, 0([[NEGSHIFT]])34; CHECK-SHIFT1: rll35; CHECK-SHIFT1: br %r1436;37; CHECK-SHIFT2-LABEL: f1:38; CHECK-SHIFT2: sll %r3, 2439; CHECK-SHIFT2: rll40; CHECK-SHIFT2: or {{%r[0-9]+}}, %r341; CHECK-SHIFT2: rll42; CHECK-SHIFT2: rll43; CHECK-SHIFT2: br %r1444 %res = atomicrmw or ptr %src, i8 %b seq_cst45 ret i8 %res46}47 48; Check the minimum signed value. We OR the rotated word with 0x80000000.49define i8 @f2(ptr %src) {50; CHECK-LABEL: f2:51; CHECK: risbg [[RISBG:%r[1-9]+]], %r2, 0, 189, 0{{$}}52; CHECK-DAG: sll %r2, 353; CHECK-DAG: l [[OLD:%r[0-9]+]], 0([[RISBG]])54; CHECK: [[LABEL:\.[^:]*]]:55; CHECK: rll [[ROT:%r[0-9]+]], [[OLD]], 0(%r2)56; CHECK: oilh [[ROT]], 3276857; CHECK: rll [[NEW:%r[0-9]+]], [[ROT]], 0([[NEGSHIFT:%r[1-9]+]])58; CHECK: cs [[OLD]], [[NEW]], 0([[RISBG]])59; CHECK: jl [[LABEL]]60; CHECK: rll %r2, [[OLD]], 8(%r2)61; CHECK: br %r1462;63; CHECK-SHIFT1-LABEL: f2:64; CHECK-SHIFT1: sll %r2, 365; CHECK-SHIFT1: lcr [[NEGSHIFT:%r[1-9]+]], %r266; CHECK-SHIFT1: rll67; CHECK-SHIFT1: rll {{%r[0-9]+}}, {{%r[0-9]+}}, 0([[NEGSHIFT]])68; CHECK-SHIFT1: rll69; CHECK-SHIFT1: br %r1470;71; CHECK-SHIFT2-LABEL: f2:72; CHECK-SHIFT2: br %r1473 %res = atomicrmw or ptr %src, i8 -128 seq_cst74 ret i8 %res75}76 77; Check ORs of -2 (-1 isn't useful). We OR the rotated word with 0xfe000000.78define i8 @f3(ptr %src) {79; CHECK-LABEL: f3:80; CHECK: oilh [[ROT]], 6502481; CHECK: br %r1482;83; CHECK-SHIFT1-LABEL: f3:84; CHECK-SHIFT1: br %r1485; CHECK-SHIFT2-LABEL: f3:86; CHECK-SHIFT2: br %r1487 %res = atomicrmw or ptr %src, i8 -2 seq_cst88 ret i8 %res89}90 91; Check ORs of 1. We OR the rotated word with 0x01000000.92define i8 @f4(ptr %src) {93; CHECK-LABEL: f4:94; CHECK: oilh [[ROT]], 25695; CHECK: br %r1496;97; CHECK-SHIFT1-LABEL: f4:98; CHECK-SHIFT1: br %r1499; CHECK-SHIFT2-LABEL: f4:100; CHECK-SHIFT2: br %r14101 %res = atomicrmw or ptr %src, i8 1 seq_cst102 ret i8 %res103}104 105; Check the maximum signed value. We OR the rotated word with 0x7f000000.106define i8 @f5(ptr %src) {107; CHECK-LABEL: f5:108; CHECK: oilh [[ROT]], 32512109; CHECK: br %r14110;111; CHECK-SHIFT1-LABEL: f5:112; CHECK-SHIFT1: br %r14113; CHECK-SHIFT2-LABEL: f5:114; CHECK-SHIFT2: br %r14115 %res = atomicrmw or ptr %src, i8 127 seq_cst116 ret i8 %res117}118 119; Check ORs of a large unsigned value. We OR the rotated word with120; 0xfd000000.121define i8 @f6(ptr %src) {122; CHECK-LABEL: f6:123; CHECK: oilh [[ROT]], 64768124; CHECK: br %r14125;126; CHECK-SHIFT1-LABEL: f6:127; CHECK-SHIFT1: br %r14128; CHECK-SHIFT2-LABEL: f6:129; CHECK-SHIFT2: br %r14130 %res = atomicrmw or ptr %src, i8 253 seq_cst131 ret i8 %res132}133