Files
clang-p2996/llvm/test/CodeGen/SPIRV/function/trivial-function-with-attributes.ll
Ilia Diachkov 153dee34f1 [SPIR-V](6/6) Add the module analysis pass and the simplest tests
This patch adds one SPIRV analysis pass and extends AsmPrinter. It is
essential for minimum SPIR-V output. Also it adds several simplest tests
to show that the target basically works.

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

Authors: Aleksandr Bezzubikov, Lewis Crawford, Ilia Diachkov,
Michal Paszkowski, Andrey Tretyakov, Konrad Trifunovic

Co-authored-by: Aleksandr Bezzubikov <zuban32s@gmail.com>
Co-authored-by: Ilia Diachkov <iliya.diyachkov@intel.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-04-20 01:10:25 +02:00

75 lines
1.5 KiB
LLVM

; RUN: llc -O0 %s -o - | FileCheck %s
target triple = "spirv32-unknown-unknown"
; FIXME: Are there any attributes that would make the IR invalid for SPIR-V?
; Names:
; CHECK-DAG: OpName [[FN1:%.+]] "fn1"
; CHECK-DAG: OpName [[FN2:%.+]] "fn2"
; CHECK-DAG: OpName [[FN3:%.+]] "fn3"
; CHECK-DAG: OpName [[FN4:%.+]] "fn4"
; CHECK-DAG: OpName [[FN5:%.+]] "fn5"
; CHECK-DAG: OpName [[FN6:%.+]] "fn6"
; CHECK-DAG: OpName [[FN7:%.+]] "fn7"
; CHECK-NOT: DAG-FENCE
; Types:
; CHECK: [[VOID:%.+]] = OpTypeVoid
; CHECK: [[FN:%.+]] = OpTypeFunction [[VOID]]
; Functions:
define void @fn1() noinline {
ret void
}
; CHECK: [[FN1]] = OpFunction [[VOID]] DontInline [[FN]]
; CHECK-NOT: OpFunctionParameter
; CHECK: OpFunctionEnd
attributes #0 = { noinline }
define void @fn2() #0 {
ret void
}
; CHECK: [[FN2]] = OpFunction [[VOID]] DontInline [[FN]]
; CHECK: OpFunctionEnd
define void @fn3() alwaysinline {
ret void
}
; CHECK: [[FN3]] = OpFunction [[VOID]] Inline [[FN]]
; CHECK: OpFunctionEnd
; NOTE: inlinehint is not an actual requirement.
define void @fn4() inlinehint {
ret void
}
; CHECK: [[FN4]] = OpFunction [[VOID]] None [[FN]]
; CHECK: OpFunctionEnd
define void @fn5() readnone {
ret void
}
; CHECK: [[FN5]] = OpFunction [[VOID]] Pure [[FN]]
; CHECK: OpFunctionEnd
define void @fn6() readonly {
ret void
}
; CHECK: [[FN6]] = OpFunction [[VOID]] Const [[FN]]
; CHECK: OpFunctionEnd
define void @fn7() alwaysinline readnone {
ret void
}
; CHECK: [[FN7]] = OpFunction [[VOID]] Inline|Pure [[FN]]
; CHECK: OpFunctionEnd