
This PR contains changes in virtual register processing aimed to improve correctness of emitted MIR between passes from the perspective of MachineVerifier. This potentially helps to detect previously missed flaws in code emission and harden the test suite. As a measure of correctness and usefulness of this PR we may use a mode with expensive checks set on, and MachineVerifier reports problems in the test suite. In order to satisfy Machine Verifier requirements to MIR correctness not only a rework of usage of virtual registers' types and classes is required, but also corrections into pre-legalizer and instruction selection logics. Namely, the following changes are introduced: * scalar virtual registers have proper bit width, * detect register class by SPIR-V type, * add a superclass for id virtual register classes, * fix Tablegen rules used for instruction selection, * fixes of minor existed issues (missed flag for proper representation of a null constant for OpenCL vs. HLSL, wrong usage of integer virtual registers as a synonym of any non-type virtual register).
26 lines
1.1 KiB
LLVM
26 lines
1.1 KiB
LLVM
; RUN: llc -verify-machineinstrs -mtriple=spirv32-unknown-unknown --spirv-ext=+SPV_KHR_expect_assume < %s | FileCheck --check-prefixes=CHECK,EXT %s
|
|
; RUN: llc -verify-machineinstrs -mtriple=spirv64-unknown-unknown --spirv-ext=+SPV_KHR_expect_assume < %s | FileCheck --check-prefixes=CHECK,EXT %s
|
|
; RUN: llc -verify-machineinstrs -mtriple=spirv32-unknown-unknown < %s | FileCheck --check-prefixes=CHECK,NOEXT %s
|
|
; RUN: llc -verify-machineinstrs -mtriple=spirv64-unknown-unknown < %s | FileCheck --check-prefixes=CHECK,NOEXT %s
|
|
|
|
; EXT: OpCapability ExpectAssumeKHR
|
|
; EXT-NEXT: OpExtension "SPV_KHR_expect_assume"
|
|
; NOEXT-NOT: OpCapability ExpectAssumeKHR
|
|
; NOEXT-NOT: OpExtension "SPV_KHR_expect_assume"
|
|
|
|
declare i32 @llvm.expect.i32(i32, i32)
|
|
declare i32 @getOne()
|
|
|
|
; CHECK-DAG: %2 = OpTypeInt 32 0
|
|
; CHECK-DAG: %6 = OpFunctionParameter %2
|
|
; CHECK-DAG: %9 = OpIMul %2 %6 %8
|
|
; EXT-DAG: %10 = OpExpectKHR %2 %9 %6
|
|
; NOEXT-NOT: %10 = OpExpectKHR %2 %9 %6
|
|
|
|
define i32 @test(i32 %x) {
|
|
%one = call i32 @getOne()
|
|
%val = mul i32 %x, %one
|
|
%v = call i32 @llvm.expect.i32(i32 %val, i32 %x)
|
|
ret i32 %v
|
|
}
|