[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / SystemZ / fp-strict-div-03.ll
bloba53512eeb51e379e7fddd325d22ad53c79b35537
1 ; Test strict 128-bit floating-point division.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 declare fp128 @llvm.experimental.constrained.fdiv.f128(fp128, fp128, metadata, metadata)
6 declare fp128 @llvm.experimental.constrained.fpext.f128.f32(float, metadata)
8 ; There is no memory form of 128-bit division.
9 define void @f1(fp128 *%ptr, float %f2) strictfp {
10 ; CHECK-LABEL: f1:
11 ; CHECK-DAG: lxebr %f0, %f0
12 ; CHECK-DAG: ld %f1, 0(%r2)
13 ; CHECK-DAG: ld %f3, 8(%r2)
14 ; CHECK: dxbr %f1, %f0
15 ; CHECK: std %f1, 0(%r2)
16 ; CHECK: std %f3, 8(%r2)
17 ; CHECK: br %r14
18   %f1 = load fp128, fp128 *%ptr
19   %f2x = call fp128 @llvm.experimental.constrained.fpext.f128.f32(float %f2,
20                                                metadata !"fpexcept.strict") #0
21   %sum = call fp128 @llvm.experimental.constrained.fdiv.f128(
22                         fp128 %f1, fp128 %f2x,
23                         metadata !"round.dynamic",
24                         metadata !"fpexcept.strict") #0
25   store fp128 %sum, fp128 *%ptr
26   ret void
29 attributes #0 = { strictfp }