Update TableGen specification of DXIL Op records in DXIL.td per the current design document. - Facilitate specification of overloads, shader stage and attributes predicated on DXIL Ops predicated DXIL version. Implement functionality to consume in TableGen backend, DXILEmitter, the above specification enhancements, and generate C++ code (in (DXILOperations.inc) that represents properties of DXIL Ops, associated type declarations and corresponding accessor functions. Changes to DXIL Op Lowering pass to consume the DXIL Op representation generated by the TableGen back end. Add mtriple with the required shader model version to commandline of tests.
11 lines
341 B
LLVM
11 lines
341 B
LLVM
; RUN: not opt -S -dxil-op-lower -mtriple=dxil-pc-shadermodel6.3-library %s 2>&1 | FileCheck %s
|
|
|
|
; DXIL operation log2 does not support double overload type
|
|
; CHECK: LLVM ERROR: Invalid Overload Type
|
|
|
|
define noundef double @log2_double(double noundef %a) {
|
|
entry:
|
|
%elt.log2 = call double @llvm.log2.f64(double %a)
|
|
ret double %elt.log2
|
|
}
|