llvm-project/llvm/test/CodeGen/SystemZ/inline-asm-i128.ll
Jonas Paulsson d058262b14 [SystemZ] Support i128 inline asm operands.
Support virtual, physical and tied i128 register operands in inline assembly.

i128 is on SystemZ not really supported and is not a legal type and generally
such a value will be split into two i64 parts. There are however some
instructions that require a pair of two GPR64 registers contained in the GR128
bit reg class, which is untyped.

For inline assmebly operands, it proved to be very cumbersome to first follow
the general behavior of splitting an i128 operand into two parts and then
later rebuild the INLINEASM MI to have one GR128 register. Instead, some
minor common code changes were made to SelectionDAGBUilder to only create one
GR128 register part to begin with. In particular:

- getNumRegisters() now has an optional parameter "RegisterVT" which is
  passed by AddInlineAsmOperands() and GetRegistersForValue().

- The bitcasting in GetRegistersForValue is not performed if RegVT is
  Untyped.

- The RC for a tied use in AddInlineAsmOperands() is now computed either from
  the tied def (virtual register), or by getMinimalPhysRegClass() (physical
  register).

- InstrEmitter.cpp:EmitCopyFromReg() has been fixed so that the register
  class (DstRC) can also be computed for an illegal type.

In the SystemZ backend getNumRegisters(), splitValueIntoRegisterParts() and
joinRegisterPartsIntoValue() have been implemented to handle i128 operands.

Differential Revision: https://reviews.llvm.org/D100788

Review: Ulrich Weigand
2021-05-26 10:08:32 -05:00

121 lines
3.7 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -mtriple=s390x-linux-gnu -no-integrated-as < %s | FileCheck %s
;
; Test i128 (tied) operands.
define i32 @fun0(i8* %p1, i32 signext %l1, i8* %p2, i32 signext %l2, i8 zeroext %pad) {
; CHECK-LABEL: fun0:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: lgr %r0, %r5
; CHECK-NEXT: # kill: def $r4d killed $r4d def $r4q
; CHECK-NEXT: lgr %r1, %r3
; CHECK-NEXT: # kill: def $r2d killed $r2d def $r2q
; CHECK-NEXT: sllg %r5, %r6, 24
; CHECK-NEXT: rosbg %r5, %r0, 40, 63, 0
; CHECK-NEXT: risbg %r3, %r1, 40, 191, 0
; CHECK-NEXT: #APP
; CHECK-NEXT: clcl %r2, %r4
; CHECK-NEXT: #NO_APP
; CHECK-NEXT: ogr %r3, %r5
; CHECK-NEXT: risbg %r0, %r3, 40, 191, 0
; CHECK-NEXT: ipm %r2
; CHECK-NEXT: afi %r2, -268435456
; CHECK-NEXT: srl %r2, 31
; CHECK-NEXT: br %r14
entry:
%0 = ptrtoint i8* %p1 to i64
%1 = ptrtoint i8* %p2 to i64
%and5 = and i32 %l2, 16777215
%2 = zext i32 %and5 to i64
%conv7 = zext i8 %pad to i64
%shl = shl nuw nsw i64 %conv7, 24
%or = or i64 %shl, %2
%u1.sroa.0.0.insert.ext = zext i64 %0 to i128
%u1.sroa.0.0.insert.shift = shl nuw i128 %u1.sroa.0.0.insert.ext, 64
%3 = and i32 %l1, 16777215
%u1.sroa.0.0.insert.mask = zext i32 %3 to i128
%u1.sroa.0.0.insert.insert = or i128 %u1.sroa.0.0.insert.shift, %u1.sroa.0.0.insert.mask
%u2.sroa.5.0.insert.ext = zext i64 %or to i128
%u2.sroa.0.0.insert.ext = zext i64 %1 to i128
%u2.sroa.0.0.insert.shift = shl nuw i128 %u2.sroa.0.0.insert.ext, 64
%u2.sroa.0.0.insert.insert = or i128 %u2.sroa.0.0.insert.shift, %u2.sroa.5.0.insert.ext
%4 = tail call { i128, i128 } asm "clcl $0, $1", "=r,=r,0,1"(i128 %u1.sroa.0.0.insert.insert, i128 %u2.sroa.0.0.insert.insert)
%asmresult = extractvalue { i128, i128 } %4, 0
%asmresult11 = extractvalue { i128, i128 } %4, 1
%5 = or i128 %asmresult, %asmresult11
%6 = and i128 %5, 16777215
%7 = icmp eq i128 %6, 0
%land.ext = zext i1 %7 to i32
ret i32 %land.ext
}
; Test a phys-reg def.
define void @fun1(i128* %Src, i128* %Dst) {
; CHECK-LABEL: fun1:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: #APP
; CHECK-NEXT: BLA %r4
; CHECK-NEXT: #NO_APP
; CHECK-NEXT: stg %r5, 8(%r3)
; CHECK-NEXT: stg %r4, 0(%r3)
; CHECK-NEXT: br %r14
entry:
%IAsm = call i128 asm "BLA $0", "={r4}"()
store volatile i128 %IAsm, i128* %Dst
ret void
}
; Test a phys-reg use.
define void @fun2(i128* %Src, i128* %Dst) {
; CHECK-LABEL: fun2:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: lg %r5, 8(%r2)
; CHECK-NEXT: lg %r4, 0(%r2)
; CHECK-NEXT: #APP
; CHECK-NEXT: BLA %r4
; CHECK-NEXT: #NO_APP
; CHECK-NEXT: br %r14
entry:
%L = load i128, i128* %Src
call void asm "BLA $0", "{r4}"(i128 %L)
ret void
}
; Test phys-reg use and phys-reg def.
define void @fun3(i128* %Src, i128* %Dst) {
; CHECK-LABEL: fun3:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: lg %r1, 8(%r2)
; CHECK-NEXT: lg %r0, 0(%r2)
; CHECK-NEXT: #APP
; CHECK-NEXT: BLA %r4, %r0
; CHECK-NEXT: #NO_APP
; CHECK-NEXT: stg %r5, 8(%r3)
; CHECK-NEXT: stg %r4, 0(%r3)
; CHECK-NEXT: br %r14
entry:
%L = load i128, i128* %Src
%IAsm = call i128 asm "BLA $0, $1", "={r4},{r0}"(i128 %L)
store volatile i128 %IAsm, i128* %Dst
ret void
}
; Test a tied phys-reg.
define void @fun4(i128* %Src, i128* %Dst) {
; CHECK-LABEL: fun4:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: lg %r5, 8(%r2)
; CHECK-NEXT: lg %r4, 0(%r2)
; CHECK-NEXT: #APP
; CHECK-NEXT: BLA %r4, %r4
; CHECK-NEXT: #NO_APP
; CHECK-NEXT: stg %r5, 8(%r3)
; CHECK-NEXT: stg %r4, 0(%r3)
; CHECK-NEXT: br %r14
entry:
%L = load i128, i128* %Src
%IAsm = call i128 asm "BLA $0, $1", "={r4},0"(i128 %L)
store volatile i128 %IAsm, i128* %Dst
ret void
}