mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-30 17:21:10 +00:00
b7b5907b56
Close https://github.com/llvm/llvm-project/issues/56980. This patch tries to introduce a light-weight optimization attribute for coroutines which are guaranteed to only be destroyed after it reached the final suspend. The rationale behind the patch is simple. See the example: ```C++ A foo() { dtor d; co_await something(); dtor d1; co_await something(); dtor d2; co_return 43; } ``` Generally the generated .destroy function may be: ```C++ void foo.destroy(foo.Frame *frame) { switch(frame->suspend_index()) { case 1: frame->d.~dtor(); break; case 2: frame->d.~dtor(); frame->d1.~dtor(); break; case 3: frame->d.~dtor(); frame->d1.~dtor(); frame->d2.~dtor(); break; default: // coroutine completed or haven't started break; } frame->promise.~promise_type(); delete frame; } ``` Since the compiler need to be ready for all the cases that the coroutine may be destroyed in a valid state. However, from the user's perspective, we can understand that certain coroutine types may only be destroyed after it reached to the final suspend point. And we need a method to teach the compiler about this. Then this is the patch. After the compiler recognized that the coroutines can only be destroyed after complete, it can optimize the above example to: ```C++ void foo.destroy(foo.Frame *frame) { frame->promise.~promise_type(); delete frame; } ``` I spent a lot of time experimenting and experiencing this in the downstream. The numbers are really good. In a real-world coroutine-heavy workload, the size of the build dir (including .o files) reduces 14%. And the size of final libraries (excluding the .o files) reduces 8% in Debug mode and 1% in Release mode. |
||
---|---|---|
.. | ||
analyzer | ||
CommandGuide | ||
DataFlowAnalysisIntroImages | ||
HLSL | ||
tools | ||
AddressSanitizer.rst | ||
AMDGPUSupport.rst | ||
APINotes.rst | ||
AutomaticReferenceCounting.rst | ||
Block-ABI-Apple.rst | ||
BlockLanguageSpec.rst | ||
ClangCheck.rst | ||
ClangFormat.rst | ||
ClangFormatStyleOptions.rst | ||
ClangFormattedStatus.rst | ||
ClangLinkerWrapper.rst | ||
ClangOffloadBundler.rst | ||
ClangOffloadPackager.rst | ||
ClangPlugins.rst | ||
ClangRepl_design.png | ||
ClangRepl.rst | ||
ClangStaticAnalyzer.rst | ||
ClangTools.rst | ||
ClangTransformerTutorial.rst | ||
CMakeLists.txt | ||
CodeOwners.rst | ||
conf.py | ||
ConstantInterpreter.rst | ||
ControlFlowIntegrity.rst | ||
ControlFlowIntegrityDesign.rst | ||
CrossCompilation.rst | ||
DataFlowAnalysisIntro.md | ||
DataFlowSanitizer.rst | ||
DataFlowSanitizerDesign.rst | ||
DebuggingCoroutines.rst | ||
doxygen-mainpage.dox | ||
doxygen.cfg.in | ||
DriverArchitecture.png | ||
DriverInternals.rst | ||
ExternalClangExamples.rst | ||
FAQ.rst | ||
HardwareAssistedAddressSanitizerDesign.rst | ||
HIPSupport.rst | ||
HowToSetupToolingForLLVM.rst | ||
index.rst | ||
InternalsManual.rst | ||
IntroductionToTheClangAST.rst | ||
ItaniumMangleAbiTags.rst | ||
JSONCompilationDatabase.rst | ||
LanguageExtensions.rst | ||
LeakSanitizer.rst | ||
LibASTImporter.rst | ||
LibASTMatchers.rst | ||
LibASTMatchersReference.html | ||
LibASTMatchersTutorial.rst | ||
LibClang.rst | ||
LibFormat.rst | ||
LibTooling.rst | ||
LTOVisibility.rst | ||
make.bat | ||
MatrixTypes.rst | ||
MemorySanitizer.rst | ||
MisExpect.rst | ||
Modules.rst | ||
MSVCCompatibility.rst | ||
Multilib.rst | ||
ObjectiveCLiterals.rst | ||
OffloadingDesign.rst | ||
OpenCLSupport.rst | ||
OpenMPSupport.rst | ||
PCHInternals.rst | ||
PCHLayout.graffle | ||
PCHLayout.png | ||
RAVFrontendAction.rst | ||
README.txt | ||
RefactoringEngine.rst | ||
ReleaseNotes.rst | ||
SafeStack.rst | ||
SanitizerCoverage.rst | ||
SanitizerSpecialCaseList.rst | ||
SanitizerStats.rst | ||
ShadowCallStack.rst | ||
SourceBasedCodeCoverage.rst | ||
StandardCPlusPlusModules.rst | ||
SYCLSupport.rst | ||
ThinLTO.rst | ||
ThreadSafetyAnalysis.rst | ||
ThreadSanitizer.rst | ||
Toolchain.rst | ||
Tooling.rst | ||
UndefinedBehaviorSanitizer.rst | ||
UsersManual.rst |
See llvm/docs/README.txt