-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[AArch64] Add AArch64PassRegistry.def #85215
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
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
//===- TargetPassRegistry.inc - Registry of passes --------------*- 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 is used as the registry of passes in registerPassBuilderCallbacks | ||
// Just put the following lines in the body of registerPassBuilderCallbacks: | ||
// #define GET_PASS_REGISTRY "<Target>PassRegistry.def" | ||
// #include "llvm/Passes/TargetPassRegistry.inc" | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// NOTE: NO INCLUDE GUARD DESIRED! | ||
|
||
#ifdef GET_PASS_REGISTRY | ||
|
||
#if !__has_include(GET_PASS_REGISTRY) | ||
#error "must provide <Target>PassRegistry.def" | ||
#endif | ||
|
||
if (PopulateClassToPassNames) { | ||
auto *PIC = PB.getPassInstrumentationCallbacks(); | ||
|
||
#define ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) \ | ||
PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME); | ||
#define ADD_CLASS_PASS_TO_PASS_NAME_WITH_PARAMS(NAME, CLASS) \ | ||
PIC->addClassToPassName(CLASS, NAME); | ||
|
||
#define MODULE_ANALYSIS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define MODULE_PASS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define MODULE_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME_WITH_PARAMS(NAME, CLASS) | ||
#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define FUNCTION_ALIAS_ANALYSIS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define FUNCTION_PASS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME_WITH_PARAMS(NAME, CLASS) | ||
#define LOOP_ANALYSIS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define LOOP_PASS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define MACHINE_FUNCTION_PASS(NAME, CREATE_PASS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME(NAME, CREATE_PASS) | ||
#define MACHINE_FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, \ | ||
PARAMS) \ | ||
ADD_CLASS_PASS_TO_PASS_NAME_WITH_PARAMS(NAME, CLASS) | ||
#include GET_PASS_REGISTRY | ||
#undef MODULE_ANALYSIS | ||
#undef MODULE_PASS | ||
#undef MODULE_PASS_WITH_PARAMS | ||
#undef FUNCTION_ANALYSIS | ||
#undef FUNCTION_ALIAS_ANALYSIS | ||
#undef FUNCTION_PASS | ||
#undef FUNCTION_PASS_WITH_PARAMS | ||
#undef LOOP_ANALYSIS | ||
#undef LOOP_PASS | ||
#undef MACHINE_FUNCTION_ANALYSIS | ||
#undef MACHINE_FUNCTION_PASS | ||
#undef MACHINE_FUNCTION_PASS_WITH_PARAMS | ||
#undef ADD_CLASS_PASS_TO_PASS_NAME | ||
#undef ADD_CLASS_PASS_TO_PASS_NAME_WITH_PARAMS | ||
} | ||
|
||
#define ADD_PASS(NAME, CREATE_PASS) \ | ||
if (Name == NAME) { \ | ||
PM.addPass(CREATE_PASS); \ | ||
return true; \ | ||
} | ||
|
||
#define ADD_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER) \ | ||
if (PassBuilder::checkParametrizedPassName(Name, NAME)) { \ | ||
auto Params = PassBuilder::parsePassParameters(PARSER, Name, NAME); \ | ||
if (!Params) \ | ||
return false; \ | ||
PM.addPass(CREATE_PASS(Params.get())); \ | ||
return true; \ | ||
} | ||
|
||
PB.registerPipelineParsingCallback([=](StringRef Name, ModulePassManager &PM, | ||
ArrayRef<PassBuilder::PipelineElement>) { | ||
#define MODULE_PASS(NAME, CREATE_PASS) ADD_PASS(NAME, CREATE_PASS) | ||
#include GET_PASS_REGISTRY | ||
#undef MODULE_PASS | ||
return false; | ||
}); | ||
|
||
PB.registerPipelineParsingCallback([=](StringRef Name, ModulePassManager &PM, | ||
ArrayRef<PassBuilder::PipelineElement>) { | ||
#define MODULE_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \ | ||
ADD_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER) | ||
#include GET_PASS_REGISTRY | ||
#undef MODULE_PASS_WITH_PARAMS | ||
return false; | ||
}); | ||
|
||
PB.registerPipelineParsingCallback([=](StringRef Name, FunctionPassManager &PM, | ||
ArrayRef<PassBuilder::PipelineElement>) { | ||
#define FUNCTION_PASS(NAME, CREATE_PASS) ADD_PASS(NAME, CREATE_PASS) | ||
#include GET_PASS_REGISTRY | ||
#undef FUNCTION_PASS | ||
return false; | ||
}); | ||
|
||
PB.registerPipelineParsingCallback([=](StringRef Name, FunctionPassManager &PM, | ||
ArrayRef<PassBuilder::PipelineElement>) { | ||
#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \ | ||
ADD_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER) | ||
#include GET_PASS_REGISTRY | ||
#undef FUNCTION_PASS_WITH_PARAMS | ||
return false; | ||
}); | ||
|
||
PB.registerPipelineParsingCallback([=](StringRef Name, LoopPassManager &PM, | ||
ArrayRef<PassBuilder::PipelineElement>) { | ||
#define LOOP_PASS(NAME, CREATE_PASS) ADD_PASS(NAME, CREATE_PASS) | ||
#include GET_PASS_REGISTRY | ||
return false; | ||
}); | ||
|
||
PB.registerPipelineParsingCallback([=](StringRef Name, | ||
MachineFunctionPassManager &PM, | ||
ArrayRef<PassBuilder::PipelineElement>) { | ||
#define MACHINE_FUNCTION_PASS(NAME, CREATE_PASS) ADD_PASS(NAME, CREATE_PASS) | ||
#include GET_PASS_REGISTRY | ||
return false; | ||
}); | ||
|
||
PB.registerPipelineParsingCallback([=](StringRef Name, FunctionPassManager &PM, | ||
ArrayRef<PassBuilder::PipelineElement>) { | ||
#define MACHINE_FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, \ | ||
PARAMS) \ | ||
ADD_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER) | ||
#include GET_PASS_REGISTRY | ||
#undef MACHINE_FUNCTION_PASS_WITH_PARAMS | ||
return false; | ||
}); | ||
|
||
#undef ADD_PASS | ||
#undef ADD_PASS_WITH_PARAMS | ||
|
||
PB.registerAnalysisRegistrationCallback([](ModuleAnalysisManager &AM) { | ||
#define MODULE_ANALYSIS(NAME, CREATE_PASS) \ | ||
AM.registerPass([&] { return CREATE_PASS; }); | ||
#include GET_PASS_REGISTRY | ||
#undef MODULE_ANALYSIS | ||
}); | ||
|
||
PB.registerAnalysisRegistrationCallback([](FunctionAnalysisManager &AM) { | ||
#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \ | ||
AM.registerPass([&] { return CREATE_PASS; }); | ||
#include GET_PASS_REGISTRY | ||
#undef FUNCTION_ANALYSIS | ||
}); | ||
|
||
PB.registerParseAACallback([](StringRef Name, AAManager &AM) { | ||
#define FUNCTION_ALIAS_ANALYSIS(NAME, CREATE_PASS) \ | ||
if (Name == NAME) { \ | ||
AM.registerFunctionAnalysis< \ | ||
std::remove_reference_t<decltype(CREATE_PASS)>>(); \ | ||
return true; \ | ||
} | ||
#include GET_PASS_REGISTRY | ||
#undef FUNCTION_ALIAS_ANALYSIS | ||
return false; | ||
}); | ||
|
||
PB.registerAnalysisRegistrationCallback([](LoopAnalysisManager &AM) { | ||
#define LOOP_ANALYSIS(NAME, CREATE_PASS) \ | ||
AM.registerPass([&] { return CREATE_PASS; }); | ||
#include GET_PASS_REGISTRY | ||
#undef LOOP_ANALYSIS | ||
}); | ||
|
||
PB.registerAnalysisRegistrationCallback([](MachineFunctionAnalysisManager &AM) { | ||
#define MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \ | ||
AM.registerPass([&] { return CREATE_PASS; }); | ||
#include GET_PASS_REGISTRY | ||
#undef MACHINE_FUNCTION_ANALYSIS | ||
}); | ||
|
||
#undef GET_PASS_REGISTRY | ||
#endif // GET_PASS_REGISTRY |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
//===- AArch64PassRegistry.def - Registry of AArch64 passes -----*- 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 is used as the registry of passes that are part of the | ||
// AArch64 backend. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// NOTE: NO INCLUDE GUARD DESIRED! | ||
|
||
#ifndef LOOP_PASS | ||
#define LOOP_PASS(NAME, CREATE_PASS) | ||
#endif | ||
LOOP_PASS("aarch64-lit", AArch64LoopIdiomTransformPass()) | ||
#undef LOOP_PASS |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
Could be
So
MODULE_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS)
->MODULE_PASS_WITH_PARAMS(NAME, CREATE_PASS, PARSER, PARAMS)