@@ -250,6 +250,7 @@ pub struct ModuleConfig {
250
250
no_integrated_as : bool ,
251
251
embed_bitcode : bool ,
252
252
embed_bitcode_marker : bool ,
253
+ pub polly : bool ,
253
254
}
254
255
255
256
impl ModuleConfig {
@@ -281,7 +282,8 @@ impl ModuleConfig {
281
282
vectorize_loop : false ,
282
283
vectorize_slp : false ,
283
284
merge_functions : false ,
284
- inline_threshold : None
285
+ inline_threshold : None ,
286
+ polly : false ,
285
287
}
286
288
}
287
289
@@ -319,6 +321,8 @@ impl ModuleConfig {
319
321
320
322
self . merge_functions = sess. opts . optimize == config:: OptLevel :: Default ||
321
323
sess. opts . optimize == config:: OptLevel :: Aggressive ;
324
+ self . polly = sess. opts . debugging_opts . polly && !self . no_prepopulate_passes &&
325
+ !sess. target . target . options . is_like_emscripten ;
322
326
}
323
327
}
324
328
@@ -546,8 +550,8 @@ unsafe fn optimize(cgcx: &CodegenContext,
546
550
547
551
if !config. no_verify { assert ! ( addpass( "verify" ) ) ; }
548
552
if !config. no_prepopulate_passes {
549
- llvm:: LLVMRustAddAnalysisPasses ( tm, fpm, llmod) ;
550
- llvm:: LLVMRustAddAnalysisPasses ( tm, mpm, llmod) ;
553
+ llvm:: LLVMRustAddAnalysisPasses ( tm, fpm, llmod, config . polly ) ;
554
+ llvm:: LLVMRustAddAnalysisPasses ( tm, mpm, llmod, config . polly ) ;
551
555
let opt_level = config. opt_level . unwrap_or ( llvm:: CodeGenOptLevel :: None ) ;
552
556
with_llvm_pmb ( llmod, & config, opt_level, & mut |b| {
553
557
llvm:: LLVMPassManagerBuilderPopulateFunctionPassManager ( b, fpm) ;
@@ -645,11 +649,12 @@ unsafe fn codegen(cgcx: &CodegenContext,
645
649
unsafe fn with_codegen < F , R > ( tm : TargetMachineRef ,
646
650
llmod : ModuleRef ,
647
651
no_builtins : bool ,
652
+ polly : bool ,
648
653
f : F ) -> R
649
654
where F : FnOnce ( PassManagerRef ) -> R ,
650
655
{
651
656
let cpm = llvm:: LLVMCreatePassManager ( ) ;
652
- llvm:: LLVMRustAddAnalysisPasses ( tm, cpm, llmod) ;
657
+ llvm:: LLVMRustAddAnalysisPasses ( tm, cpm, llmod, polly ) ;
653
658
llvm:: LLVMRustAddLibraryInfo ( cpm, llmod, no_builtins) ;
654
659
f ( cpm)
655
660
}
@@ -744,7 +749,8 @@ unsafe fn codegen(cgcx: &CodegenContext,
744
749
cursor. position ( ) as size_t
745
750
}
746
751
747
- with_codegen ( tm, llmod, config. no_builtins , |cpm| {
752
+ with_codegen ( tm, llmod, config. no_builtins , config. polly ,
753
+ |cpm| {
748
754
llvm:: LLVMRustPrintModule ( cpm, llmod, out. as_ptr ( ) , demangle_callback) ;
749
755
llvm:: LLVMDisposePassManager ( cpm) ;
750
756
} ) ;
@@ -762,7 +768,8 @@ unsafe fn codegen(cgcx: &CodegenContext,
762
768
} else {
763
769
llmod
764
770
} ;
765
- with_codegen ( tm, llmod, config. no_builtins , |cpm| {
771
+ with_codegen ( tm, llmod, config. no_builtins , config. polly ,
772
+ |cpm| {
766
773
write_output_file ( diag_handler, tm, cpm, llmod, & path,
767
774
llvm:: FileType :: AssemblyFile )
768
775
} ) ?;
@@ -773,7 +780,8 @@ unsafe fn codegen(cgcx: &CodegenContext,
773
780
}
774
781
775
782
if write_obj {
776
- with_codegen ( tm, llmod, config. no_builtins , |cpm| {
783
+ with_codegen ( tm, llmod, config. no_builtins , config. polly ,
784
+ |cpm| {
777
785
write_output_file ( diag_handler, tm, cpm, llmod, & obj_out,
778
786
llvm:: FileType :: ObjectFile )
779
787
} ) ?;
0 commit comments