-
Notifications
You must be signed in to change notification settings - Fork 766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DeviceSanitizer] Move isUnsupportedSPIRAccess to SPIRVSanitizerCommonUtils.cpp. #17597
Open
haonanya1
wants to merge
5
commits into
intel:sycl
Choose a base branch
from
haonanya1:backport-ASan-fix
base: sycl
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7aeb317
[DeviceSanitizer] Move isUnsupportedSPIRAccess to SanitizerCommonUtil…
haonanya1 7cde3f5
Remove unused var
haonanya1 39a294c
Update lit
haonanya1 e931921
Change file name
haonanya1 6e982c2
Remove SPIRVSanitizerCommonUtils namespace
haonanya1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
llvm/include/llvm/Transforms/Instrumentation/SPIRVSanitizerCommonUtils.h
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,31 @@ | ||
//===- SPIRVSanitizerCommonUtils.h - Commnon utils --------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This file declares common infrastructure for SPIRV Sanitizer. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
#ifndef LLVM_TRANSFORMS_INSTRUMENTATION_SPIRVSANITIZERCOMMONUTILS_H | ||
#define LLVM_TRANSFORMS_INSTRUMENTATION_SPIRVSANITIZERCOMMONUTILS_H | ||
|
||
#include "llvm/IR/DerivedTypes.h" | ||
#include "llvm/IR/Type.h" | ||
#include "llvm/IR/Value.h" | ||
|
||
namespace llvm { | ||
// Spir memory address space | ||
constexpr unsigned kSpirOffloadPrivateAS = 0; | ||
constexpr unsigned kSpirOffloadGlobalAS = 1; | ||
constexpr unsigned kSpirOffloadConstantAS = 2; | ||
constexpr unsigned kSpirOffloadLocalAS = 3; | ||
constexpr unsigned kSpirOffloadGenericAS = 4; | ||
|
||
TargetExtType *getTargetExtType(Type *Ty); | ||
bool isJointMatrixAccess(Value *V); | ||
} // namespace llvm | ||
|
||
#endif // LLVM_TRANSFORMS_INSTRUMENTATION_SPIRVSANITIZERCOMMONUTILS_H |
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
61 changes: 61 additions & 0 deletions
61
llvm/lib/Transforms/Instrumentation/SPIRVSanitizerCommonUtils.cpp
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,61 @@ | ||
//===- SPIRVSanitizerCommonUtils.cpp- SPIRV Sanitizer commnon utils ------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This file defines common infrastructure for SPIRV Sanitizer. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "llvm/Transforms/Instrumentation/SPIRVSanitizerCommonUtils.h" | ||
#include "llvm/IR/Instructions.h" | ||
|
||
using namespace llvm; | ||
|
||
namespace llvm { | ||
TargetExtType *getTargetExtType(Type *Ty) { | ||
if (auto *TargetTy = dyn_cast<TargetExtType>(Ty)) | ||
return TargetTy; | ||
|
||
if (Ty->isVectorTy()) | ||
return getTargetExtType(Ty->getScalarType()); | ||
|
||
if (Ty->isArrayTy()) | ||
return getTargetExtType(Ty->getArrayElementType()); | ||
|
||
if (auto *STy = dyn_cast<StructType>(Ty)) { | ||
for (unsigned int i = 0; i < STy->getNumElements(); i++) | ||
if (auto *TargetTy = getTargetExtType(STy->getElementType(i))) | ||
return TargetTy; | ||
return nullptr; | ||
} | ||
|
||
return nullptr; | ||
} | ||
|
||
// Skip pointer operand that is sycl joint matrix access since it isn't from | ||
// user code, e.g. %call: | ||
// clang-format off | ||
// %a = alloca %"struct.sycl::_V1::ext::oneapi::experimental::matrix::joint_matrix", align 8 | ||
// %0 = getelementptr inbounds %"struct.sycl::_V1::ext::oneapi::experimental::matrix::joint_matrix", ptr %a, i64 0, i32 0 | ||
// %call = call spir_func ptr | ||
// @_Z19__spirv_AccessChainIfN4sycl3_V13ext6oneapi12experimental6matrix9precision4tf32ELm8ELm8ELN5__spv9MatrixUseE0ELNS8_5Scope4FlagE3EEPT_PPNS8_28__spirv_CooperativeMatrixKHRIT0_XT4_EXT1_EXT2_EXT3_EEEm(ptr %0, i64 0) | ||
// %1 = load float, ptr %call, align 4 | ||
// store float %1, ptr %call, align 4 | ||
// clang-format on | ||
bool isJointMatrixAccess(Value *V) { | ||
auto *ActualV = V->stripInBoundsOffsets(); | ||
if (auto *CI = dyn_cast<CallInst>(ActualV)) { | ||
for (Value *Op : CI->args()) { | ||
if (auto *AI = dyn_cast<AllocaInst>(Op->stripInBoundsOffsets())) | ||
if (auto *TargetTy = getTargetExtType(AI->getAllocatedType())) | ||
return TargetTy->getName().starts_with("spirv.") && | ||
TargetTy->getName().contains("Matrix"); | ||
} | ||
} | ||
return false; | ||
} | ||
} // namespace llvm |
25 changes: 25 additions & 0 deletions
25
llvm/test/Instrumentation/MemorySanitizer/SPIRV/ignore_target_ext_type.ll
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,25 @@ | ||
; RUN: opt < %s -passes=msan -msan-instrumentation-with-call-threshold=0 -msan-eager-checks=1 -msan-spir-privates=0 -S | FileCheck %s | ||
|
||
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64-G1" | ||
target triple = "spir64-unknown-unknown" | ||
|
||
%"class.sycl::_V1::ext::oneapi::bfloat16" = type { i16 } | ||
%"struct.sycl::_V1::ext::oneapi::experimental::matrix::joint_matrix" = type { target("spirv.CooperativeMatrixKHR", i16, 3, 16, 32, 0) } | ||
|
||
; CHECK-LABEL: @test | ||
; CHECK-NOT: call i64 @__msan_get_shadow | ||
declare dso_local spir_func noundef ptr addrspace(4) @_Z19__spirv_AccessChainIN4sycl3_V13ext6oneapi8bfloat16ES4_Lm16ELm32ELN5__spv9MatrixUseE0ELNS5_5Scope4FlagE3EEPT_PPNS5_28__spirv_CooperativeMatrixKHRIT0_XT4_EXT1_EXT2_EXT3_EEEm(ptr addrspace(4) noundef, i64 noundef) | ||
|
||
define weak_odr dso_local spir_kernel void @test() { | ||
entry: | ||
%sub_a.i = alloca %"struct.sycl::_V1::ext::oneapi::experimental::matrix::joint_matrix", align 8 | ||
%element.i = alloca %"class.sycl::_V1::ext::oneapi::bfloat16", align 2 | ||
%0 = getelementptr inbounds { i16 }, ptr %element.i, i64 0, i32 0 | ||
%spvm.i = getelementptr inbounds %"struct.sycl::_V1::ext::oneapi::experimental::matrix::joint_matrix", ptr %sub_a.i, i64 0, i32 0 | ||
%addrcast = addrspacecast ptr %spvm.i to ptr addrspace(4) | ||
%call.i67 = call spir_func noundef ptr addrspace(4) @_Z19__spirv_AccessChainIN4sycl3_V13ext6oneapi8bfloat16ES4_Lm16ELm32ELN5__spv9MatrixUseE0ELNS5_5Scope4FlagE3EEPT_PPNS5_28__spirv_CooperativeMatrixKHRIT0_XT4_EXT1_EXT2_EXT3_EEEm(ptr addrspace(4) noundef %addrcast, i64 1) | ||
%gep = getelementptr inbounds nuw { i16 }, ptr addrspace(4) %call.i67, i64 0, i32 0 | ||
%val = load i16, ptr %0, align 2 | ||
store i16 %val, ptr addrspace(4) %gep, align 2 | ||
ret void | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is
sanitize_address
and; CHECK-NOT: call void @asan_load
in this file. Is something wrong here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't check lit, let me double check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, thanks.