1 //===-- Core.cpp ----------------------------------------------------------===//
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 file implements the C bindings for libLLVMCore.a, which implements
11 // the LLVM intermediate representation.
13 //===----------------------------------------------------------------------===//
15 #include "llvm-c/Core.h"
16 #include "llvm/Bitcode/ReaderWriter.h"
17 #include "llvm/Constants.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/GlobalVariable.h"
20 #include "llvm/GlobalAlias.h"
21 #include "llvm/LLVMContext.h"
22 #include "llvm/TypeSymbolTable.h"
23 #include "llvm/ModuleProvider.h"
24 #include "llvm/InlineAsm.h"
25 #include "llvm/IntrinsicInst.h"
26 #include "llvm/Support/MemoryBuffer.h"
27 #include "llvm/Support/CallSite.h"
28 #include "llvm/Support/ErrorHandling.h"
36 /*===-- Error handling ----------------------------------------------------===*/
38 void LLVMDisposeMessage(char *Message
) {
43 /*===-- Operations on contexts --------------------------------------------===*/
45 LLVMContextRef
LLVMContextCreate() {
46 return wrap(new LLVMContext());
49 LLVMContextRef
LLVMGetGlobalContext() {
50 return wrap(&getGlobalContext());
53 void LLVMContextDispose(LLVMContextRef C
) {
58 /*===-- Operations on modules ---------------------------------------------===*/
60 LLVMModuleRef
LLVMModuleCreateWithName(const char *ModuleID
) {
61 return wrap(new Module(ModuleID
, getGlobalContext()));
64 LLVMModuleRef
LLVMModuleCreateWithNameInContext(const char *ModuleID
,
66 return wrap(new Module(ModuleID
, *unwrap(C
)));
69 void LLVMDisposeModule(LLVMModuleRef M
) {
73 /*--.. Data layout .........................................................--*/
74 const char * LLVMGetDataLayout(LLVMModuleRef M
) {
75 return unwrap(M
)->getDataLayout().c_str();
78 void LLVMSetDataLayout(LLVMModuleRef M
, const char *Triple
) {
79 unwrap(M
)->setDataLayout(Triple
);
82 /*--.. Target triple .......................................................--*/
83 const char * LLVMGetTarget(LLVMModuleRef M
) {
84 return unwrap(M
)->getTargetTriple().c_str();
87 void LLVMSetTarget(LLVMModuleRef M
, const char *Triple
) {
88 unwrap(M
)->setTargetTriple(Triple
);
91 /*--.. Type names ..........................................................--*/
92 int LLVMAddTypeName(LLVMModuleRef M
, const char *Name
, LLVMTypeRef Ty
) {
93 return unwrap(M
)->addTypeName(Name
, unwrap(Ty
));
96 void LLVMDeleteTypeName(LLVMModuleRef M
, const char *Name
) {
97 TypeSymbolTable
&TST
= unwrap(M
)->getTypeSymbolTable();
99 TypeSymbolTable::iterator I
= TST
.find(Name
);
104 LLVMTypeRef
LLVMGetTypeByName(LLVMModuleRef M
, const char *Name
) {
105 return wrap(unwrap(M
)->getTypeByName(Name
));
108 void LLVMDumpModule(LLVMModuleRef M
) {
113 /*===-- Operations on types -----------------------------------------------===*/
115 /*--.. Operations on all types (mostly) ....................................--*/
117 LLVMTypeKind
LLVMGetTypeKind(LLVMTypeRef Ty
) {
118 switch (unwrap(Ty
)->getTypeID()) {
120 assert(false && "Unhandled TypeID.");
122 return LLVMVoidTypeKind
;
123 case Type::FloatTyID
:
124 return LLVMFloatTypeKind
;
125 case Type::DoubleTyID
:
126 return LLVMDoubleTypeKind
;
127 case Type::X86_FP80TyID
:
128 return LLVMX86_FP80TypeKind
;
129 case Type::FP128TyID
:
130 return LLVMFP128TypeKind
;
131 case Type::PPC_FP128TyID
:
132 return LLVMPPC_FP128TypeKind
;
133 case Type::LabelTyID
:
134 return LLVMLabelTypeKind
;
135 case Type::MetadataTyID
:
136 return LLVMMetadataTypeKind
;
137 case Type::IntegerTyID
:
138 return LLVMIntegerTypeKind
;
139 case Type::FunctionTyID
:
140 return LLVMFunctionTypeKind
;
141 case Type::StructTyID
:
142 return LLVMStructTypeKind
;
143 case Type::ArrayTyID
:
144 return LLVMArrayTypeKind
;
145 case Type::PointerTyID
:
146 return LLVMPointerTypeKind
;
147 case Type::OpaqueTyID
:
148 return LLVMOpaqueTypeKind
;
149 case Type::VectorTyID
:
150 return LLVMVectorTypeKind
;
154 LLVMContextRef
LLVMGetTypeContext(LLVMTypeRef Ty
) {
155 return wrap(&unwrap(Ty
)->getContext());
158 /*--.. Operations on integer types .........................................--*/
160 LLVMTypeRef
LLVMInt1TypeInContext(LLVMContextRef C
) {
161 return (LLVMTypeRef
) Type::getInt1Ty(*unwrap(C
));
163 LLVMTypeRef
LLVMInt8TypeInContext(LLVMContextRef C
) {
164 return (LLVMTypeRef
) Type::getInt8Ty(*unwrap(C
));
166 LLVMTypeRef
LLVMInt16TypeInContext(LLVMContextRef C
) {
167 return (LLVMTypeRef
) Type::getInt16Ty(*unwrap(C
));
169 LLVMTypeRef
LLVMInt32TypeInContext(LLVMContextRef C
) {
170 return (LLVMTypeRef
) Type::getInt32Ty(*unwrap(C
));
172 LLVMTypeRef
LLVMInt64TypeInContext(LLVMContextRef C
) {
173 return (LLVMTypeRef
) Type::getInt64Ty(*unwrap(C
));
175 LLVMTypeRef
LLVMIntTypeInContext(LLVMContextRef C
, unsigned NumBits
) {
176 return wrap(IntegerType::get(*unwrap(C
), NumBits
));
179 LLVMTypeRef
LLVMInt1Type(void) {
180 return LLVMInt1TypeInContext(LLVMGetGlobalContext());
182 LLVMTypeRef
LLVMInt8Type(void) {
183 return LLVMInt8TypeInContext(LLVMGetGlobalContext());
185 LLVMTypeRef
LLVMInt16Type(void) {
186 return LLVMInt16TypeInContext(LLVMGetGlobalContext());
188 LLVMTypeRef
LLVMInt32Type(void) {
189 return LLVMInt32TypeInContext(LLVMGetGlobalContext());
191 LLVMTypeRef
LLVMInt64Type(void) {
192 return LLVMInt64TypeInContext(LLVMGetGlobalContext());
194 LLVMTypeRef
LLVMIntType(unsigned NumBits
) {
195 return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits
);
198 unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy
) {
199 return unwrap
<IntegerType
>(IntegerTy
)->getBitWidth();
202 /*--.. Operations on real types ............................................--*/
204 LLVMTypeRef
LLVMFloatTypeInContext(LLVMContextRef C
) {
205 return (LLVMTypeRef
) Type::getFloatTy(*unwrap(C
));
207 LLVMTypeRef
LLVMDoubleTypeInContext(LLVMContextRef C
) {
208 return (LLVMTypeRef
) Type::getDoubleTy(*unwrap(C
));
210 LLVMTypeRef
LLVMX86FP80TypeInContext(LLVMContextRef C
) {
211 return (LLVMTypeRef
) Type::getX86_FP80Ty(*unwrap(C
));
213 LLVMTypeRef
LLVMFP128TypeInContext(LLVMContextRef C
) {
214 return (LLVMTypeRef
) Type::getFP128Ty(*unwrap(C
));
216 LLVMTypeRef
LLVMPPCFP128TypeInContext(LLVMContextRef C
) {
217 return (LLVMTypeRef
) Type::getPPC_FP128Ty(*unwrap(C
));
220 LLVMTypeRef
LLVMFloatType(void) {
221 return LLVMFloatTypeInContext(LLVMGetGlobalContext());
223 LLVMTypeRef
LLVMDoubleType(void) {
224 return LLVMDoubleTypeInContext(LLVMGetGlobalContext());
226 LLVMTypeRef
LLVMX86FP80Type(void) {
227 return LLVMX86FP80TypeInContext(LLVMGetGlobalContext());
229 LLVMTypeRef
LLVMFP128Type(void) {
230 return LLVMFP128TypeInContext(LLVMGetGlobalContext());
232 LLVMTypeRef
LLVMPPCFP128Type(void) {
233 return LLVMPPCFP128TypeInContext(LLVMGetGlobalContext());
236 /*--.. Operations on function types ........................................--*/
238 LLVMTypeRef
LLVMFunctionType(LLVMTypeRef ReturnType
,
239 LLVMTypeRef
*ParamTypes
, unsigned ParamCount
,
241 std::vector
<const Type
*> Tys
;
242 for (LLVMTypeRef
*I
= ParamTypes
, *E
= ParamTypes
+ ParamCount
; I
!= E
; ++I
)
243 Tys
.push_back(unwrap(*I
));
245 return wrap(FunctionType::get(unwrap(ReturnType
), Tys
, IsVarArg
!= 0));
248 int LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy
) {
249 return unwrap
<FunctionType
>(FunctionTy
)->isVarArg();
252 LLVMTypeRef
LLVMGetReturnType(LLVMTypeRef FunctionTy
) {
253 return wrap(unwrap
<FunctionType
>(FunctionTy
)->getReturnType());
256 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy
) {
257 return unwrap
<FunctionType
>(FunctionTy
)->getNumParams();
260 void LLVMGetParamTypes(LLVMTypeRef FunctionTy
, LLVMTypeRef
*Dest
) {
261 FunctionType
*Ty
= unwrap
<FunctionType
>(FunctionTy
);
262 for (FunctionType::param_iterator I
= Ty
->param_begin(),
263 E
= Ty
->param_end(); I
!= E
; ++I
)
267 /*--.. Operations on struct types ..........................................--*/
269 LLVMTypeRef
LLVMStructTypeInContext(LLVMContextRef C
, LLVMTypeRef
*ElementTypes
,
270 unsigned ElementCount
, int Packed
) {
271 std::vector
<const Type
*> Tys
;
272 for (LLVMTypeRef
*I
= ElementTypes
,
273 *E
= ElementTypes
+ ElementCount
; I
!= E
; ++I
)
274 Tys
.push_back(unwrap(*I
));
276 return wrap(StructType::get(*unwrap(C
), Tys
, Packed
!= 0));
279 LLVMTypeRef
LLVMStructType(LLVMTypeRef
*ElementTypes
,
280 unsigned ElementCount
, int Packed
) {
281 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes
,
282 ElementCount
, Packed
);
286 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy
) {
287 return unwrap
<StructType
>(StructTy
)->getNumElements();
290 void LLVMGetStructElementTypes(LLVMTypeRef StructTy
, LLVMTypeRef
*Dest
) {
291 StructType
*Ty
= unwrap
<StructType
>(StructTy
);
292 for (FunctionType::param_iterator I
= Ty
->element_begin(),
293 E
= Ty
->element_end(); I
!= E
; ++I
)
297 int LLVMIsPackedStruct(LLVMTypeRef StructTy
) {
298 return unwrap
<StructType
>(StructTy
)->isPacked();
301 /*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
303 LLVMTypeRef
LLVMArrayType(LLVMTypeRef ElementType
, unsigned ElementCount
) {
304 return wrap(ArrayType::get(unwrap(ElementType
), ElementCount
));
307 LLVMTypeRef
LLVMPointerType(LLVMTypeRef ElementType
, unsigned AddressSpace
) {
308 return wrap(PointerType::get(unwrap(ElementType
), AddressSpace
));
311 LLVMTypeRef
LLVMVectorType(LLVMTypeRef ElementType
, unsigned ElementCount
) {
312 return wrap(VectorType::get(unwrap(ElementType
), ElementCount
));
315 LLVMTypeRef
LLVMGetElementType(LLVMTypeRef Ty
) {
316 return wrap(unwrap
<SequentialType
>(Ty
)->getElementType());
319 unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy
) {
320 return unwrap
<ArrayType
>(ArrayTy
)->getNumElements();
323 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy
) {
324 return unwrap
<PointerType
>(PointerTy
)->getAddressSpace();
327 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy
) {
328 return unwrap
<VectorType
>(VectorTy
)->getNumElements();
331 /*--.. Operations on other types ...........................................--*/
333 LLVMTypeRef
LLVMVoidTypeInContext(LLVMContextRef C
) {
334 return wrap(Type::getVoidTy(*unwrap(C
)));
336 LLVMTypeRef
LLVMLabelTypeInContext(LLVMContextRef C
) {
337 return wrap(Type::getLabelTy(*unwrap(C
)));
339 LLVMTypeRef
LLVMOpaqueTypeInContext(LLVMContextRef C
) {
340 return wrap(OpaqueType::get(*unwrap(C
)));
343 LLVMTypeRef
LLVMVoidType(void) {
344 return LLVMVoidTypeInContext(LLVMGetGlobalContext());
346 LLVMTypeRef
LLVMLabelType(void) {
347 return LLVMLabelTypeInContext(LLVMGetGlobalContext());
349 LLVMTypeRef
LLVMOpaqueType(void) {
350 return LLVMOpaqueTypeInContext(LLVMGetGlobalContext());
353 /*--.. Operations on type handles ..........................................--*/
355 LLVMTypeHandleRef
LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy
) {
356 return wrap(new PATypeHolder(unwrap(PotentiallyAbstractTy
)));
359 void LLVMDisposeTypeHandle(LLVMTypeHandleRef TypeHandle
) {
360 delete unwrap(TypeHandle
);
363 LLVMTypeRef
LLVMResolveTypeHandle(LLVMTypeHandleRef TypeHandle
) {
364 return wrap(unwrap(TypeHandle
)->get());
367 void LLVMRefineType(LLVMTypeRef AbstractTy
, LLVMTypeRef ConcreteTy
) {
368 unwrap
<DerivedType
>(AbstractTy
)->refineAbstractTypeTo(unwrap(ConcreteTy
));
372 /*===-- Operations on values ----------------------------------------------===*/
374 /*--.. Operations on all values ............................................--*/
376 LLVMTypeRef
LLVMTypeOf(LLVMValueRef Val
) {
377 return wrap(unwrap(Val
)->getType());
380 const char *LLVMGetValueName(LLVMValueRef Val
) {
381 return unwrap(Val
)->getName().data();
384 void LLVMSetValueName(LLVMValueRef Val
, const char *Name
) {
385 unwrap(Val
)->setName(Name
);
388 void LLVMDumpValue(LLVMValueRef Val
) {
393 /*--.. Conversion functions ................................................--*/
395 #define LLVM_DEFINE_VALUE_CAST(name) \
396 LLVMValueRef LLVMIsA##name(LLVMValueRef Val) { \
397 return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
400 LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DEFINE_VALUE_CAST
)
403 /*--.. Operations on constants of any type .................................--*/
405 LLVMValueRef
LLVMConstNull(LLVMTypeRef Ty
) {
406 return wrap(Constant::getNullValue(unwrap(Ty
)));
409 LLVMValueRef
LLVMConstAllOnes(LLVMTypeRef Ty
) {
410 return wrap(Constant::getAllOnesValue(unwrap(Ty
)));
413 LLVMValueRef
LLVMGetUndef(LLVMTypeRef Ty
) {
414 return wrap(UndefValue::get(unwrap(Ty
)));
417 int LLVMIsConstant(LLVMValueRef Ty
) {
418 return isa
<Constant
>(unwrap(Ty
));
421 int LLVMIsNull(LLVMValueRef Val
) {
422 if (Constant
*C
= dyn_cast
<Constant
>(unwrap(Val
)))
423 return C
->isNullValue();
427 int LLVMIsUndef(LLVMValueRef Val
) {
428 return isa
<UndefValue
>(unwrap(Val
));
431 LLVMValueRef
LLVMConstPointerNull(LLVMTypeRef Ty
) {
433 wrap(ConstantPointerNull::get(unwrap
<PointerType
>(Ty
)));
436 /*--.. Operations on scalar constants ......................................--*/
438 LLVMValueRef
LLVMConstInt(LLVMTypeRef IntTy
, unsigned long long N
,
440 return wrap(ConstantInt::get(unwrap
<IntegerType
>(IntTy
), N
, SignExtend
!= 0));
443 LLVMValueRef
LLVMConstIntOfString(LLVMTypeRef IntTy
, const char Str
[],
445 return wrap(ConstantInt::get(unwrap
<IntegerType
>(IntTy
), StringRef(Str
),
449 LLVMValueRef
LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy
, const char Str
[],
450 unsigned SLen
, uint8_t Radix
) {
451 return wrap(ConstantInt::get(unwrap
<IntegerType
>(IntTy
), StringRef(Str
, SLen
),
455 LLVMValueRef
LLVMConstReal(LLVMTypeRef RealTy
, double N
) {
456 return wrap(ConstantFP::get(unwrap(RealTy
), N
));
459 LLVMValueRef
LLVMConstRealOfString(LLVMTypeRef RealTy
, const char *Text
) {
460 return wrap(ConstantFP::get(unwrap(RealTy
), StringRef(Text
)));
463 LLVMValueRef
LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy
, const char Str
[],
465 return wrap(ConstantFP::get(unwrap(RealTy
), StringRef(Str
, SLen
)));
468 /*--.. Operations on composite constants ...................................--*/
470 LLVMValueRef
LLVMConstStringInContext(LLVMContextRef C
, const char *Str
,
471 unsigned Length
, int DontNullTerminate
) {
472 /* Inverted the sense of AddNull because ', 0)' is a
473 better mnemonic for null termination than ', 1)'. */
474 return wrap(ConstantArray::get(*unwrap(C
), std::string(Str
, Length
),
475 DontNullTerminate
== 0));
477 LLVMValueRef
LLVMConstStructInContext(LLVMContextRef C
,
478 LLVMValueRef
*ConstantVals
,
479 unsigned Count
, int Packed
) {
480 return wrap(ConstantStruct::get(*unwrap(C
),
481 unwrap
<Constant
>(ConstantVals
, Count
),
482 Count
, Packed
!= 0));
485 LLVMValueRef
LLVMConstString(const char *Str
, unsigned Length
,
486 int DontNullTerminate
) {
487 return LLVMConstStringInContext(LLVMGetGlobalContext(), Str
, Length
,
490 LLVMValueRef
LLVMConstArray(LLVMTypeRef ElementTy
,
491 LLVMValueRef
*ConstantVals
, unsigned Length
) {
492 return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy
), Length
),
493 unwrap
<Constant
>(ConstantVals
, Length
),
496 LLVMValueRef
LLVMConstStruct(LLVMValueRef
*ConstantVals
, unsigned Count
,
498 return LLVMConstStructInContext(LLVMGetGlobalContext(), ConstantVals
, Count
,
502 LLVMValueRef
LLVMConstVector(LLVMValueRef
*ScalarConstantVals
, unsigned Size
) {
503 return wrap(ConstantVector::get(
504 unwrap
<Constant
>(ScalarConstantVals
, Size
), Size
));
507 /*--.. Constant expressions ................................................--*/
509 LLVMValueRef
LLVMAlignOf(LLVMTypeRef Ty
) {
510 return wrap(ConstantExpr::getAlignOf(unwrap(Ty
)));
513 LLVMValueRef
LLVMSizeOf(LLVMTypeRef Ty
) {
514 return wrap(ConstantExpr::getSizeOf(unwrap(Ty
)));
517 LLVMValueRef
LLVMConstNeg(LLVMValueRef ConstantVal
) {
518 return wrap(ConstantExpr::getNeg(
519 unwrap
<Constant
>(ConstantVal
)));
522 LLVMValueRef
LLVMConstFNeg(LLVMValueRef ConstantVal
) {
523 return wrap(ConstantExpr::getFNeg(
524 unwrap
<Constant
>(ConstantVal
)));
527 LLVMValueRef
LLVMConstNot(LLVMValueRef ConstantVal
) {
528 return wrap(ConstantExpr::getNot(
529 unwrap
<Constant
>(ConstantVal
)));
532 LLVMValueRef
LLVMConstAdd(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
533 return wrap(ConstantExpr::getAdd(
534 unwrap
<Constant
>(LHSConstant
),
535 unwrap
<Constant
>(RHSConstant
)));
538 LLVMValueRef
LLVMConstNSWAdd(LLVMValueRef LHSConstant
,
539 LLVMValueRef RHSConstant
) {
540 return wrap(ConstantExpr::getNSWAdd(
541 unwrap
<Constant
>(LHSConstant
),
542 unwrap
<Constant
>(RHSConstant
)));
545 LLVMValueRef
LLVMConstFAdd(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
546 return wrap(ConstantExpr::getFAdd(
547 unwrap
<Constant
>(LHSConstant
),
548 unwrap
<Constant
>(RHSConstant
)));
551 LLVMValueRef
LLVMConstSub(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
552 return wrap(ConstantExpr::getSub(
553 unwrap
<Constant
>(LHSConstant
),
554 unwrap
<Constant
>(RHSConstant
)));
557 LLVMValueRef
LLVMConstFSub(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
558 return wrap(ConstantExpr::getFSub(unwrap
<Constant
>(LHSConstant
),
559 unwrap
<Constant
>(RHSConstant
)));
562 LLVMValueRef
LLVMConstMul(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
563 return wrap(ConstantExpr::getMul(
564 unwrap
<Constant
>(LHSConstant
),
565 unwrap
<Constant
>(RHSConstant
)));
568 LLVMValueRef
LLVMConstFMul(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
569 return wrap(ConstantExpr::getFMul(
570 unwrap
<Constant
>(LHSConstant
),
571 unwrap
<Constant
>(RHSConstant
)));
574 LLVMValueRef
LLVMConstUDiv(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
575 return wrap(ConstantExpr::getUDiv(
576 unwrap
<Constant
>(LHSConstant
),
577 unwrap
<Constant
>(RHSConstant
)));
580 LLVMValueRef
LLVMConstSDiv(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
581 return wrap(ConstantExpr::getSDiv(
582 unwrap
<Constant
>(LHSConstant
),
583 unwrap
<Constant
>(RHSConstant
)));
586 LLVMValueRef
LLVMConstExactSDiv(LLVMValueRef LHSConstant
,
587 LLVMValueRef RHSConstant
) {
588 return wrap(ConstantExpr::getExactSDiv(
589 unwrap
<Constant
>(LHSConstant
),
590 unwrap
<Constant
>(RHSConstant
)));
593 LLVMValueRef
LLVMConstFDiv(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
594 return wrap(ConstantExpr::getFDiv(
595 unwrap
<Constant
>(LHSConstant
),
596 unwrap
<Constant
>(RHSConstant
)));
599 LLVMValueRef
LLVMConstURem(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
600 return wrap(ConstantExpr::getURem(
601 unwrap
<Constant
>(LHSConstant
),
602 unwrap
<Constant
>(RHSConstant
)));
605 LLVMValueRef
LLVMConstSRem(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
606 return wrap(ConstantExpr::getSRem(
607 unwrap
<Constant
>(LHSConstant
),
608 unwrap
<Constant
>(RHSConstant
)));
611 LLVMValueRef
LLVMConstFRem(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
612 return wrap(ConstantExpr::getFRem(
613 unwrap
<Constant
>(LHSConstant
),
614 unwrap
<Constant
>(RHSConstant
)));
617 LLVMValueRef
LLVMConstAnd(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
618 return wrap(ConstantExpr::getAnd(
619 unwrap
<Constant
>(LHSConstant
),
620 unwrap
<Constant
>(RHSConstant
)));
623 LLVMValueRef
LLVMConstOr(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
624 return wrap(ConstantExpr::getOr(
625 unwrap
<Constant
>(LHSConstant
),
626 unwrap
<Constant
>(RHSConstant
)));
629 LLVMValueRef
LLVMConstXor(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
630 return wrap(ConstantExpr::getXor(
631 unwrap
<Constant
>(LHSConstant
),
632 unwrap
<Constant
>(RHSConstant
)));
635 LLVMValueRef
LLVMConstICmp(LLVMIntPredicate Predicate
,
636 LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
637 return wrap(ConstantExpr::getICmp(Predicate
,
638 unwrap
<Constant
>(LHSConstant
),
639 unwrap
<Constant
>(RHSConstant
)));
642 LLVMValueRef
LLVMConstFCmp(LLVMRealPredicate Predicate
,
643 LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
644 return wrap(ConstantExpr::getFCmp(Predicate
,
645 unwrap
<Constant
>(LHSConstant
),
646 unwrap
<Constant
>(RHSConstant
)));
649 LLVMValueRef
LLVMConstShl(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
650 return wrap(ConstantExpr::getShl(
651 unwrap
<Constant
>(LHSConstant
),
652 unwrap
<Constant
>(RHSConstant
)));
655 LLVMValueRef
LLVMConstLShr(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
656 return wrap(ConstantExpr::getLShr(
657 unwrap
<Constant
>(LHSConstant
),
658 unwrap
<Constant
>(RHSConstant
)));
661 LLVMValueRef
LLVMConstAShr(LLVMValueRef LHSConstant
, LLVMValueRef RHSConstant
) {
662 return wrap(ConstantExpr::getAShr(
663 unwrap
<Constant
>(LHSConstant
),
664 unwrap
<Constant
>(RHSConstant
)));
667 LLVMValueRef
LLVMConstGEP(LLVMValueRef ConstantVal
,
668 LLVMValueRef
*ConstantIndices
, unsigned NumIndices
) {
669 return wrap(ConstantExpr::getGetElementPtr(
670 unwrap
<Constant
>(ConstantVal
),
671 unwrap
<Constant
>(ConstantIndices
,
676 LLVMValueRef
LLVMConstInBoundsGEP(LLVMValueRef ConstantVal
,
677 LLVMValueRef
*ConstantIndices
,
678 unsigned NumIndices
) {
679 Constant
* Val
= unwrap
<Constant
>(ConstantVal
);
680 Constant
** Idxs
= unwrap
<Constant
>(ConstantIndices
, NumIndices
);
681 return wrap(ConstantExpr::getInBoundsGetElementPtr(Val
, Idxs
, NumIndices
));
684 LLVMValueRef
LLVMConstTrunc(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
685 return wrap(ConstantExpr::getTrunc(
686 unwrap
<Constant
>(ConstantVal
),
690 LLVMValueRef
LLVMConstSExt(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
691 return wrap(ConstantExpr::getSExt(
692 unwrap
<Constant
>(ConstantVal
),
696 LLVMValueRef
LLVMConstZExt(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
697 return wrap(ConstantExpr::getZExt(
698 unwrap
<Constant
>(ConstantVal
),
702 LLVMValueRef
LLVMConstFPTrunc(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
703 return wrap(ConstantExpr::getFPTrunc(
704 unwrap
<Constant
>(ConstantVal
),
708 LLVMValueRef
LLVMConstFPExt(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
709 return wrap(ConstantExpr::getFPExtend(
710 unwrap
<Constant
>(ConstantVal
),
714 LLVMValueRef
LLVMConstUIToFP(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
715 return wrap(ConstantExpr::getUIToFP(
716 unwrap
<Constant
>(ConstantVal
),
720 LLVMValueRef
LLVMConstSIToFP(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
721 return wrap(ConstantExpr::getSIToFP(unwrap
<Constant
>(ConstantVal
),
725 LLVMValueRef
LLVMConstFPToUI(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
726 return wrap(ConstantExpr::getFPToUI(unwrap
<Constant
>(ConstantVal
),
730 LLVMValueRef
LLVMConstFPToSI(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
731 return wrap(ConstantExpr::getFPToSI(
732 unwrap
<Constant
>(ConstantVal
),
736 LLVMValueRef
LLVMConstPtrToInt(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
737 return wrap(ConstantExpr::getPtrToInt(
738 unwrap
<Constant
>(ConstantVal
),
742 LLVMValueRef
LLVMConstIntToPtr(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
743 return wrap(ConstantExpr::getIntToPtr(
744 unwrap
<Constant
>(ConstantVal
),
748 LLVMValueRef
LLVMConstBitCast(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
749 return wrap(ConstantExpr::getBitCast(
750 unwrap
<Constant
>(ConstantVal
),
754 LLVMValueRef
LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal
,
755 LLVMTypeRef ToType
) {
756 return wrap(ConstantExpr::getZExtOrBitCast(
757 unwrap
<Constant
>(ConstantVal
),
761 LLVMValueRef
LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal
,
762 LLVMTypeRef ToType
) {
763 return wrap(ConstantExpr::getSExtOrBitCast(
764 unwrap
<Constant
>(ConstantVal
),
768 LLVMValueRef
LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal
,
769 LLVMTypeRef ToType
) {
770 return wrap(ConstantExpr::getTruncOrBitCast(
771 unwrap
<Constant
>(ConstantVal
),
775 LLVMValueRef
LLVMConstPointerCast(LLVMValueRef ConstantVal
,
776 LLVMTypeRef ToType
) {
777 return wrap(ConstantExpr::getPointerCast(
778 unwrap
<Constant
>(ConstantVal
),
782 LLVMValueRef
LLVMConstIntCast(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
,
784 return wrap(ConstantExpr::getIntegerCast(
785 unwrap
<Constant
>(ConstantVal
),
790 LLVMValueRef
LLVMConstFPCast(LLVMValueRef ConstantVal
, LLVMTypeRef ToType
) {
791 return wrap(ConstantExpr::getFPCast(
792 unwrap
<Constant
>(ConstantVal
),
796 LLVMValueRef
LLVMConstSelect(LLVMValueRef ConstantCondition
,
797 LLVMValueRef ConstantIfTrue
,
798 LLVMValueRef ConstantIfFalse
) {
799 return wrap(ConstantExpr::getSelect(
800 unwrap
<Constant
>(ConstantCondition
),
801 unwrap
<Constant
>(ConstantIfTrue
),
802 unwrap
<Constant
>(ConstantIfFalse
)));
805 LLVMValueRef
LLVMConstExtractElement(LLVMValueRef VectorConstant
,
806 LLVMValueRef IndexConstant
) {
807 return wrap(ConstantExpr::getExtractElement(
808 unwrap
<Constant
>(VectorConstant
),
809 unwrap
<Constant
>(IndexConstant
)));
812 LLVMValueRef
LLVMConstInsertElement(LLVMValueRef VectorConstant
,
813 LLVMValueRef ElementValueConstant
,
814 LLVMValueRef IndexConstant
) {
815 return wrap(ConstantExpr::getInsertElement(
816 unwrap
<Constant
>(VectorConstant
),
817 unwrap
<Constant
>(ElementValueConstant
),
818 unwrap
<Constant
>(IndexConstant
)));
821 LLVMValueRef
LLVMConstShuffleVector(LLVMValueRef VectorAConstant
,
822 LLVMValueRef VectorBConstant
,
823 LLVMValueRef MaskConstant
) {
824 return wrap(ConstantExpr::getShuffleVector(
825 unwrap
<Constant
>(VectorAConstant
),
826 unwrap
<Constant
>(VectorBConstant
),
827 unwrap
<Constant
>(MaskConstant
)));
830 LLVMValueRef
LLVMConstExtractValue(LLVMValueRef AggConstant
, unsigned *IdxList
,
832 return wrap(ConstantExpr::getExtractValue(
833 unwrap
<Constant
>(AggConstant
),
837 LLVMValueRef
LLVMConstInsertValue(LLVMValueRef AggConstant
,
838 LLVMValueRef ElementValueConstant
,
839 unsigned *IdxList
, unsigned NumIdx
) {
840 return wrap(ConstantExpr::getInsertValue(
841 unwrap
<Constant
>(AggConstant
),
842 unwrap
<Constant
>(ElementValueConstant
),
846 LLVMValueRef
LLVMConstInlineAsm(LLVMTypeRef Ty
, const char *AsmString
,
847 const char *Constraints
, int HasSideEffects
) {
848 return wrap(InlineAsm::get(dyn_cast
<FunctionType
>(unwrap(Ty
)), AsmString
,
849 Constraints
, HasSideEffects
));
852 /*--.. Operations on global variables, functions, and aliases (globals) ....--*/
854 LLVMModuleRef
LLVMGetGlobalParent(LLVMValueRef Global
) {
855 return wrap(unwrap
<GlobalValue
>(Global
)->getParent());
858 int LLVMIsDeclaration(LLVMValueRef Global
) {
859 return unwrap
<GlobalValue
>(Global
)->isDeclaration();
862 LLVMLinkage
LLVMGetLinkage(LLVMValueRef Global
) {
863 switch (unwrap
<GlobalValue
>(Global
)->getLinkage()) {
865 assert(false && "Unhandled Linkage Type.");
866 case GlobalValue::ExternalLinkage
:
867 return LLVMExternalLinkage
;
868 case GlobalValue::AvailableExternallyLinkage
:
869 return LLVMAvailableExternallyLinkage
;
870 case GlobalValue::LinkOnceAnyLinkage
:
871 return LLVMLinkOnceAnyLinkage
;
872 case GlobalValue::LinkOnceODRLinkage
:
873 return LLVMLinkOnceODRLinkage
;
874 case GlobalValue::WeakAnyLinkage
:
875 return LLVMWeakAnyLinkage
;
876 case GlobalValue::WeakODRLinkage
:
877 return LLVMWeakODRLinkage
;
878 case GlobalValue::AppendingLinkage
:
879 return LLVMAppendingLinkage
;
880 case GlobalValue::InternalLinkage
:
881 return LLVMInternalLinkage
;
882 case GlobalValue::PrivateLinkage
:
883 return LLVMPrivateLinkage
;
884 case GlobalValue::LinkerPrivateLinkage
:
885 return LLVMLinkerPrivateLinkage
;
886 case GlobalValue::DLLImportLinkage
:
887 return LLVMDLLImportLinkage
;
888 case GlobalValue::DLLExportLinkage
:
889 return LLVMDLLExportLinkage
;
890 case GlobalValue::ExternalWeakLinkage
:
891 return LLVMExternalWeakLinkage
;
892 case GlobalValue::GhostLinkage
:
893 return LLVMGhostLinkage
;
894 case GlobalValue::CommonLinkage
:
895 return LLVMCommonLinkage
;
898 // Should never get here.
899 return static_cast<LLVMLinkage
>(0);
902 void LLVMSetLinkage(LLVMValueRef Global
, LLVMLinkage Linkage
) {
903 GlobalValue
*GV
= unwrap
<GlobalValue
>(Global
);
907 assert(false && "Unhandled Linkage Type.");
908 case LLVMExternalLinkage
:
909 GV
->setLinkage(GlobalValue::ExternalLinkage
);
911 case LLVMAvailableExternallyLinkage
:
912 GV
->setLinkage(GlobalValue::AvailableExternallyLinkage
);
914 case LLVMLinkOnceAnyLinkage
:
915 GV
->setLinkage(GlobalValue::LinkOnceAnyLinkage
);
917 case LLVMLinkOnceODRLinkage
:
918 GV
->setLinkage(GlobalValue::LinkOnceODRLinkage
);
920 case LLVMWeakAnyLinkage
:
921 GV
->setLinkage(GlobalValue::WeakAnyLinkage
);
923 case LLVMWeakODRLinkage
:
924 GV
->setLinkage(GlobalValue::WeakODRLinkage
);
926 case LLVMAppendingLinkage
:
927 GV
->setLinkage(GlobalValue::AppendingLinkage
);
929 case LLVMInternalLinkage
:
930 GV
->setLinkage(GlobalValue::InternalLinkage
);
932 case LLVMPrivateLinkage
:
933 GV
->setLinkage(GlobalValue::PrivateLinkage
);
935 case LLVMLinkerPrivateLinkage
:
936 GV
->setLinkage(GlobalValue::LinkerPrivateLinkage
);
938 case LLVMDLLImportLinkage
:
939 GV
->setLinkage(GlobalValue::DLLImportLinkage
);
941 case LLVMDLLExportLinkage
:
942 GV
->setLinkage(GlobalValue::DLLExportLinkage
);
944 case LLVMExternalWeakLinkage
:
945 GV
->setLinkage(GlobalValue::ExternalWeakLinkage
);
947 case LLVMGhostLinkage
:
948 GV
->setLinkage(GlobalValue::GhostLinkage
);
950 case LLVMCommonLinkage
:
951 GV
->setLinkage(GlobalValue::CommonLinkage
);
956 const char *LLVMGetSection(LLVMValueRef Global
) {
957 return unwrap
<GlobalValue
>(Global
)->getSection().c_str();
960 void LLVMSetSection(LLVMValueRef Global
, const char *Section
) {
961 unwrap
<GlobalValue
>(Global
)->setSection(Section
);
964 LLVMVisibility
LLVMGetVisibility(LLVMValueRef Global
) {
965 return static_cast<LLVMVisibility
>(
966 unwrap
<GlobalValue
>(Global
)->getVisibility());
969 void LLVMSetVisibility(LLVMValueRef Global
, LLVMVisibility Viz
) {
970 unwrap
<GlobalValue
>(Global
)
971 ->setVisibility(static_cast<GlobalValue::VisibilityTypes
>(Viz
));
974 unsigned LLVMGetAlignment(LLVMValueRef Global
) {
975 return unwrap
<GlobalValue
>(Global
)->getAlignment();
978 void LLVMSetAlignment(LLVMValueRef Global
, unsigned Bytes
) {
979 unwrap
<GlobalValue
>(Global
)->setAlignment(Bytes
);
982 /*--.. Operations on global variables ......................................--*/
984 LLVMValueRef
LLVMAddGlobal(LLVMModuleRef M
, LLVMTypeRef Ty
, const char *Name
) {
985 return wrap(new GlobalVariable(*unwrap(M
), unwrap(Ty
), false,
986 GlobalValue::ExternalLinkage
, 0, Name
));
989 LLVMValueRef
LLVMGetNamedGlobal(LLVMModuleRef M
, const char *Name
) {
990 return wrap(unwrap(M
)->getNamedGlobal(Name
));
993 LLVMValueRef
LLVMGetFirstGlobal(LLVMModuleRef M
) {
994 Module
*Mod
= unwrap(M
);
995 Module::global_iterator I
= Mod
->global_begin();
996 if (I
== Mod
->global_end())
1001 LLVMValueRef
LLVMGetLastGlobal(LLVMModuleRef M
) {
1002 Module
*Mod
= unwrap(M
);
1003 Module::global_iterator I
= Mod
->global_end();
1004 if (I
== Mod
->global_begin())
1009 LLVMValueRef
LLVMGetNextGlobal(LLVMValueRef GlobalVar
) {
1010 GlobalVariable
*GV
= unwrap
<GlobalVariable
>(GlobalVar
);
1011 Module::global_iterator I
= GV
;
1012 if (++I
== GV
->getParent()->global_end())
1017 LLVMValueRef
LLVMGetPreviousGlobal(LLVMValueRef GlobalVar
) {
1018 GlobalVariable
*GV
= unwrap
<GlobalVariable
>(GlobalVar
);
1019 Module::global_iterator I
= GV
;
1020 if (I
== GV
->getParent()->global_begin())
1025 void LLVMDeleteGlobal(LLVMValueRef GlobalVar
) {
1026 unwrap
<GlobalVariable
>(GlobalVar
)->eraseFromParent();
1029 LLVMValueRef
LLVMGetInitializer(LLVMValueRef GlobalVar
) {
1030 return wrap(unwrap
<GlobalVariable
>(GlobalVar
)->getInitializer());
1033 void LLVMSetInitializer(LLVMValueRef GlobalVar
, LLVMValueRef ConstantVal
) {
1034 unwrap
<GlobalVariable
>(GlobalVar
)
1035 ->setInitializer(unwrap
<Constant
>(ConstantVal
));
1038 int LLVMIsThreadLocal(LLVMValueRef GlobalVar
) {
1039 return unwrap
<GlobalVariable
>(GlobalVar
)->isThreadLocal();
1042 void LLVMSetThreadLocal(LLVMValueRef GlobalVar
, int IsThreadLocal
) {
1043 unwrap
<GlobalVariable
>(GlobalVar
)->setThreadLocal(IsThreadLocal
!= 0);
1046 int LLVMIsGlobalConstant(LLVMValueRef GlobalVar
) {
1047 return unwrap
<GlobalVariable
>(GlobalVar
)->isConstant();
1050 void LLVMSetGlobalConstant(LLVMValueRef GlobalVar
, int IsConstant
) {
1051 unwrap
<GlobalVariable
>(GlobalVar
)->setConstant(IsConstant
!= 0);
1054 /*--.. Operations on aliases ......................................--*/
1056 LLVMValueRef
LLVMAddAlias(LLVMModuleRef M
, LLVMTypeRef Ty
, LLVMValueRef Aliasee
,
1058 return wrap(new GlobalAlias(unwrap(Ty
), GlobalValue::ExternalLinkage
, Name
,
1059 unwrap
<Constant
>(Aliasee
), unwrap (M
)));
1062 /*--.. Operations on functions .............................................--*/
1064 LLVMValueRef
LLVMAddFunction(LLVMModuleRef M
, const char *Name
,
1065 LLVMTypeRef FunctionTy
) {
1066 return wrap(Function::Create(unwrap
<FunctionType
>(FunctionTy
),
1067 GlobalValue::ExternalLinkage
, Name
, unwrap(M
)));
1070 LLVMValueRef
LLVMGetNamedFunction(LLVMModuleRef M
, const char *Name
) {
1071 return wrap(unwrap(M
)->getFunction(Name
));
1074 LLVMValueRef
LLVMGetFirstFunction(LLVMModuleRef M
) {
1075 Module
*Mod
= unwrap(M
);
1076 Module::iterator I
= Mod
->begin();
1077 if (I
== Mod
->end())
1082 LLVMValueRef
LLVMGetLastFunction(LLVMModuleRef M
) {
1083 Module
*Mod
= unwrap(M
);
1084 Module::iterator I
= Mod
->end();
1085 if (I
== Mod
->begin())
1090 LLVMValueRef
LLVMGetNextFunction(LLVMValueRef Fn
) {
1091 Function
*Func
= unwrap
<Function
>(Fn
);
1092 Module::iterator I
= Func
;
1093 if (++I
== Func
->getParent()->end())
1098 LLVMValueRef
LLVMGetPreviousFunction(LLVMValueRef Fn
) {
1099 Function
*Func
= unwrap
<Function
>(Fn
);
1100 Module::iterator I
= Func
;
1101 if (I
== Func
->getParent()->begin())
1106 void LLVMDeleteFunction(LLVMValueRef Fn
) {
1107 unwrap
<Function
>(Fn
)->eraseFromParent();
1110 unsigned LLVMGetIntrinsicID(LLVMValueRef Fn
) {
1111 if (Function
*F
= dyn_cast
<Function
>(unwrap(Fn
)))
1112 return F
->getIntrinsicID();
1116 unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn
) {
1117 return unwrap
<Function
>(Fn
)->getCallingConv();
1120 void LLVMSetFunctionCallConv(LLVMValueRef Fn
, unsigned CC
) {
1121 return unwrap
<Function
>(Fn
)->setCallingConv(
1122 static_cast<CallingConv::ID
>(CC
));
1125 const char *LLVMGetGC(LLVMValueRef Fn
) {
1126 Function
*F
= unwrap
<Function
>(Fn
);
1127 return F
->hasGC()? F
->getGC() : 0;
1130 void LLVMSetGC(LLVMValueRef Fn
, const char *GC
) {
1131 Function
*F
= unwrap
<Function
>(Fn
);
1138 void LLVMAddFunctionAttr(LLVMValueRef Fn
, LLVMAttribute PA
) {
1139 Function
*Func
= unwrap
<Function
>(Fn
);
1140 const AttrListPtr PAL
= Func
->getAttributes();
1141 const AttrListPtr PALnew
= PAL
.addAttr(0, PA
);
1142 Func
->setAttributes(PALnew
);
1145 void LLVMRemoveFunctionAttr(LLVMValueRef Fn
, LLVMAttribute PA
) {
1146 Function
*Func
= unwrap
<Function
>(Fn
);
1147 const AttrListPtr PAL
= Func
->getAttributes();
1148 const AttrListPtr PALnew
= PAL
.removeAttr(0, PA
);
1149 Func
->setAttributes(PALnew
);
1152 /*--.. Operations on parameters ............................................--*/
1154 unsigned LLVMCountParams(LLVMValueRef FnRef
) {
1155 // This function is strictly redundant to
1156 // LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
1157 return unwrap
<Function
>(FnRef
)->arg_size();
1160 void LLVMGetParams(LLVMValueRef FnRef
, LLVMValueRef
*ParamRefs
) {
1161 Function
*Fn
= unwrap
<Function
>(FnRef
);
1162 for (Function::arg_iterator I
= Fn
->arg_begin(),
1163 E
= Fn
->arg_end(); I
!= E
; I
++)
1164 *ParamRefs
++ = wrap(I
);
1167 LLVMValueRef
LLVMGetParam(LLVMValueRef FnRef
, unsigned index
) {
1168 Function::arg_iterator AI
= unwrap
<Function
>(FnRef
)->arg_begin();
1174 LLVMValueRef
LLVMGetParamParent(LLVMValueRef V
) {
1175 return wrap(unwrap
<Argument
>(V
)->getParent());
1178 LLVMValueRef
LLVMGetFirstParam(LLVMValueRef Fn
) {
1179 Function
*Func
= unwrap
<Function
>(Fn
);
1180 Function::arg_iterator I
= Func
->arg_begin();
1181 if (I
== Func
->arg_end())
1186 LLVMValueRef
LLVMGetLastParam(LLVMValueRef Fn
) {
1187 Function
*Func
= unwrap
<Function
>(Fn
);
1188 Function::arg_iterator I
= Func
->arg_end();
1189 if (I
== Func
->arg_begin())
1194 LLVMValueRef
LLVMGetNextParam(LLVMValueRef Arg
) {
1195 Argument
*A
= unwrap
<Argument
>(Arg
);
1196 Function::arg_iterator I
= A
;
1197 if (++I
== A
->getParent()->arg_end())
1202 LLVMValueRef
LLVMGetPreviousParam(LLVMValueRef Arg
) {
1203 Argument
*A
= unwrap
<Argument
>(Arg
);
1204 Function::arg_iterator I
= A
;
1205 if (I
== A
->getParent()->arg_begin())
1210 void LLVMAddAttribute(LLVMValueRef Arg
, LLVMAttribute PA
) {
1211 unwrap
<Argument
>(Arg
)->addAttr(PA
);
1214 void LLVMRemoveAttribute(LLVMValueRef Arg
, LLVMAttribute PA
) {
1215 unwrap
<Argument
>(Arg
)->removeAttr(PA
);
1218 void LLVMSetParamAlignment(LLVMValueRef Arg
, unsigned align
) {
1219 unwrap
<Argument
>(Arg
)->addAttr(
1220 Attribute::constructAlignmentFromInt(align
));
1223 /*--.. Operations on basic blocks ..........................................--*/
1225 LLVMValueRef
LLVMBasicBlockAsValue(LLVMBasicBlockRef BB
) {
1226 return wrap(static_cast<Value
*>(unwrap(BB
)));
1229 int LLVMValueIsBasicBlock(LLVMValueRef Val
) {
1230 return isa
<BasicBlock
>(unwrap(Val
));
1233 LLVMBasicBlockRef
LLVMValueAsBasicBlock(LLVMValueRef Val
) {
1234 return wrap(unwrap
<BasicBlock
>(Val
));
1237 LLVMValueRef
LLVMGetBasicBlockParent(LLVMBasicBlockRef BB
) {
1238 return wrap(unwrap(BB
)->getParent());
1241 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef
) {
1242 return unwrap
<Function
>(FnRef
)->size();
1245 void LLVMGetBasicBlocks(LLVMValueRef FnRef
, LLVMBasicBlockRef
*BasicBlocksRefs
){
1246 Function
*Fn
= unwrap
<Function
>(FnRef
);
1247 for (Function::iterator I
= Fn
->begin(), E
= Fn
->end(); I
!= E
; I
++)
1248 *BasicBlocksRefs
++ = wrap(I
);
1251 LLVMBasicBlockRef
LLVMGetEntryBasicBlock(LLVMValueRef Fn
) {
1252 return wrap(&unwrap
<Function
>(Fn
)->getEntryBlock());
1255 LLVMBasicBlockRef
LLVMGetFirstBasicBlock(LLVMValueRef Fn
) {
1256 Function
*Func
= unwrap
<Function
>(Fn
);
1257 Function::iterator I
= Func
->begin();
1258 if (I
== Func
->end())
1263 LLVMBasicBlockRef
LLVMGetLastBasicBlock(LLVMValueRef Fn
) {
1264 Function
*Func
= unwrap
<Function
>(Fn
);
1265 Function::iterator I
= Func
->end();
1266 if (I
== Func
->begin())
1271 LLVMBasicBlockRef
LLVMGetNextBasicBlock(LLVMBasicBlockRef BB
) {
1272 BasicBlock
*Block
= unwrap(BB
);
1273 Function::iterator I
= Block
;
1274 if (++I
== Block
->getParent()->end())
1279 LLVMBasicBlockRef
LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB
) {
1280 BasicBlock
*Block
= unwrap(BB
);
1281 Function::iterator I
= Block
;
1282 if (I
== Block
->getParent()->begin())
1287 LLVMBasicBlockRef
LLVMAppendBasicBlockInContext(LLVMContextRef C
,
1290 return wrap(BasicBlock::Create(*unwrap(C
), Name
, unwrap
<Function
>(FnRef
)));
1293 LLVMBasicBlockRef
LLVMAppendBasicBlock(LLVMValueRef FnRef
, const char *Name
) {
1294 return LLVMAppendBasicBlockInContext(LLVMGetGlobalContext(), FnRef
, Name
);
1297 LLVMBasicBlockRef
LLVMInsertBasicBlockInContext(LLVMContextRef C
,
1298 LLVMBasicBlockRef BBRef
,
1300 BasicBlock
*BB
= unwrap(BBRef
);
1301 return wrap(BasicBlock::Create(*unwrap(C
), Name
, BB
->getParent(), BB
));
1304 LLVMBasicBlockRef
LLVMInsertBasicBlock(LLVMBasicBlockRef BBRef
,
1306 return LLVMInsertBasicBlockInContext(LLVMGetGlobalContext(), BBRef
, Name
);
1309 void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef
) {
1310 unwrap(BBRef
)->eraseFromParent();
1313 /*--.. Operations on instructions ..........................................--*/
1315 LLVMBasicBlockRef
LLVMGetInstructionParent(LLVMValueRef Inst
) {
1316 return wrap(unwrap
<Instruction
>(Inst
)->getParent());
1319 LLVMValueRef
LLVMGetFirstInstruction(LLVMBasicBlockRef BB
) {
1320 BasicBlock
*Block
= unwrap(BB
);
1321 BasicBlock::iterator I
= Block
->begin();
1322 if (I
== Block
->end())
1327 LLVMValueRef
LLVMGetLastInstruction(LLVMBasicBlockRef BB
) {
1328 BasicBlock
*Block
= unwrap(BB
);
1329 BasicBlock::iterator I
= Block
->end();
1330 if (I
== Block
->begin())
1335 LLVMValueRef
LLVMGetNextInstruction(LLVMValueRef Inst
) {
1336 Instruction
*Instr
= unwrap
<Instruction
>(Inst
);
1337 BasicBlock::iterator I
= Instr
;
1338 if (++I
== Instr
->getParent()->end())
1343 LLVMValueRef
LLVMGetPreviousInstruction(LLVMValueRef Inst
) {
1344 Instruction
*Instr
= unwrap
<Instruction
>(Inst
);
1345 BasicBlock::iterator I
= Instr
;
1346 if (I
== Instr
->getParent()->begin())
1351 /*--.. Call and invoke instructions ........................................--*/
1353 unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr
) {
1354 Value
*V
= unwrap(Instr
);
1355 if (CallInst
*CI
= dyn_cast
<CallInst
>(V
))
1356 return CI
->getCallingConv();
1357 else if (InvokeInst
*II
= dyn_cast
<InvokeInst
>(V
))
1358 return II
->getCallingConv();
1359 llvm_unreachable("LLVMGetInstructionCallConv applies only to call and invoke!");
1363 void LLVMSetInstructionCallConv(LLVMValueRef Instr
, unsigned CC
) {
1364 Value
*V
= unwrap(Instr
);
1365 if (CallInst
*CI
= dyn_cast
<CallInst
>(V
))
1366 return CI
->setCallingConv(static_cast<CallingConv::ID
>(CC
));
1367 else if (InvokeInst
*II
= dyn_cast
<InvokeInst
>(V
))
1368 return II
->setCallingConv(static_cast<CallingConv::ID
>(CC
));
1369 llvm_unreachable("LLVMSetInstructionCallConv applies only to call and invoke!");
1372 void LLVMAddInstrAttribute(LLVMValueRef Instr
, unsigned index
,
1374 CallSite Call
= CallSite(unwrap
<Instruction
>(Instr
));
1376 Call
.getAttributes().addAttr(index
, PA
));
1379 void LLVMRemoveInstrAttribute(LLVMValueRef Instr
, unsigned index
,
1381 CallSite Call
= CallSite(unwrap
<Instruction
>(Instr
));
1383 Call
.getAttributes().removeAttr(index
, PA
));
1386 void LLVMSetInstrParamAlignment(LLVMValueRef Instr
, unsigned index
,
1388 CallSite Call
= CallSite(unwrap
<Instruction
>(Instr
));
1390 Call
.getAttributes().addAttr(index
,
1391 Attribute::constructAlignmentFromInt(align
)));
1394 /*--.. Operations on call instructions (only) ..............................--*/
1396 int LLVMIsTailCall(LLVMValueRef Call
) {
1397 return unwrap
<CallInst
>(Call
)->isTailCall();
1400 void LLVMSetTailCall(LLVMValueRef Call
, int isTailCall
) {
1401 unwrap
<CallInst
>(Call
)->setTailCall(isTailCall
);
1404 /*--.. Operations on phi nodes .............................................--*/
1406 void LLVMAddIncoming(LLVMValueRef PhiNode
, LLVMValueRef
*IncomingValues
,
1407 LLVMBasicBlockRef
*IncomingBlocks
, unsigned Count
) {
1408 PHINode
*PhiVal
= unwrap
<PHINode
>(PhiNode
);
1409 for (unsigned I
= 0; I
!= Count
; ++I
)
1410 PhiVal
->addIncoming(unwrap(IncomingValues
[I
]), unwrap(IncomingBlocks
[I
]));
1413 unsigned LLVMCountIncoming(LLVMValueRef PhiNode
) {
1414 return unwrap
<PHINode
>(PhiNode
)->getNumIncomingValues();
1417 LLVMValueRef
LLVMGetIncomingValue(LLVMValueRef PhiNode
, unsigned Index
) {
1418 return wrap(unwrap
<PHINode
>(PhiNode
)->getIncomingValue(Index
));
1421 LLVMBasicBlockRef
LLVMGetIncomingBlock(LLVMValueRef PhiNode
, unsigned Index
) {
1422 return wrap(unwrap
<PHINode
>(PhiNode
)->getIncomingBlock(Index
));
1426 /*===-- Instruction builders ----------------------------------------------===*/
1428 LLVMBuilderRef
LLVMCreateBuilderInContext(LLVMContextRef C
) {
1429 return wrap(new IRBuilder
<>(*unwrap(C
)));
1432 LLVMBuilderRef
LLVMCreateBuilder(void) {
1433 return LLVMCreateBuilderInContext(LLVMGetGlobalContext());
1436 void LLVMPositionBuilder(LLVMBuilderRef Builder
, LLVMBasicBlockRef Block
,
1437 LLVMValueRef Instr
) {
1438 BasicBlock
*BB
= unwrap(Block
);
1439 Instruction
*I
= Instr
? unwrap
<Instruction
>(Instr
) : (Instruction
*) BB
->end();
1440 unwrap(Builder
)->SetInsertPoint(BB
, I
);
1443 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder
, LLVMValueRef Instr
) {
1444 Instruction
*I
= unwrap
<Instruction
>(Instr
);
1445 unwrap(Builder
)->SetInsertPoint(I
->getParent(), I
);
1448 void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder
, LLVMBasicBlockRef Block
) {
1449 BasicBlock
*BB
= unwrap(Block
);
1450 unwrap(Builder
)->SetInsertPoint(BB
);
1453 LLVMBasicBlockRef
LLVMGetInsertBlock(LLVMBuilderRef Builder
) {
1454 return wrap(unwrap(Builder
)->GetInsertBlock());
1457 void LLVMClearInsertionPosition(LLVMBuilderRef Builder
) {
1458 unwrap(Builder
)->ClearInsertionPoint ();
1461 void LLVMInsertIntoBuilder(LLVMBuilderRef Builder
, LLVMValueRef Instr
) {
1462 unwrap(Builder
)->Insert(unwrap
<Instruction
>(Instr
));
1465 void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder
, LLVMValueRef Instr
,
1467 unwrap(Builder
)->Insert(unwrap
<Instruction
>(Instr
), Name
);
1470 void LLVMDisposeBuilder(LLVMBuilderRef Builder
) {
1471 delete unwrap(Builder
);
1474 /*--.. Instruction builders ................................................--*/
1476 LLVMValueRef
LLVMBuildRetVoid(LLVMBuilderRef B
) {
1477 return wrap(unwrap(B
)->CreateRetVoid());
1480 LLVMValueRef
LLVMBuildRet(LLVMBuilderRef B
, LLVMValueRef V
) {
1481 return wrap(unwrap(B
)->CreateRet(unwrap(V
)));
1484 LLVMValueRef
LLVMBuildAggregateRet(LLVMBuilderRef B
, LLVMValueRef
*RetVals
,
1486 return wrap(unwrap(B
)->CreateAggregateRet(unwrap(RetVals
), N
));
1489 LLVMValueRef
LLVMBuildBr(LLVMBuilderRef B
, LLVMBasicBlockRef Dest
) {
1490 return wrap(unwrap(B
)->CreateBr(unwrap(Dest
)));
1493 LLVMValueRef
LLVMBuildCondBr(LLVMBuilderRef B
, LLVMValueRef If
,
1494 LLVMBasicBlockRef Then
, LLVMBasicBlockRef Else
) {
1495 return wrap(unwrap(B
)->CreateCondBr(unwrap(If
), unwrap(Then
), unwrap(Else
)));
1498 LLVMValueRef
LLVMBuildSwitch(LLVMBuilderRef B
, LLVMValueRef V
,
1499 LLVMBasicBlockRef Else
, unsigned NumCases
) {
1500 return wrap(unwrap(B
)->CreateSwitch(unwrap(V
), unwrap(Else
), NumCases
));
1503 LLVMValueRef
LLVMBuildInvoke(LLVMBuilderRef B
, LLVMValueRef Fn
,
1504 LLVMValueRef
*Args
, unsigned NumArgs
,
1505 LLVMBasicBlockRef Then
, LLVMBasicBlockRef Catch
,
1507 return wrap(unwrap(B
)->CreateInvoke(unwrap(Fn
), unwrap(Then
), unwrap(Catch
),
1508 unwrap(Args
), unwrap(Args
) + NumArgs
,
1512 LLVMValueRef
LLVMBuildUnwind(LLVMBuilderRef B
) {
1513 return wrap(unwrap(B
)->CreateUnwind());
1516 LLVMValueRef
LLVMBuildUnreachable(LLVMBuilderRef B
) {
1517 return wrap(unwrap(B
)->CreateUnreachable());
1520 void LLVMAddCase(LLVMValueRef Switch
, LLVMValueRef OnVal
,
1521 LLVMBasicBlockRef Dest
) {
1522 unwrap
<SwitchInst
>(Switch
)->addCase(unwrap
<ConstantInt
>(OnVal
), unwrap(Dest
));
1525 /*--.. Arithmetic ..........................................................--*/
1527 LLVMValueRef
LLVMBuildAdd(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1529 return wrap(unwrap(B
)->CreateAdd(unwrap(LHS
), unwrap(RHS
), Name
));
1532 LLVMValueRef
LLVMBuildNSWAdd(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1534 return wrap(unwrap(B
)->CreateNSWAdd(unwrap(LHS
), unwrap(RHS
), Name
));
1537 LLVMValueRef
LLVMBuildFAdd(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1539 return wrap(unwrap(B
)->CreateFAdd(unwrap(LHS
), unwrap(RHS
), Name
));
1542 LLVMValueRef
LLVMBuildSub(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1544 return wrap(unwrap(B
)->CreateSub(unwrap(LHS
), unwrap(RHS
), Name
));
1547 LLVMValueRef
LLVMBuildFSub(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1549 return wrap(unwrap(B
)->CreateFSub(unwrap(LHS
), unwrap(RHS
), Name
));
1552 LLVMValueRef
LLVMBuildMul(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1554 return wrap(unwrap(B
)->CreateMul(unwrap(LHS
), unwrap(RHS
), Name
));
1557 LLVMValueRef
LLVMBuildFMul(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1559 return wrap(unwrap(B
)->CreateFMul(unwrap(LHS
), unwrap(RHS
), Name
));
1562 LLVMValueRef
LLVMBuildUDiv(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1564 return wrap(unwrap(B
)->CreateUDiv(unwrap(LHS
), unwrap(RHS
), Name
));
1567 LLVMValueRef
LLVMBuildSDiv(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1569 return wrap(unwrap(B
)->CreateSDiv(unwrap(LHS
), unwrap(RHS
), Name
));
1572 LLVMValueRef
LLVMBuildExactSDiv(LLVMBuilderRef B
, LLVMValueRef LHS
,
1573 LLVMValueRef RHS
, const char *Name
) {
1574 return wrap(unwrap(B
)->CreateExactSDiv(unwrap(LHS
), unwrap(RHS
), Name
));
1577 LLVMValueRef
LLVMBuildFDiv(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1579 return wrap(unwrap(B
)->CreateFDiv(unwrap(LHS
), unwrap(RHS
), Name
));
1582 LLVMValueRef
LLVMBuildURem(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1584 return wrap(unwrap(B
)->CreateURem(unwrap(LHS
), unwrap(RHS
), Name
));
1587 LLVMValueRef
LLVMBuildSRem(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1589 return wrap(unwrap(B
)->CreateSRem(unwrap(LHS
), unwrap(RHS
), Name
));
1592 LLVMValueRef
LLVMBuildFRem(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1594 return wrap(unwrap(B
)->CreateFRem(unwrap(LHS
), unwrap(RHS
), Name
));
1597 LLVMValueRef
LLVMBuildShl(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1599 return wrap(unwrap(B
)->CreateShl(unwrap(LHS
), unwrap(RHS
), Name
));
1602 LLVMValueRef
LLVMBuildLShr(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1604 return wrap(unwrap(B
)->CreateLShr(unwrap(LHS
), unwrap(RHS
), Name
));
1607 LLVMValueRef
LLVMBuildAShr(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1609 return wrap(unwrap(B
)->CreateAShr(unwrap(LHS
), unwrap(RHS
), Name
));
1612 LLVMValueRef
LLVMBuildAnd(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1614 return wrap(unwrap(B
)->CreateAnd(unwrap(LHS
), unwrap(RHS
), Name
));
1617 LLVMValueRef
LLVMBuildOr(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1619 return wrap(unwrap(B
)->CreateOr(unwrap(LHS
), unwrap(RHS
), Name
));
1622 LLVMValueRef
LLVMBuildXor(LLVMBuilderRef B
, LLVMValueRef LHS
, LLVMValueRef RHS
,
1624 return wrap(unwrap(B
)->CreateXor(unwrap(LHS
), unwrap(RHS
), Name
));
1627 LLVMValueRef
LLVMBuildNeg(LLVMBuilderRef B
, LLVMValueRef V
, const char *Name
) {
1628 return wrap(unwrap(B
)->CreateNeg(unwrap(V
), Name
));
1631 LLVMValueRef
LLVMBuildNot(LLVMBuilderRef B
, LLVMValueRef V
, const char *Name
) {
1632 return wrap(unwrap(B
)->CreateNot(unwrap(V
), Name
));
1635 /*--.. Memory ..............................................................--*/
1637 LLVMValueRef
LLVMBuildMalloc(LLVMBuilderRef B
, LLVMTypeRef Ty
,
1639 return wrap(unwrap(B
)->CreateMalloc(unwrap(Ty
), 0, Name
));
1642 LLVMValueRef
LLVMBuildArrayMalloc(LLVMBuilderRef B
, LLVMTypeRef Ty
,
1643 LLVMValueRef Val
, const char *Name
) {
1644 return wrap(unwrap(B
)->CreateMalloc(unwrap(Ty
), unwrap(Val
), Name
));
1647 LLVMValueRef
LLVMBuildAlloca(LLVMBuilderRef B
, LLVMTypeRef Ty
,
1649 return wrap(unwrap(B
)->CreateAlloca(unwrap(Ty
), 0, Name
));
1652 LLVMValueRef
LLVMBuildArrayAlloca(LLVMBuilderRef B
, LLVMTypeRef Ty
,
1653 LLVMValueRef Val
, const char *Name
) {
1654 return wrap(unwrap(B
)->CreateAlloca(unwrap(Ty
), unwrap(Val
), Name
));
1657 LLVMValueRef
LLVMBuildFree(LLVMBuilderRef B
, LLVMValueRef PointerVal
) {
1658 return wrap(unwrap(B
)->CreateFree(unwrap(PointerVal
)));
1662 LLVMValueRef
LLVMBuildLoad(LLVMBuilderRef B
, LLVMValueRef PointerVal
,
1664 return wrap(unwrap(B
)->CreateLoad(unwrap(PointerVal
), Name
));
1667 LLVMValueRef
LLVMBuildStore(LLVMBuilderRef B
, LLVMValueRef Val
,
1668 LLVMValueRef PointerVal
) {
1669 return wrap(unwrap(B
)->CreateStore(unwrap(Val
), unwrap(PointerVal
)));
1672 LLVMValueRef
LLVMBuildGEP(LLVMBuilderRef B
, LLVMValueRef Pointer
,
1673 LLVMValueRef
*Indices
, unsigned NumIndices
,
1675 return wrap(unwrap(B
)->CreateGEP(unwrap(Pointer
), unwrap(Indices
),
1676 unwrap(Indices
) + NumIndices
, Name
));
1679 LLVMValueRef
LLVMBuildInBoundsGEP(LLVMBuilderRef B
, LLVMValueRef Pointer
,
1680 LLVMValueRef
*Indices
, unsigned NumIndices
,
1682 return wrap(unwrap(B
)->CreateInBoundsGEP(unwrap(Pointer
), unwrap(Indices
),
1683 unwrap(Indices
) + NumIndices
, Name
));
1686 LLVMValueRef
LLVMBuildStructGEP(LLVMBuilderRef B
, LLVMValueRef Pointer
,
1687 unsigned Idx
, const char *Name
) {
1688 return wrap(unwrap(B
)->CreateStructGEP(unwrap(Pointer
), Idx
, Name
));
1691 LLVMValueRef
LLVMBuildGlobalString(LLVMBuilderRef B
, const char *Str
,
1693 return wrap(unwrap(B
)->CreateGlobalString(Str
, Name
));
1696 LLVMValueRef
LLVMBuildGlobalStringPtr(LLVMBuilderRef B
, const char *Str
,
1698 return wrap(unwrap(B
)->CreateGlobalStringPtr(Str
, Name
));
1701 /*--.. Casts ...............................................................--*/
1703 LLVMValueRef
LLVMBuildTrunc(LLVMBuilderRef B
, LLVMValueRef Val
,
1704 LLVMTypeRef DestTy
, const char *Name
) {
1705 return wrap(unwrap(B
)->CreateTrunc(unwrap(Val
), unwrap(DestTy
), Name
));
1708 LLVMValueRef
LLVMBuildZExt(LLVMBuilderRef B
, LLVMValueRef Val
,
1709 LLVMTypeRef DestTy
, const char *Name
) {
1710 return wrap(unwrap(B
)->CreateZExt(unwrap(Val
), unwrap(DestTy
), Name
));
1713 LLVMValueRef
LLVMBuildSExt(LLVMBuilderRef B
, LLVMValueRef Val
,
1714 LLVMTypeRef DestTy
, const char *Name
) {
1715 return wrap(unwrap(B
)->CreateSExt(unwrap(Val
), unwrap(DestTy
), Name
));
1718 LLVMValueRef
LLVMBuildFPToUI(LLVMBuilderRef B
, LLVMValueRef Val
,
1719 LLVMTypeRef DestTy
, const char *Name
) {
1720 return wrap(unwrap(B
)->CreateFPToUI(unwrap(Val
), unwrap(DestTy
), Name
));
1723 LLVMValueRef
LLVMBuildFPToSI(LLVMBuilderRef B
, LLVMValueRef Val
,
1724 LLVMTypeRef DestTy
, const char *Name
) {
1725 return wrap(unwrap(B
)->CreateFPToSI(unwrap(Val
), unwrap(DestTy
), Name
));
1728 LLVMValueRef
LLVMBuildUIToFP(LLVMBuilderRef B
, LLVMValueRef Val
,
1729 LLVMTypeRef DestTy
, const char *Name
) {
1730 return wrap(unwrap(B
)->CreateUIToFP(unwrap(Val
), unwrap(DestTy
), Name
));
1733 LLVMValueRef
LLVMBuildSIToFP(LLVMBuilderRef B
, LLVMValueRef Val
,
1734 LLVMTypeRef DestTy
, const char *Name
) {
1735 return wrap(unwrap(B
)->CreateSIToFP(unwrap(Val
), unwrap(DestTy
), Name
));
1738 LLVMValueRef
LLVMBuildFPTrunc(LLVMBuilderRef B
, LLVMValueRef Val
,
1739 LLVMTypeRef DestTy
, const char *Name
) {
1740 return wrap(unwrap(B
)->CreateFPTrunc(unwrap(Val
), unwrap(DestTy
), Name
));
1743 LLVMValueRef
LLVMBuildFPExt(LLVMBuilderRef B
, LLVMValueRef Val
,
1744 LLVMTypeRef DestTy
, const char *Name
) {
1745 return wrap(unwrap(B
)->CreateFPExt(unwrap(Val
), unwrap(DestTy
), Name
));
1748 LLVMValueRef
LLVMBuildPtrToInt(LLVMBuilderRef B
, LLVMValueRef Val
,
1749 LLVMTypeRef DestTy
, const char *Name
) {
1750 return wrap(unwrap(B
)->CreatePtrToInt(unwrap(Val
), unwrap(DestTy
), Name
));
1753 LLVMValueRef
LLVMBuildIntToPtr(LLVMBuilderRef B
, LLVMValueRef Val
,
1754 LLVMTypeRef DestTy
, const char *Name
) {
1755 return wrap(unwrap(B
)->CreateIntToPtr(unwrap(Val
), unwrap(DestTy
), Name
));
1758 LLVMValueRef
LLVMBuildBitCast(LLVMBuilderRef B
, LLVMValueRef Val
,
1759 LLVMTypeRef DestTy
, const char *Name
) {
1760 return wrap(unwrap(B
)->CreateBitCast(unwrap(Val
), unwrap(DestTy
), Name
));
1763 LLVMValueRef
LLVMBuildZExtOrBitCast(LLVMBuilderRef B
, LLVMValueRef Val
,
1764 LLVMTypeRef DestTy
, const char *Name
) {
1765 return wrap(unwrap(B
)->CreateZExtOrBitCast(unwrap(Val
), unwrap(DestTy
),
1769 LLVMValueRef
LLVMBuildSExtOrBitCast(LLVMBuilderRef B
, LLVMValueRef Val
,
1770 LLVMTypeRef DestTy
, const char *Name
) {
1771 return wrap(unwrap(B
)->CreateSExtOrBitCast(unwrap(Val
), unwrap(DestTy
),
1775 LLVMValueRef
LLVMBuildTruncOrBitCast(LLVMBuilderRef B
, LLVMValueRef Val
,
1776 LLVMTypeRef DestTy
, const char *Name
) {
1777 return wrap(unwrap(B
)->CreateTruncOrBitCast(unwrap(Val
), unwrap(DestTy
),
1781 LLVMValueRef
LLVMBuildPointerCast(LLVMBuilderRef B
, LLVMValueRef Val
,
1782 LLVMTypeRef DestTy
, const char *Name
) {
1783 return wrap(unwrap(B
)->CreatePointerCast(unwrap(Val
), unwrap(DestTy
), Name
));
1786 LLVMValueRef
LLVMBuildIntCast(LLVMBuilderRef B
, LLVMValueRef Val
,
1787 LLVMTypeRef DestTy
, const char *Name
) {
1788 return wrap(unwrap(B
)->CreateIntCast(unwrap(Val
), unwrap(DestTy
), Name
));
1791 LLVMValueRef
LLVMBuildFPCast(LLVMBuilderRef B
, LLVMValueRef Val
,
1792 LLVMTypeRef DestTy
, const char *Name
) {
1793 return wrap(unwrap(B
)->CreateFPCast(unwrap(Val
), unwrap(DestTy
), Name
));
1796 /*--.. Comparisons .........................................................--*/
1798 LLVMValueRef
LLVMBuildICmp(LLVMBuilderRef B
, LLVMIntPredicate Op
,
1799 LLVMValueRef LHS
, LLVMValueRef RHS
,
1801 return wrap(unwrap(B
)->CreateICmp(static_cast<ICmpInst::Predicate
>(Op
),
1802 unwrap(LHS
), unwrap(RHS
), Name
));
1805 LLVMValueRef
LLVMBuildFCmp(LLVMBuilderRef B
, LLVMRealPredicate Op
,
1806 LLVMValueRef LHS
, LLVMValueRef RHS
,
1808 return wrap(unwrap(B
)->CreateFCmp(static_cast<FCmpInst::Predicate
>(Op
),
1809 unwrap(LHS
), unwrap(RHS
), Name
));
1812 /*--.. Miscellaneous instructions ..........................................--*/
1814 LLVMValueRef
LLVMBuildPhi(LLVMBuilderRef B
, LLVMTypeRef Ty
, const char *Name
) {
1815 return wrap(unwrap(B
)->CreatePHI(unwrap(Ty
), Name
));
1818 LLVMValueRef
LLVMBuildCall(LLVMBuilderRef B
, LLVMValueRef Fn
,
1819 LLVMValueRef
*Args
, unsigned NumArgs
,
1821 return wrap(unwrap(B
)->CreateCall(unwrap(Fn
), unwrap(Args
),
1822 unwrap(Args
) + NumArgs
, Name
));
1825 LLVMValueRef
LLVMBuildSelect(LLVMBuilderRef B
, LLVMValueRef If
,
1826 LLVMValueRef Then
, LLVMValueRef Else
,
1828 return wrap(unwrap(B
)->CreateSelect(unwrap(If
), unwrap(Then
), unwrap(Else
),
1832 LLVMValueRef
LLVMBuildVAArg(LLVMBuilderRef B
, LLVMValueRef List
,
1833 LLVMTypeRef Ty
, const char *Name
) {
1834 return wrap(unwrap(B
)->CreateVAArg(unwrap(List
), unwrap(Ty
), Name
));
1837 LLVMValueRef
LLVMBuildExtractElement(LLVMBuilderRef B
, LLVMValueRef VecVal
,
1838 LLVMValueRef Index
, const char *Name
) {
1839 return wrap(unwrap(B
)->CreateExtractElement(unwrap(VecVal
), unwrap(Index
),
1843 LLVMValueRef
LLVMBuildInsertElement(LLVMBuilderRef B
, LLVMValueRef VecVal
,
1844 LLVMValueRef EltVal
, LLVMValueRef Index
,
1846 return wrap(unwrap(B
)->CreateInsertElement(unwrap(VecVal
), unwrap(EltVal
),
1847 unwrap(Index
), Name
));
1850 LLVMValueRef
LLVMBuildShuffleVector(LLVMBuilderRef B
, LLVMValueRef V1
,
1851 LLVMValueRef V2
, LLVMValueRef Mask
,
1853 return wrap(unwrap(B
)->CreateShuffleVector(unwrap(V1
), unwrap(V2
),
1854 unwrap(Mask
), Name
));
1857 LLVMValueRef
LLVMBuildExtractValue(LLVMBuilderRef B
, LLVMValueRef AggVal
,
1858 unsigned Index
, const char *Name
) {
1859 return wrap(unwrap(B
)->CreateExtractValue(unwrap(AggVal
), Index
, Name
));
1862 LLVMValueRef
LLVMBuildInsertValue(LLVMBuilderRef B
, LLVMValueRef AggVal
,
1863 LLVMValueRef EltVal
, unsigned Index
,
1865 return wrap(unwrap(B
)->CreateInsertValue(unwrap(AggVal
), unwrap(EltVal
),
1869 LLVMValueRef
LLVMBuildIsNull(LLVMBuilderRef B
, LLVMValueRef Val
,
1871 return wrap(unwrap(B
)->CreateIsNull(unwrap(Val
), Name
));
1874 LLVMValueRef
LLVMBuildIsNotNull(LLVMBuilderRef B
, LLVMValueRef Val
,
1876 return wrap(unwrap(B
)->CreateIsNotNull(unwrap(Val
), Name
));
1879 LLVMValueRef
LLVMBuildPtrDiff(LLVMBuilderRef B
, LLVMValueRef LHS
,
1880 LLVMValueRef RHS
, const char *Name
) {
1881 return wrap(unwrap(B
)->CreatePtrDiff(unwrap(LHS
), unwrap(RHS
), Name
));
1885 /*===-- Module providers --------------------------------------------------===*/
1887 LLVMModuleProviderRef
1888 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M
) {
1889 return wrap(new ExistingModuleProvider(unwrap(M
)));
1892 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP
) {
1897 /*===-- Memory buffers ----------------------------------------------------===*/
1899 int LLVMCreateMemoryBufferWithContentsOfFile(const char *Path
,
1900 LLVMMemoryBufferRef
*OutMemBuf
,
1901 char **OutMessage
) {
1903 if (MemoryBuffer
*MB
= MemoryBuffer::getFile(Path
, &Error
)) {
1904 *OutMemBuf
= wrap(MB
);
1908 *OutMessage
= strdup(Error
.c_str());
1912 int LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef
*OutMemBuf
,
1913 char **OutMessage
) {
1914 if (MemoryBuffer
*MB
= MemoryBuffer::getSTDIN()) {
1915 *OutMemBuf
= wrap(MB
);
1919 *OutMessage
= strdup("stdin is empty.");
1923 void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf
) {
1924 delete unwrap(MemBuf
);