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