Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions llvm-spirv/lib/SPIRV/SPIRVWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1399,9 +1399,13 @@ SPIRVValue *LLVMToSPIRV::transIntrinsicInst(IntrinsicInst *II,
}
return 0;
}
// We can just ignore/drop some intrinsics, like optimizations hint.
case Intrinsic::invariant_start:
case Intrinsic::invariant_end:
return nullptr;
default:
// LLVM intrinsic functions shouldn't get to SPIRV, because they
// would have no definition there.
// Other LLVM intrinsics shouldn't get to SPIRV, because they
// can't be represented in SPIRV or not implemented yet.
BM->getErrorLog().checkError(false, SPIRVEC_InvalidFunctionCall,
II->getCalledValue()->getName().str(), "",
__FILE__, __LINE__);
Expand Down
32 changes: 32 additions & 0 deletions llvm-spirv/test/llvm.invariant.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
; Make sure the translator doesn't crash if the input LLVM IR contains llvm.invariant.* intrinsics
; RUN: llvm-as < %s -o %t.bc
; RUN: llvm-spirv %t.bc -o %t.spv
; RUN: spirv-val %t.spv
; RUN: llvm-spirv -to-text %t.spv -o - | FileCheck %s

; CHECK-NOT: FunctionParameter
; CHECK-NOT: FunctionCall

source_filename = "<stdin>"
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024"
target triple = "spir64-unknown-linux-sycldevice"

@WGSharedVar = internal addrspace(3) constant i64 0, align 8

; Function Attrs: argmemonly nounwind
declare {}* @llvm.invariant.start.p3i8(i64 immarg, i8 addrspace(3)* nocapture) #0

; Function Attrs: argmemonly nounwind
declare void @llvm.invariant.end.p3i8({}*, i64 immarg, i8 addrspace(3)* nocapture) #0

define linkonce_odr dso_local spir_func void @func() {
store i64 2, i64 addrspace(3)* @WGSharedVar
%1 = bitcast i64 addrspace(3)* @WGSharedVar to i8 addrspace(3)*
%2 = call {}* @llvm.invariant.start.p3i8(i64 8, i8 addrspace(3)* %1)
call void @llvm.invariant.end.p3i8({}* %2, i64 8, i8 addrspace(3)* %1)
ret void
}

attributes #0 = { argmemonly nounwind }

!spirv.ExecutionMode = !{}