
- Redefines `DXILAttribute` to denote a function attribute, compatible to how it was define in DXC/LLVM 3.7 - Fix how `DXILAttribute` is emitted to be a struct of set attributes instead of an "or" of the enums - Implement the lowering of `DXILAttribute` to LLVM function attributes in `DXILOpBuilder.cpp`. A custom mapping is defined. - Audit all current ops to specify the correct attributes consistent with DXC. This is done here to allow for testing. - Update testcases in `llvm/test/CodeGen/DirectX` of all ops with attributes to match that attributes are set - Update testcases of ops that had previously incorrectly set attributes to check there is no attributes set - Defines `DXILProperty` to denote the other type of attributes from DXC used to query properties. - Emit `DXILProperty` as a struct of set attributes. - Updates `DXIL.td` to specify applicable `DXILProperty`s on ops Note: `DXILProperty` was referred to as 'queryable attributes' in design discussion. Changed to property to allow for better expression in `DXIL.td` Resolves #114461 Resolves #115912
28 lines
1.0 KiB
LLVM
28 lines
1.0 KiB
LLVM
; RUN: opt -S -dxil-intrinsic-expansion -mtriple=dxil-pc-shadermodel6.3-library %s | FileCheck %s --check-prefixes=CHECK,EXPCHECK
|
|
; RUN: opt -S -dxil-intrinsic-expansion -dxil-op-lower -mtriple=dxil-pc-shadermodel6.3-library %s | FileCheck %s --check-prefixes=CHECK,DOPCHECK
|
|
|
|
; Make sure dxil operation function calls for log are generated.
|
|
|
|
define noundef float @log_float(float noundef %a) #0 {
|
|
entry:
|
|
; DOPCHECK: call float @dx.op.unary.f32(i32 23, float %{{.*}}) #[[#ATTR:]]
|
|
; EXPCHECK: call float @llvm.log2.f32(float %a)
|
|
; CHECK: fmul float 0x3FE62E4300000000, %{{.*}}
|
|
%elt.log = call float @llvm.log.f32(float %a)
|
|
ret float %elt.log
|
|
}
|
|
|
|
define noundef half @log_half(half noundef %a) #0 {
|
|
entry:
|
|
; DOPCHECK: call half @dx.op.unary.f16(i32 23, half %{{.*}}) #[[#ATTR]]
|
|
; EXPCHECK: call half @llvm.log2.f16(half %a)
|
|
; CHECK: fmul half 0xH398C, %{{.*}}
|
|
%elt.log = call half @llvm.log.f16(half %a)
|
|
ret half %elt.log
|
|
}
|
|
|
|
; DOPCHECK: attributes #[[#ATTR]] = {{{.*}} memory(none) {{.*}}}
|
|
|
|
declare half @llvm.log.f16(half)
|
|
declare float @llvm.log.f32(float)
|