Files
clang-p2996/llvm/test/CodeGen/SPIRV/function/alloca-load-store.ll
Ilia Diachkov 0098f2aebb [SPIRV] Add SPIR-V specific intrinsics, two passes and tests
The patch adds SPIR-V specific intrinsics required to keep information
critical to SPIR-V consistency (types, constants, etc.) during translation
from IR to MIR.

Two related passes (SPIRVEmitIntrinsics and SPIRVPreLegalizer) and several
LIT tests (passed with this change) have also been added.

It also fixes the issue with opaque pointers in SPIRVGlobalRegistry.cpp
and the mismatch of the data layout between the SPIR-V backend and clang
(Issue #55122).

Differential Revision: https://reviews.llvm.org/D124416

Co-authored-by: Aleksandr Bezzubikov <zuban32s@gmail.com>
Co-authored-by: Michal Paszkowski <michal.paszkowski@outlook.com>
Co-authored-by: Andrey Tretyakov <andrey1.tretyakov@intel.com>
Co-authored-by: Konrad Trifunovic <konrad.trifunovic@intel.com>
2022-05-06 03:02:00 +03:00

64 lines
1.8 KiB
LLVM

; RUN: llc -O0 %s -o - | FileCheck %s
target triple = "spirv32-unknown-unknown"
; CHECK-DAG: OpName [[BAR:%.+]] "bar"
; CHECK-DAG: OpName [[FOO:%.+]] "foo"
; CHECK-DAG: OpName [[GOO:%.+]] "goo"
; CHECK: [[INT:%.+]] = OpTypeInt 32
; CHECK-DAG: [[STACK_PTR:%.+]] = OpTypePointer Function [[INT]]
; CHECK-DAG: [[GLOBAL_PTR:%.+]] = OpTypePointer CrossWorkgroup [[INT]]
; CHECK-DAG: [[FN1:%.+]] = OpTypeFunction [[INT]] [[INT]]
; CHECK-DAG: [[FN2:%.+]] = OpTypeFunction [[INT]] [[INT]] [[GLOBAL_PTR]]
define i32 @bar(i32 %a) {
%p = alloca i32
store i32 %a, i32* %p
%b = load i32, i32* %p
ret i32 %b
}
; CHECK: [[BAR]] = OpFunction [[INT]] None [[FN1]]
; CHECK: [[A:%.+]] = OpFunctionParameter [[INT]]
; CHECK: OpLabel
; CHECK: [[P:%.+]] = OpVariable [[STACK_PTR]] Function
; CHECK: OpStore [[P]] [[A]]
; CHECK: [[B:%.+]] = OpLoad [[INT]] [[P]]
; CHECK: OpReturnValue [[B]]
; CHECK: OpFunctionEnd
define i32 @foo(i32 %a) {
%p = alloca i32
store volatile i32 %a, i32* %p
%b = load volatile i32, i32* %p
ret i32 %b
}
; CHECK: [[FOO]] = OpFunction [[INT]] None [[FN1]]
; CHECK: [[A:%.+]] = OpFunctionParameter [[INT]]
; CHECK: OpLabel
; CHECK: [[P:%.+]] = OpVariable [[STACK_PTR]] Function
; CHECK: OpStore [[P]] [[A]] Volatile
; CHECK: [[B:%.+]] = OpLoad [[INT]] [[P]] Volatile
; CHECK: OpReturnValue [[B]]
; CHECK: OpFunctionEnd
; Test load and store in global address space.
define i32 @goo(i32 %a, i32 addrspace(1)* %p) {
store i32 %a, i32 addrspace(1)* %p
%b = load i32, i32 addrspace(1)* %p
ret i32 %b
}
; CHECK: [[GOO]] = OpFunction [[INT]] None [[FN2]]
; CHECK: [[A:%.+]] = OpFunctionParameter [[INT]]
; CHECK: [[P:%.+]] = OpFunctionParameter [[GLOBAL_PTR]]
; CHECK: OpLabel
; CHECK: OpStore [[P]] [[A]]
; CHECK: [[B:%.+]] = OpLoad [[INT]] [[P]]
; CHECK: OpReturnValue [[B]]
; CHECK: OpFunctionEnd