Esempio n. 1
0
 public static extern void AddTypeBasedAliasAnalysisPass(LLVMPassManagerRef @PM);
Esempio n. 2
0
 public static extern void AddStripSymbolsPass(LLVMPassManagerRef @PM);
Esempio n. 3
0
 public static extern void AddTargetData(LLVMTargetDataRef @TD, LLVMPassManagerRef @PM);
Esempio n. 4
0
 public static extern void AddScopedNoAliasAAPass(LLVMPassManagerRef @PM);
Esempio n. 5
0
 public static extern void AddSLPVectorizePass(LLVMPassManagerRef @PM);
Esempio n. 6
0
 public static extern void PassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef @PMB, LLVMPassManagerRef @PM);
Esempio n. 7
0
 public PassManager(LLVMModuleRef module)
 {
     this.instance = LLVM.CreateFunctionPassManagerForModule(module);
 }
 public void PopulateModulePassManager(LLVMPassManagerRef PM) => LLVM.PassManagerBuilderPopulateModulePassManager(this, PM);
 public void PopulateLTOPassManager(LLVMPassManagerRef PM, int Internalize, int RunInliner)
 {
     LLVM.PassManagerBuilderPopulateLTOPassManager(this, PM, Internalize, RunInliner);
 }
Esempio n. 10
0
 public static extern void AddDataFlowSanitizerPass(LLVMPassManagerRef @PM);
 public void PopulateFunctionPassManager(LLVMPassManagerRef PM) => LLVM.PassManagerBuilderPopulateFunctionPassManager(this, PM);
Esempio n. 12
0
 public static extern void AddMemorySanitizerPass(LLVMPassManagerRef @PM);
Esempio n. 13
0
 public static extern void AddThreadSanitizerPass(LLVMPassManagerRef @PM);
Esempio n. 14
0
 public static extern void AddAddressSanitizerModulePass(LLVMPassManagerRef @PM);
Esempio n. 15
0
 public static extern void DisposePassManager(LLVMPassManagerRef @PM);
Esempio n. 16
0
 public static extern void AddLoopUnrollPass(LLVMPassManagerRef @PM);
Esempio n. 17
0
 public static extern void PassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef @PMB, LLVMPassManagerRef @PM);
Esempio n. 18
0
 public static extern void AddLowerExpectIntrinsicPass(LLVMPassManagerRef @PM);
Esempio n. 19
0
 public static extern LLVMBool RunPassManager(LLVMPassManagerRef @PM, LLVMModuleRef @M);
Esempio n. 20
0
 public static extern void AddLowerSwitchPass(LLVMPassManagerRef @PM);
Esempio n. 21
0
 public static extern void AddAddressSanitizerFunctionPass(LLVMPassManagerRef @PM);
Esempio n. 22
0
 public static extern void AddMemCpyOptPass(LLVMPassManagerRef @PM);
Esempio n. 23
0
 public static extern void AddSimplifyLibCallsPass(LLVMPassManagerRef @PM);
Esempio n. 24
0
 public static extern void AddMergedLoadStoreMotionPass(LLVMPassManagerRef @PM);
Esempio n. 25
0
 public static extern void AddStripDeadPrototypesPass(LLVMPassManagerRef @PM);
Esempio n. 26
0
 public static extern void AddPartiallyInlineLibCallsPass(LLVMPassManagerRef @PM);
Esempio n. 27
0
 public static extern void AddTailCallEliminationPass(LLVMPassManagerRef @PM);
Esempio n. 28
0
 public static extern void AddPromoteMemoryToRegisterPass(LLVMPassManagerRef @PM);
Esempio n. 29
0
 public static extern void AddTargetLibraryInfo(LLVMTargetLibraryInfoRef @TLI, LLVMPassManagerRef @PM);
Esempio n. 30
0
 public static extern void AddPruneEHPass(LLVMPassManagerRef @PM);
Esempio n. 31
0
 public static extern void AddVerifierPass(LLVMPassManagerRef @PM);
Esempio n. 32
0
 public static extern void AddReassociatePass(LLVMPassManagerRef @PM);
Esempio n. 33
0
 public static extern LLVMBool InitializeFunctionPassManager(LLVMPassManagerRef @FPM);
Esempio n. 34
0
 public static extern void AddScalarizerPass(LLVMPassManagerRef @PM);
Esempio n. 35
0
 public static extern void PassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef @PMB, LLVMPassManagerRef @PM, LLVMBool @Internalize, LLVMBool @RunInliner);
Esempio n. 36
0
 public static extern void AddScalarReplAggregatesPassSSA(LLVMPassManagerRef @PM);
Esempio n. 37
0
 public static extern LLVMBool RunFunctionPassManager(LLVMPassManagerRef @FPM, LLVMValueRef @F);
Esempio n. 38
0
 public static extern void AddScalarReplAggregatesPassWithThreshold(LLVMPassManagerRef @PM, int @Threshold);
Esempio n. 39
0
 public PassManager()
 {
     this.instance = LLVM.CreatePassManager();
 }
Esempio n. 40
0
 public static extern void AddSCCPPass(LLVMPassManagerRef @PM);
Esempio n. 41
0
 public PassManager(LLVMModuleProviderRef moduleProvider)
 {
     this.instance = LLVM.CreateFunctionPassManager(moduleProvider);
 }
Esempio n. 42
0
 public static extern void AddInstructionCombiningPass(LLVMPassManagerRef PM);