-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPIRV] Implement support for SPV_KHR_expect_assume (#66217)
Adds new extension SPV_KHR_expect_assume, new capability ExpectAssumeKHR as well as the new instructions: * OpExpectKHR * OpAssumeTrueKHR These are lowered from respectively llvm.expect.<ty> and llvm.assume intrinsics. Previously https://reviews.llvm.org/D157696
- Loading branch information
Showing
9 changed files
with
95 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
; RUN: llc -mtriple=spirv32-unknown-unknown < %s | FileCheck %s | ||
; RUN: llc -mtriple=spirv64-unknown-unknown < %s | FileCheck %s | ||
|
||
; CHECK: OpCapability ExpectAssumeKHR | ||
; CHECK-NEXT: OpExtension "SPV_KHR_expect_assume" | ||
|
||
declare void @llvm.assume(i1) | ||
|
||
; CHECK-DAG: %9 = OpIEqual %5 %6 %7 | ||
; CHECK-NEXT: OpAssumeTrueKHR %9 | ||
define void @assumeeq(i32 %x, i32 %y) { | ||
%cmp = icmp eq i32 %x, %y | ||
call void @llvm.assume(i1 %cmp) | ||
ret void | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
; RUN: llc -mtriple=spirv32-unknown-unknown < %s | FileCheck %s | ||
; RUN: llc -mtriple=spirv64-unknown-unknown < %s | FileCheck %s | ||
|
||
; CHECK: OpCapability ExpectAssumeKHR | ||
; CHECK-NEXT: 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 | ||
; CHECK-DAG: %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 | ||
} |