@@ -784,8 +784,14 @@ extern "C" LLVMRustResult LLVMRustOptimize(
784
784
// the PassBuilder does not create a pipeline.
785
785
std::vector<std::function<void (ModulePassManager &, OptimizationLevel)>>
786
786
PipelineStartEPCallbacks;
787
+ #if LLVM_VERSION_GE(20, 0)
788
+ std::vector<std::function<void (ModulePassManager &, OptimizationLevel,
789
+ ThinOrFullLTOPhase)>>
790
+ OptimizerLastEPCallbacks;
791
+ #else
787
792
std::vector<std::function<void (ModulePassManager &, OptimizationLevel)>>
788
793
OptimizerLastEPCallbacks;
794
+ #endif
789
795
790
796
if (!IsLinkerPluginLTO && SanitizerOptions && SanitizerOptions->SanitizeCFI &&
791
797
!NoPrepopulatePasses) {
@@ -832,7 +838,12 @@ extern "C" LLVMRustResult LLVMRustOptimize(
832
838
SanitizerOptions->SanitizeDataFlowABIList +
833
839
SanitizerOptions->SanitizeDataFlowABIListLen );
834
840
OptimizerLastEPCallbacks.push_back (
841
+ #if LLVM_VERSION_GE(20, 0)
842
+ [ABIListFiles](ModulePassManager &MPM, OptimizationLevel Level,
843
+ ThinOrFullLTOPhase phase) {
844
+ #else
835
845
[ABIListFiles](ModulePassManager &MPM, OptimizationLevel Level) {
846
+ #endif
836
847
MPM.addPass (DataFlowSanitizerPass (ABIListFiles));
837
848
});
838
849
}
@@ -844,23 +855,39 @@ extern "C" LLVMRustResult LLVMRustOptimize(
844
855
/* CompileKernel=*/ false ,
845
856
/* EagerChecks=*/ true );
846
857
OptimizerLastEPCallbacks.push_back (
858
+ #if LLVM_VERSION_GE(20, 0)
859
+ [Options](ModulePassManager &MPM, OptimizationLevel Level,
860
+ ThinOrFullLTOPhase phase) {
861
+ #else
847
862
[Options](ModulePassManager &MPM, OptimizationLevel Level) {
863
+ #endif
848
864
MPM.addPass (MemorySanitizerPass (Options));
849
865
});
850
866
}
851
867
852
868
if (SanitizerOptions->SanitizeThread ) {
853
- OptimizerLastEPCallbacks.push_back ([](ModulePassManager &MPM,
854
- OptimizationLevel Level) {
855
- MPM.addPass (ModuleThreadSanitizerPass ());
856
- MPM.addPass (createModuleToFunctionPassAdaptor (ThreadSanitizerPass ()));
857
- });
869
+ OptimizerLastEPCallbacks.push_back (
870
+ #if LLVM_VERSION_GE(20, 0)
871
+ [](ModulePassManager &MPM, OptimizationLevel Level,
872
+ ThinOrFullLTOPhase phase) {
873
+ #else
874
+ [](ModulePassManager &MPM, OptimizationLevel Level) {
875
+ #endif
876
+ MPM.addPass (ModuleThreadSanitizerPass ());
877
+ MPM.addPass (
878
+ createModuleToFunctionPassAdaptor (ThreadSanitizerPass ()));
879
+ });
858
880
}
859
881
860
882
if (SanitizerOptions->SanitizeAddress ||
861
883
SanitizerOptions->SanitizeKernelAddress ) {
862
884
OptimizerLastEPCallbacks.push_back (
885
+ #if LLVM_VERSION_GE(20, 0)
886
+ [SanitizerOptions](ModulePassManager &MPM, OptimizationLevel Level,
887
+ ThinOrFullLTOPhase phase) {
888
+ #else
863
889
[SanitizerOptions](ModulePassManager &MPM, OptimizationLevel Level) {
890
+ #endif
864
891
auto CompileKernel = SanitizerOptions->SanitizeKernelAddress ;
865
892
AddressSanitizerOptions opts = AddressSanitizerOptions{
866
893
CompileKernel,
@@ -874,7 +901,12 @@ extern "C" LLVMRustResult LLVMRustOptimize(
874
901
}
875
902
if (SanitizerOptions->SanitizeHWAddress ) {
876
903
OptimizerLastEPCallbacks.push_back (
904
+ #if LLVM_VERSION_GE(20, 0)
905
+ [SanitizerOptions](ModulePassManager &MPM, OptimizationLevel Level,
906
+ ThinOrFullLTOPhase phase) {
907
+ #else
877
908
[SanitizerOptions](ModulePassManager &MPM, OptimizationLevel Level) {
909
+ #endif
878
910
HWAddressSanitizerOptions opts (
879
911
/* CompileKernel=*/ false ,
880
912
SanitizerOptions->SanitizeHWAddressRecover ,
@@ -935,7 +967,11 @@ extern "C" LLVMRustResult LLVMRustOptimize(
935
967
for (const auto &C : PipelineStartEPCallbacks)
936
968
C (MPM, OptLevel);
937
969
for (const auto &C : OptimizerLastEPCallbacks)
970
+ #if LLVM_VERSION_GE(20, 0)
971
+ C (MPM, OptLevel, ThinOrFullLTOPhase::None);
972
+ #else
938
973
C (MPM, OptLevel);
974
+ #endif
939
975
}
940
976
941
977
if (ExtraPassesLen) {
0 commit comments