
- 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
34 lines
1.1 KiB
LLVM
34 lines
1.1 KiB
LLVM
; RUN: opt -S -dxil-op-lower -mtriple=dxil-pc-shadermodel6.3-library %s | FileCheck %s
|
|
|
|
; Make sure dxil operation function calls for umin are generated for i16/i32/i64.
|
|
|
|
; CHECK-LABEL:test_umin_i16
|
|
define noundef i16 @test_umin_i16(i16 noundef %a, i16 noundef %b) {
|
|
entry:
|
|
; CHECK: call i16 @dx.op.binary.i16(i32 40, i16 %{{.*}}, i16 %{{.*}}) #[[#ATTR:]]
|
|
%0 = call i16 @llvm.umin.i16(i16 %a, i16 %b)
|
|
ret i16 %0
|
|
}
|
|
|
|
; CHECK-LABEL:test_umin_i32
|
|
define noundef i32 @test_umin_i32(i32 noundef %a, i32 noundef %b) {
|
|
entry:
|
|
; CHECK: call i32 @dx.op.binary.i32(i32 40, i32 %{{.*}}, i32 %{{.*}}) #[[#ATTR]]
|
|
%0 = call i32 @llvm.umin.i32(i32 %a, i32 %b)
|
|
ret i32 %0
|
|
}
|
|
|
|
; CHECK-LABEL:test_umin_i64
|
|
define noundef i64 @test_umin_i64(i64 noundef %a, i64 noundef %b) {
|
|
entry:
|
|
; CHECK: call i64 @dx.op.binary.i64(i32 40, i64 %{{.*}}, i64 %{{.*}}) #[[#ATTR]]
|
|
%0 = call i64 @llvm.umin.i64(i64 %a, i64 %b)
|
|
ret i64 %0
|
|
}
|
|
|
|
; CHECK: attributes #[[#ATTR]] = {{{.*}} memory(none) {{.*}}}
|
|
|
|
declare i16 @llvm.umin.i16(i16, i16)
|
|
declare i32 @llvm.umin.i32(i32, i32)
|
|
declare i64 @llvm.umin.i64(i64, i64)
|