-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[NFC][Cloning] Remove now unused FindDebugInfoToIdentityMap #129151
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
Merged
artempyanykh
merged 1 commit into
main
from
users/artempyanykh/fast-coro-upstream-part2-take2/9
Mar 15, 2025
Merged
[NFC][Cloning] Remove now unused FindDebugInfoToIdentityMap #129151
artempyanykh
merged 1 commit into
main
from
users/artempyanykh/fast-coro-upstream-part2-take2/9
Mar 15, 2025
Conversation
This file contains hidden or 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
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
23375fb
to
d0782e5
Compare
79e2236
to
8522d72
Compare
This was referenced Feb 27, 2025
Merged
@llvm/pr-subscribers-coroutines @llvm/pr-subscribers-llvm-transforms Author: Artem Pianykh (artempyanykh) ChangesStacked PRs:
[NFC][Cloning] Remove now unused FindDebugInfoToIdentityMapSummary: Test Plan: Full diff: https://github.com/llvm/llvm-project/pull/129151.diff 2 Files Affected:
diff --git a/llvm/include/llvm/Transforms/Utils/Cloning.h b/llvm/include/llvm/Transforms/Utils/Cloning.h
index 2252dda0b9aad..ae00c16e7eada 100644
--- a/llvm/include/llvm/Transforms/Utils/Cloning.h
+++ b/llvm/include/llvm/Transforms/Utils/Cloning.h
@@ -244,25 +244,6 @@ DISubprogram *CollectDebugInfoForCloning(const Function &F,
CloneFunctionChangeType Changes,
DebugInfoFinder &DIFinder);
-/// Based on \p Changes and \p DIFinder return debug info that needs to be
-/// identity mapped during Metadata cloning.
-///
-/// NOTE: Such \a MetadataSetTy can be used by \a CloneFunction* to directly
-/// specify metadata that should be identity mapped (and hence not cloned). The
-/// metadata will be identity mapped in \a ValueToValueMapTy on first use. There
-/// are several reasons for doing it this way rather than eagerly identity
-/// mapping metadata nodes in a \a ValueMap:
-/// 1. Mapping metadata is not cheap, particularly because of tracking.
-/// 2. When cloning a Function we identity map lots of global module-level
-/// metadata to avoid cloning it, while only a fraction of it is actually
-/// used by the function. Mapping on first use is a lot faster for modules
-/// with meaningful amount of debug info.
-/// 3. Eagerly identity mapping metadata makes it harder to cache module-level
-/// data (e.g. a set of metadata nodes in a \a DICompileUnit).
-MetadataSetTy FindDebugInfoToIdentityMap(CloneFunctionChangeType Changes,
- DebugInfoFinder &DIFinder,
- DISubprogram *SPClonedWithinModule);
-
/// This class captures the data input to the InlineFunction call, and records
/// the auxiliary results produced by it.
class InlineFunctionInfo {
diff --git a/llvm/lib/Transforms/Utils/CloneFunction.cpp b/llvm/lib/Transforms/Utils/CloneFunction.cpp
index 17c14c09082b0..11033aeec7dda 100644
--- a/llvm/lib/Transforms/Utils/CloneFunction.cpp
+++ b/llvm/lib/Transforms/Utils/CloneFunction.cpp
@@ -189,40 +189,6 @@ DISubprogram *llvm::CollectDebugInfoForCloning(const Function &F,
return SPClonedWithinModule;
}
-MetadataSetTy
-llvm::FindDebugInfoToIdentityMap(CloneFunctionChangeType Changes,
- DebugInfoFinder &DIFinder,
- DISubprogram *SPClonedWithinModule) {
- if (Changes >= CloneFunctionChangeType::DifferentModule)
- return {};
-
- if (DIFinder.subprogram_count() == 0)
- assert(!SPClonedWithinModule &&
- "Subprogram should be in DIFinder->subprogram_count()...");
-
- MetadataSetTy MD;
-
- // Avoid cloning types, compile units, and (other) subprograms.
- for (DISubprogram *ISP : DIFinder.subprograms())
- if (ISP != SPClonedWithinModule)
- MD.insert(ISP);
-
- // If a subprogram isn't going to be cloned skip its lexical blocks as well.
- for (DIScope *S : DIFinder.scopes()) {
- auto *LScope = dyn_cast<DILocalScope>(S);
- if (LScope && LScope->getSubprogram() != SPClonedWithinModule)
- MD.insert(S);
- }
-
- for (DICompileUnit *CU : DIFinder.compile_units())
- MD.insert(CU);
-
- for (DIType *Type : DIFinder.types())
- MD.insert(Type);
-
- return MD;
-}
-
void llvm::CloneFunctionMetadataInto(Function &NewFunc, const Function &OldFunc,
ValueToValueMapTy &VMap,
RemapFlags RemapFlag,
|
jollaitbot
pushed a commit
to sailfishos-mirror/llvm-project
that referenced
this pull request
Feb 28, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: llvm/llvm-project#129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
felipepiovezan
approved these changes
Mar 4, 2025
d0782e5
to
2146d14
Compare
2146d14
to
0ca9397
Compare
e0ef90d
to
d16ea4b
Compare
artempyanykh
added a commit
that referenced
this pull request
Mar 9, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
0ca9397
to
3b18ff8
Compare
d16ea4b
to
b85266b
Compare
artempyanykh
added a commit
that referenced
this pull request
Mar 9, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
3b18ff8
to
7c2cbfc
Compare
b85266b
to
0febf8c
Compare
artempyanykh
added a commit
that referenced
this pull request
Mar 9, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
7c2cbfc
to
8b042ee
Compare
0febf8c
to
d0c5ddc
Compare
artempyanykh
added a commit
that referenced
this pull request
Mar 12, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
8b042ee
to
1327301
Compare
d0c5ddc
to
4694b03
Compare
artempyanykh
added a commit
that referenced
this pull request
Mar 12, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
1327301
to
8e94559
Compare
8e94559
to
a415b77
Compare
jollaitbot
pushed a commit
to sailfishos-mirror/llvm-project
that referenced
this pull request
Mar 13, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: llvm/llvm-project#129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
08707d6
to
ebdc52c
Compare
artempyanykh
added a commit
that referenced
this pull request
Mar 13, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
a415b77
to
ddb729c
Compare
ddb729c
to
18be509
Compare
2221ceb
to
5038e78
Compare
artempyanykh
added a commit
that referenced
this pull request
Mar 14, 2025
Summary: This function is no longer needed. Test Plan: ninja check-llvm-unit stack-info: PR: #129151, branch: users/artempyanykh/fast-coro-upstream-part2-take2/9
18be509
to
8da28de
Compare
Base automatically changed from
users/artempyanykh/fast-coro-upstream-part2-take2/8
to
main
March 14, 2025 19:33
8da28de
to
a597f7e
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Stacked PRs:
[NFC][Cloning] Remove now unused FindDebugInfoToIdentityMap
Summary:
This function is no longer needed.
Test Plan:
ninja check-llvm-unit