Add Validator Version to information collected by Module Metadata Analysis pass. An earlier change (#104040) added a default hardcoded value for validator version to be associated with DXIL module created during HLSL source compilation. Add tests to verify validator version info collected - Updated existing tests - Added a test with validator version specified in DXIL metadata
13 lines
476 B
LLVM
13 lines
476 B
LLVM
; RUN: opt -S -dxil-translate-metadata %s | FileCheck %s
|
|
; RUN: opt -S -passes="print<dxil-metadata>" -disable-output %s 2>&1 | FileCheck %s --check-prefix=ANALYSIS
|
|
target triple = "dxil-pc-shadermodel6.3-library"
|
|
|
|
; CHECK: !dx.shaderModel = !{![[SM:[0-9]+]]}
|
|
; CHECK: ![[SM]] = !{!"lib", i32 6, i32 3}
|
|
|
|
; ANALYSIS: Shader Model Version : 6.3
|
|
; ANALYSIS-NEXT: DXIL Version : 1.3
|
|
; ANALYSIS-NEXT: Shader Stage : library
|
|
; ANALYSIS-NEXT: Validator Version : 0
|
|
; ANALYSIS-EMPTY:
|