1 /*===-- llvm-c/Target.h - Target Lib C Iface --------------------*- C++ -*-===*/
3 /* The LLVM Compiler Infrastructure */
5 /* This file is distributed under the University of Illinois Open Source */
6 /* License. See LICENSE.TXT for details. */
8 /*===----------------------------------------------------------------------===*/
10 /* This header declares the C interface to libLLVMTarget.a, which */
11 /* implements target information. */
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. */
17 /*===----------------------------------------------------------------------===*/
19 #ifndef LLVM_C_TARGET_H
20 #define LLVM_C_TARGET_H
22 #include "llvm-c/Core.h"
23 #include "llvm/Config/llvm-config.h"
29 enum LLVMByteOrdering
{ LLVMBigEndian
, LLVMLittleEndian
};
31 typedef struct LLVMOpaqueTargetData
*LLVMTargetDataRef
;
32 typedef struct LLVMStructLayout
*LLVMStructLayoutRef
;
34 /* Declare all of the target-initialization functions that are available. */
35 #define LLVM_TARGET(TargetName) \
36 void LLVMInitialize##TargetName##TargetInfo(void);
37 #include "llvm/Config/Targets.def"
38 #undef LLVM_TARGET /* Explicit undef to make SWIG happier */
40 #define LLVM_TARGET(TargetName) void LLVMInitialize##TargetName##Target(void);
41 #include "llvm/Config/Targets.def"
42 #undef LLVM_TARGET /* Explicit undef to make SWIG happier */
44 /** LLVMInitializeAllTargetInfos - The main program should call this function if
45 it wants access to all available targets that LLVM is configured to
47 static inline void LLVMInitializeAllTargetInfos(void) {
48 #define LLVM_TARGET(TargetName) LLVMInitialize##TargetName##TargetInfo();
49 #include "llvm/Config/Targets.def"
50 #undef LLVM_TARGET /* Explicit undef to make SWIG happier */
53 /** LLVMInitializeAllTargets - The main program should call this function if it
54 wants to link in all available targets that LLVM is configured to
56 static inline void LLVMInitializeAllTargets(void) {
57 #define LLVM_TARGET(TargetName) LLVMInitialize##TargetName##Target();
58 #include "llvm/Config/Targets.def"
59 #undef LLVM_TARGET /* Explicit undef to make SWIG happier */
62 /** LLVMInitializeNativeTarget - The main program should call this function to
63 initialize the native target corresponding to the host. This is useful
64 for JIT applications to ensure that the target gets linked in correctly. */
65 static inline LLVMBool
LLVMInitializeNativeTarget(void) {
66 /* If we have a native target, initialize it to ensure it is linked in. */
67 #ifdef LLVM_NATIVE_TARGET
68 LLVM_NATIVE_TARGETINFO();
76 /*===-- Target Data -------------------------------------------------------===*/
78 /** Creates target data from a target layout string.
79 See the constructor llvm::TargetData::TargetData. */
80 LLVMTargetDataRef
LLVMCreateTargetData(const char *StringRep
);
82 /** Adds target data information to a pass manager. This does not take ownership
84 See the method llvm::PassManagerBase::add. */
85 void LLVMAddTargetData(LLVMTargetDataRef
, LLVMPassManagerRef
);
87 /** Converts target data to a target layout string. The string must be disposed
88 with LLVMDisposeMessage.
89 See the constructor llvm::TargetData::TargetData. */
90 char *LLVMCopyStringRepOfTargetData(LLVMTargetDataRef
);
92 /** Returns the byte order of a target, either LLVMBigEndian or
94 See the method llvm::TargetData::isLittleEndian. */
95 enum LLVMByteOrdering
LLVMByteOrder(LLVMTargetDataRef
);
97 /** Returns the pointer size in bytes for a target.
98 See the method llvm::TargetData::getPointerSize. */
99 unsigned LLVMPointerSize(LLVMTargetDataRef
);
101 /** Returns the integer type that is the same size as a pointer on a target.
102 See the method llvm::TargetData::getIntPtrType. */
103 LLVMTypeRef
LLVMIntPtrType(LLVMTargetDataRef
);
105 /** Computes the size of a type in bytes for a target.
106 See the method llvm::TargetData::getTypeSizeInBits. */
107 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef
, LLVMTypeRef
);
109 /** Computes the storage size of a type in bytes for a target.
110 See the method llvm::TargetData::getTypeStoreSize. */
111 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef
, LLVMTypeRef
);
113 /** Computes the ABI size of a type in bytes for a target.
114 See the method llvm::TargetData::getTypeAllocSize. */
115 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef
, LLVMTypeRef
);
117 /** Computes the ABI alignment of a type in bytes for a target.
118 See the method llvm::TargetData::getTypeABISize. */
119 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef
, LLVMTypeRef
);
121 /** Computes the call frame alignment of a type in bytes for a target.
122 See the method llvm::TargetData::getTypeABISize. */
123 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef
, LLVMTypeRef
);
125 /** Computes the preferred alignment of a type in bytes for a target.
126 See the method llvm::TargetData::getTypeABISize. */
127 unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef
, LLVMTypeRef
);
129 /** Computes the preferred alignment of a global variable in bytes for a target.
130 See the method llvm::TargetData::getPreferredAlignment. */
131 unsigned LLVMPreferredAlignmentOfGlobal(LLVMTargetDataRef
,
132 LLVMValueRef GlobalVar
);
134 /** Computes the structure element that contains the byte offset for a target.
135 See the method llvm::StructLayout::getElementContainingOffset. */
136 unsigned LLVMElementAtOffset(LLVMTargetDataRef
, LLVMTypeRef StructTy
,
137 unsigned long long Offset
);
139 /** Computes the byte offset of the indexed struct element for a target.
140 See the method llvm::StructLayout::getElementContainingOffset. */
141 unsigned long long LLVMOffsetOfElement(LLVMTargetDataRef
, LLVMTypeRef StructTy
,
144 /** Struct layouts are speculatively cached. If a TargetDataRef is alive when
145 types are being refined and removed, this method must be called whenever a
146 struct type is removed to avoid a dangling pointer in this cache.
147 See the method llvm::TargetData::InvalidateStructLayoutInfo. */
148 void LLVMInvalidateStructLayout(LLVMTargetDataRef
, LLVMTypeRef StructTy
);
150 /** Deallocates a TargetData.
151 See the destructor llvm::TargetData::~TargetData. */
152 void LLVMDisposeTargetData(LLVMTargetDataRef
);
161 inline TargetData
*unwrap(LLVMTargetDataRef P
) {
162 return reinterpret_cast<TargetData
*>(P
);
165 inline LLVMTargetDataRef
wrap(const TargetData
*P
) {
166 return reinterpret_cast<LLVMTargetDataRef
>(const_cast<TargetData
*>(P
));
170 #endif /* defined(__cplusplus) */