71a24819eac9fb04bb2816aea6cea94d43a5cbc6
[oota-llvm.git] / include / llvm-c / Target.h
1 /*===-- llvm-c/Target.h - Target Lib C Iface --------------------*- 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 libLLVMTarget.a, which             */
11 /* implements target information.                                             */
12 /*                                                                            */
13 /* Many exotic languages can interoperate with C code but have a harder time  */
14 /* with C++ due to name mangling. So in addition to C, this interface enables */
15 /* tools written in such languages.                                           */
16 /*                                                                            */
17 /*===----------------------------------------------------------------------===*/
18
19 #ifndef LLVM_C_TARGET_H
20 #define LLVM_C_TARGET_H
21
22 #include "llvm-c/Core.h"
23 #include "llvm/Config/llvm-config.h"
24
25 #if defined(_MSC_VER) && !defined(inline)
26 #define inline __inline
27 #endif
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /**
34  * @defgroup LLVMCTarget Target information
35  * @ingroup LLVMC
36  *
37  * @{
38  */
39
40 enum LLVMByteOrdering { LLVMBigEndian, LLVMLittleEndian };
41
42 typedef struct LLVMOpaqueTargetData *LLVMTargetDataRef;
43 typedef struct LLVMOpaqueTargetLibraryInfotData *LLVMTargetLibraryInfoRef;
44 typedef struct LLVMStructLayout *LLVMStructLayoutRef;
45
46 /* Declare all of the target-initialization functions that are available. */
47 #define LLVM_TARGET(TargetName) \
48   void LLVMInitialize##TargetName##TargetInfo(void);
49 #include "llvm/Config/Targets.def"
50 #undef LLVM_TARGET  /* Explicit undef to make SWIG happier */
51
52 #define LLVM_TARGET(TargetName) void LLVMInitialize##TargetName##Target(void);
53 #include "llvm/Config/Targets.def"
54 #undef LLVM_TARGET  /* Explicit undef to make SWIG happier */
55
56 #define LLVM_TARGET(TargetName) \
57   void LLVMInitialize##TargetName##TargetMC(void);
58 #include "llvm/Config/Targets.def"
59 #undef LLVM_TARGET  /* Explicit undef to make SWIG happier */
60
61 /* Declare all of the available assembly printer initialization functions. */
62 #define LLVM_ASM_PRINTER(TargetName) \
63   void LLVMInitialize##TargetName##AsmPrinter(void);
64 #include "llvm/Config/AsmPrinters.def"
65 #undef LLVM_ASM_PRINTER  /* Explicit undef to make SWIG happier */
66
67 /* Declare all of the available assembly parser initialization functions. */
68 #define LLVM_ASM_PARSER(TargetName) \
69   void LLVMInitialize##TargetName##AsmParser(void);
70 #include "llvm/Config/AsmParsers.def"
71 #undef LLVM_ASM_PARSER  /* Explicit undef to make SWIG happier */
72
73 /* Declare all of the available disassembler initialization functions. */
74 #define LLVM_DISASSEMBLER(TargetName) \
75   void LLVMInitialize##TargetName##Disassembler(void);
76 #include "llvm/Config/Disassemblers.def"
77 #undef LLVM_DISASSEMBLER  /* Explicit undef to make SWIG happier */
78
79 /** LLVMInitializeAllTargetInfos - The main program should call this function if
80     it wants access to all available targets that LLVM is configured to
81     support. */
82 static inline void LLVMInitializeAllTargetInfos(void) {
83 #define LLVM_TARGET(TargetName) LLVMInitialize##TargetName##TargetInfo();
84 #include "llvm/Config/Targets.def"
85 #undef LLVM_TARGET  /* Explicit undef to make SWIG happier */
86 }
87
88 /** LLVMInitializeAllTargets - The main program should call this function if it
89     wants to link in all available targets that LLVM is configured to
90     support. */
91 static inline void LLVMInitializeAllTargets(void) {
92 #define LLVM_TARGET(TargetName) LLVMInitialize##TargetName##Target();
93 #include "llvm/Config/Targets.def"
94 #undef LLVM_TARGET  /* Explicit undef to make SWIG happier */
95 }
96
97 /** LLVMInitializeAllTargetMCs - The main program should call this function if
98     it wants access to all available target MC that LLVM is configured to
99     support. */
100 static inline void LLVMInitializeAllTargetMCs(void) {
101 #define LLVM_TARGET(TargetName) LLVMInitialize##TargetName##TargetMC();
102 #include "llvm/Config/Targets.def"
103 #undef LLVM_TARGET  /* Explicit undef to make SWIG happier */
104 }
105
106 /** LLVMInitializeAllAsmPrinters - The main program should call this function if
107     it wants all asm printers that LLVM is configured to support, to make them
108     available via the TargetRegistry. */
109 static inline void LLVMInitializeAllAsmPrinters(void) {
110 #define LLVM_ASM_PRINTER(TargetName) LLVMInitialize##TargetName##AsmPrinter();
111 #include "llvm/Config/AsmPrinters.def"
112 #undef LLVM_ASM_PRINTER  /* Explicit undef to make SWIG happier */
113 }
114
115 /** LLVMInitializeAllAsmParsers - The main program should call this function if
116     it wants all asm parsers that LLVM is configured to support, to make them
117     available via the TargetRegistry. */
118 static inline void LLVMInitializeAllAsmParsers(void) {
119 #define LLVM_ASM_PARSER(TargetName) LLVMInitialize##TargetName##AsmParser();
120 #include "llvm/Config/AsmParsers.def"
121 #undef LLVM_ASM_PARSER  /* Explicit undef to make SWIG happier */
122 }
123
124 /** LLVMInitializeAllDisassemblers - The main program should call this function
125     if it wants all disassemblers that LLVM is configured to support, to make
126     them available via the TargetRegistry. */
127 static inline void LLVMInitializeAllDisassemblers(void) {
128 #define LLVM_DISASSEMBLER(TargetName) \
129   LLVMInitialize##TargetName##Disassembler();
130 #include "llvm/Config/Disassemblers.def"
131 #undef LLVM_DISASSEMBLER  /* Explicit undef to make SWIG happier */
132 }
133
134 /** LLVMInitializeNativeTarget - The main program should call this function to
135     initialize the native target corresponding to the host.  This is useful
136     for JIT applications to ensure that the target gets linked in correctly. */
137 static inline LLVMBool LLVMInitializeNativeTarget(void) {
138   /* If we have a native target, initialize it to ensure it is linked in. */
139 #ifdef LLVM_NATIVE_TARGET
140   LLVM_NATIVE_TARGETINFO();
141   LLVM_NATIVE_TARGET();
142   LLVM_NATIVE_TARGETMC();
143   return 0;
144 #else
145   return 1;
146 #endif
147 }
148
149 /*===-- Target Data -------------------------------------------------------===*/
150
151 /** Creates target data from a target layout string.
152     See the constructor llvm::DataLayout::DataLayout. */
153 LLVMTargetDataRef LLVMCreateTargetData(const char *StringRep);
154
155 /** Adds target data information to a pass manager. This does not take ownership
156     of the target data.
157     See the method llvm::PassManagerBase::add. */
158 void LLVMAddTargetData(LLVMTargetDataRef, LLVMPassManagerRef);
159
160 /** Adds target library information to a pass manager. This does not take
161     ownership of the target library info.
162     See the method llvm::PassManagerBase::add. */
163 void LLVMAddTargetLibraryInfo(LLVMTargetLibraryInfoRef, LLVMPassManagerRef);
164
165 /** Converts target data to a target layout string. The string must be disposed
166     with LLVMDisposeMessage.
167     See the constructor llvm::DataLayout::DataLayout. */
168 char *LLVMCopyStringRepOfTargetData(LLVMTargetDataRef);
169
170 /** Returns the byte order of a target, either LLVMBigEndian or
171     LLVMLittleEndian.
172     See the method llvm::DataLayout::isLittleEndian. */
173 enum LLVMByteOrdering LLVMByteOrder(LLVMTargetDataRef);
174
175 /** Returns the pointer size in bytes for a target.
176     See the method llvm::DataLayout::getPointerSize. */
177 unsigned LLVMPointerSize(LLVMTargetDataRef);
178
179 /** Returns the pointer size in bytes for a target for a specified
180     address space.
181     See the method llvm::DataLayout::getPointerSize. */
182 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef, unsigned AS);
183
184 /** Returns the integer type that is the same size as a pointer on a target.
185     See the method llvm::DataLayout::getIntPtrType. */
186 LLVMTypeRef LLVMIntPtrType(LLVMTargetDataRef);
187
188 /** Returns the integer type that is the same size as a pointer on a target.
189     This version allows the address space to be specified.
190     See the method llvm::DataLayout::getIntPtrType. */
191 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef, unsigned AS);
192
193 /** Returns the integer type that is the same size as a pointer on a target.
194     See the method llvm::DataLayout::getIntPtrType. */
195 LLVMTypeRef LLVMIntPtrTypeInContext(LLVMContextRef, LLVMTargetDataRef);
196
197 /** Returns the integer type that is the same size as a pointer on a target.
198     This version allows the address space to be specified.
199     See the method llvm::DataLayout::getIntPtrType. */
200 LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef, LLVMTargetDataRef, unsigned AS);
201
202 /** Computes the size of a type in bytes for a target.
203     See the method llvm::DataLayout::getTypeSizeInBits. */
204 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef, LLVMTypeRef);
205
206 /** Computes the storage size of a type in bytes for a target.
207     See the method llvm::DataLayout::getTypeStoreSize. */
208 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef, LLVMTypeRef);
209
210 /** Computes the ABI size of a type in bytes for a target.
211     See the method llvm::DataLayout::getTypeAllocSize. */
212 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef, LLVMTypeRef);
213
214 /** Computes the ABI alignment of a type in bytes for a target.
215     See the method llvm::DataLayout::getTypeABISize. */
216 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef, LLVMTypeRef);
217
218 /** Computes the call frame alignment of a type in bytes for a target.
219     See the method llvm::DataLayout::getTypeABISize. */
220 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef, LLVMTypeRef);
221
222 /** Computes the preferred alignment of a type in bytes for a target.
223     See the method llvm::DataLayout::getTypeABISize. */
224 unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef, LLVMTypeRef);
225
226 /** Computes the preferred alignment of a global variable in bytes for a target.
227     See the method llvm::DataLayout::getPreferredAlignment. */
228 unsigned LLVMPreferredAlignmentOfGlobal(LLVMTargetDataRef,
229                                         LLVMValueRef GlobalVar);
230
231 /** Computes the structure element that contains the byte offset for a target.
232     See the method llvm::StructLayout::getElementContainingOffset. */
233 unsigned LLVMElementAtOffset(LLVMTargetDataRef, LLVMTypeRef StructTy,
234                              unsigned long long Offset);
235
236 /** Computes the byte offset of the indexed struct element for a target.
237     See the method llvm::StructLayout::getElementContainingOffset. */
238 unsigned long long LLVMOffsetOfElement(LLVMTargetDataRef, LLVMTypeRef StructTy,
239                                        unsigned Element);
240
241 /** Deallocates a TargetData.
242     See the destructor llvm::DataLayout::~DataLayout. */
243 void LLVMDisposeTargetData(LLVMTargetDataRef);
244
245 /**
246  * @}
247  */
248
249 #ifdef __cplusplus
250 }
251 #endif /* defined(__cplusplus) */
252
253 #endif