- Notifications
You must be signed in to change notification settings - Fork 14.9k
[mlir][spirv] Remove destroyed values from ValueIDMap #164098
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
base: main
Are you sure you want to change the base?
Conversation
When serializing SPIR-V MLIR containing externally linked function with debug enabled, the serialization crashes as `printValueIDMap` tries to print a key value that has been already destroyed. This happen as for externally linked function the body of the function is erased, that causes arguments to be destroyed as well, but the valueIDMap was never updated.
Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be notified. If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it is probably because you do not have write permissions for the repository. In which case you can instead tag reviewers by name in a comment by using If you have received no comments on your PR for a week, you can request a review by "ping"ing the PR by adding a comment “Ping”. The common courtesy "ping" rate is once a week. Please remember that you are asking for valuable time from other developers. If you have further questions, they may be answered by the LLVM GitHub User Guide. You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums. |
@llvm/pr-subscribers-mlir-spirv @llvm/pr-subscribers-mlir Author: Igor Wodiany (IgWod) ChangesWhen serializing SPIR-V MLIR containing externally linked function with debug enabled, the serialization crashes as Full diff: https://github.com/llvm/llvm-project/pull/164098.diff 2 Files Affected:
diff --git a/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp b/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp index e9b180a70bb23..3c2c65bf64ed6 100644 --- a/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp +++ b/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp @@ -311,6 +311,15 @@ LogicalResult Serializer::processFuncOp(spirv::FuncOp op) { op.addEntryBlock(); if (failed(processFuncParameter(op))) return failure(); + + // Erasing the body of the function destroys arguments, so we need to remove + // them from the map to avoid problems when processing invalid values used + // as keys. We have already serialized function arguments so we probably can + // remove them from the map as external function will not have any uses. + for (Value arg : op.getArguments()) + if (valueIDMap.count(arg)) + valueIDMap.erase(arg); + // Don't need to process the added block, there is nothing to process, // the fake body was added just to get the arguments, remove the body, // since it's use is done. diff --git a/mlir/test/Target/SPIRV/function-decorations.mlir b/mlir/test/Target/SPIRV/function-decorations.mlir index ef627145aac3e..6098e42f063a2 100644 --- a/mlir/test/Target/SPIRV/function-decorations.mlir +++ b/mlir/test/Target/SPIRV/function-decorations.mlir @@ -1,4 +1,5 @@ -// RUN: mlir-translate -no-implicit-module -test-spirv-roundtrip -split-input-file -verify-diagnostics %s | FileCheck %s +// RUN: mlir-translate --no-implicit-module --test-spirv-roundtrip --split-input-file %s | FileCheck %s +// RUN: mlir-translate --no-implicit-module --test-spirv-roundtrip --split-input-file --debug %s | FileCheck %s spirv.module Logical GLSL450 requires #spirv.vce<v1.0, [Shader, Linkage], []> { spirv.func @linkage_attr_test_kernel() "DontInline" attributes {} { |
This is from my personal account as I felt like fixing it in my spare time :) (cc @IgWod-IMG) |
|
I've addressed the feedback. Feel free to merge once it passes CI (I don't have permission on this account), otherwise I'll merge Monday morning from my work machine. |
When serializing SPIR-V MLIR containing externally linked function with debug enabled, the serialization crashes as
printValueIDMap
tries to print a key value that has been already destroyed. This happen as for externally linked function the body of the function is erased, that causes arguments to be destroyed as well, but the valueIDMap was never updated.