LLVM  8.0.1
Initialization.h
Go to the documentation of this file.
1 /*===-- llvm-c/Initialization.h - Initialization C Interface ------*- C -*-===*\
2 |* *|
3 |* The LLVM Compiler Infrastructure *|
4 |* *|
5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *|
7 |* *|
8 |*===----------------------------------------------------------------------===*|
9 |* *|
10 |* This header declares the C interface to LLVM initialization routines, *|
11 |* which must be called before you can use the functionality provided by *|
12 |* the corresponding LLVM library. *|
13 |* *|
14 \*===----------------------------------------------------------------------===*/
15 
16 #ifndef LLVM_C_INITIALIZATION_H
17 #define LLVM_C_INITIALIZATION_H
18 
19 #include "llvm-c/Types.h"
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 /**
26  * @defgroup LLVMCInitialization Initialization Routines
27  * @ingroup LLVMC
28  *
29  * This module contains routines used to initialize the LLVM system.
30  *
31  * @{
32  */
33 
47 
48 /**
49  * @}
50  */
51 
52 #ifdef __cplusplus
53 }
54 #endif
55 
56 #endif
void LLVMInitializeInstCombine(LLVMPassRegistryRef R)
struct LLVMOpaquePassRegistry * LLVMPassRegistryRef
Definition: Types.h:131
void LLVMInitializeAnalysis(LLVMPassRegistryRef R)
Definition: Analysis.cpp:90
void LLVMInitializeVectorization(LLVMPassRegistryRef R)
Definition: Vectorize.cpp:33
void LLVMInitializeAggressiveInstCombiner(LLVMPassRegistryRef R)
void LLVMInitializeCore(LLVMPassRegistryRef R)
Definition: Core.cpp:56
void LLVMInitializeTransformUtils(LLVMPassRegistryRef R)
LLVMInitializeTransformUtils - C binding for initializeTransformUtilsPasses.
Definition: Utils.cpp:46
void LLVMInitializeCodeGen(LLVMPassRegistryRef R)
Definition: CodeGen.cpp:114
void LLVMInitializeIPO(LLVMPassRegistryRef R)
Definition: IPO.cpp:65
void LLVMInitializeScalarOpts(LLVMPassRegistryRef R)
Definition: Scalar.cpp:117
void LLVMInitializeInstrumentation(LLVMPassRegistryRef R)
LLVMInitializeInstrumentation - C binding for initializeInstrumentation.
void LLVMInitializeTarget(LLVMPassRegistryRef R)
Definition: Target.cpp:44
void LLVMInitializeIPA(LLVMPassRegistryRef R)
Definition: Analysis.cpp:94
void LLVMInitializeObjCARCOpts(LLVMPassRegistryRef R)
Definition: ObjCARC.cpp:38