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 common infrastructure (including the C bindings)
11 // for libLLVMCore.a, which implements 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/InlineAsm.h"
24 #include "llvm/IntrinsicInst.h"
25 #include "llvm/PassManager.h"
26 #include "llvm/Support/CallSite.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/ErrorHandling.h"
29 #include "llvm/Support/MemoryBuffer.h"
30 #include "llvm/Support/raw_ostream.h"
31 #include "llvm/Support/system_error.h"
38 void llvm::initializeCore(PassRegistry &Registry) {
39 initializeDominatorTreePass(Registry);
40 initializePrintModulePassPass(Registry);
41 initializePrintFunctionPassPass(Registry);
42 initializeVerifierPass(Registry);
43 initializePreVerifierPass(Registry);
46 void LLVMInitializeCore(LLVMPassRegistryRef R) {
47 initializeCore(*unwrap(R));
50 /*===-- Error handling ----------------------------------------------------===*/
52 void LLVMDisposeMessage(char *Message) {
57 /*===-- Operations on contexts --------------------------------------------===*/
59 LLVMContextRef LLVMContextCreate() {
60 return wrap(new LLVMContext());
63 LLVMContextRef LLVMGetGlobalContext() {
64 return wrap(&getGlobalContext());
67 void LLVMContextDispose(LLVMContextRef C) {
71 unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name,
73 return unwrap(C)->getMDKindID(StringRef(Name, SLen));
76 unsigned LLVMGetMDKindID(const char* Name, unsigned SLen) {
77 return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen);
81 /*===-- Operations on modules ---------------------------------------------===*/
83 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
84 return wrap(new Module(ModuleID, getGlobalContext()));
87 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
89 return wrap(new Module(ModuleID, *unwrap(C)));
92 void LLVMDisposeModule(LLVMModuleRef M) {
96 /*--.. Data layout .........................................................--*/
97 const char * LLVMGetDataLayout(LLVMModuleRef M) {
98 return unwrap(M)->getDataLayout().c_str();
101 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) {
102 unwrap(M)->setDataLayout(Triple);
105 /*--.. Target triple .......................................................--*/
106 const char * LLVMGetTarget(LLVMModuleRef M) {
107 return unwrap(M)->getTargetTriple().c_str();
110 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
111 unwrap(M)->setTargetTriple(Triple);
114 /*--.. Type names ..........................................................--*/
115 LLVMBool LLVMAddTypeName(LLVMModuleRef M, const char *Name, LLVMTypeRef Ty) {
116 return unwrap(M)->addTypeName(Name, unwrap(Ty));
119 void LLVMDeleteTypeName(LLVMModuleRef M, const char *Name) {
120 TypeSymbolTable &TST = unwrap(M)->getTypeSymbolTable();
122 TypeSymbolTable::iterator I = TST.find(Name);
127 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) {
128 return wrap(unwrap(M)->getTypeByName(Name));
131 const char *LLVMGetTypeName(LLVMModuleRef M, LLVMTypeRef Ty) {
132 return unwrap(M)->getTypeName(unwrap(Ty)).c_str();
135 void LLVMDumpModule(LLVMModuleRef M) {
139 /*--.. Operations on inline assembler ......................................--*/
140 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) {
141 unwrap(M)->setModuleInlineAsm(StringRef(Asm));
145 /*--.. Operations on module contexts ......................................--*/
146 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) {
147 return wrap(&unwrap(M)->getContext());
151 /*===-- Operations on types -----------------------------------------------===*/
153 /*--.. Operations on all types (mostly) ....................................--*/
155 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) {
156 switch (unwrap(Ty)->getTypeID()) {
158 assert(false && "Unhandled TypeID.");
160 return LLVMVoidTypeKind;
161 case Type::FloatTyID:
162 return LLVMFloatTypeKind;
163 case Type::DoubleTyID:
164 return LLVMDoubleTypeKind;
165 case Type::X86_FP80TyID:
166 return LLVMX86_FP80TypeKind;
167 case Type::FP128TyID:
168 return LLVMFP128TypeKind;
169 case Type::PPC_FP128TyID:
170 return LLVMPPC_FP128TypeKind;
171 case Type::LabelTyID:
172 return LLVMLabelTypeKind;
173 case Type::MetadataTyID:
174 return LLVMMetadataTypeKind;
175 case Type::IntegerTyID:
176 return LLVMIntegerTypeKind;
177 case Type::FunctionTyID:
178 return LLVMFunctionTypeKind;
179 case Type::StructTyID:
180 return LLVMStructTypeKind;
181 case Type::ArrayTyID:
182 return LLVMArrayTypeKind;
183 case Type::PointerTyID:
184 return LLVMPointerTypeKind;
185 case Type::OpaqueTyID:
186 return LLVMOpaqueTypeKind;
187 case Type::VectorTyID:
188 return LLVMVectorTypeKind;
189 case Type::X86_MMXTyID:
190 return LLVMX86_MMXTypeKind;
194 LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty) {
195 return wrap(&unwrap(Ty)->getContext());
198 /*--.. Operations on integer types .........................................--*/
200 LLVMTypeRef LLVMInt1TypeInContext(LLVMContextRef C) {
201 return (LLVMTypeRef) Type::getInt1Ty(*unwrap(C));
203 LLVMTypeRef LLVMInt8TypeInContext(LLVMContextRef C) {
204 return (LLVMTypeRef) Type::getInt8Ty(*unwrap(C));
206 LLVMTypeRef LLVMInt16TypeInContext(LLVMContextRef C) {
207 return (LLVMTypeRef) Type::getInt16Ty(*unwrap(C));
209 LLVMTypeRef LLVMInt32TypeInContext(LLVMContextRef C) {
210 return (LLVMTypeRef) Type::getInt32Ty(*unwrap(C));
212 LLVMTypeRef LLVMInt64TypeInContext(LLVMContextRef C) {
213 return (LLVMTypeRef) Type::getInt64Ty(*unwrap(C));
215 LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits) {
216 return wrap(IntegerType::get(*unwrap(C), NumBits));
219 LLVMTypeRef LLVMInt1Type(void) {
220 return LLVMInt1TypeInContext(LLVMGetGlobalContext());
222 LLVMTypeRef LLVMInt8Type(void) {
223 return LLVMInt8TypeInContext(LLVMGetGlobalContext());
225 LLVMTypeRef LLVMInt16Type(void) {
226 return LLVMInt16TypeInContext(LLVMGetGlobalContext());
228 LLVMTypeRef LLVMInt32Type(void) {
229 return LLVMInt32TypeInContext(LLVMGetGlobalContext());
231 LLVMTypeRef LLVMInt64Type(void) {
232 return LLVMInt64TypeInContext(LLVMGetGlobalContext());
234 LLVMTypeRef LLVMIntType(unsigned NumBits) {
235 return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits);
238 unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
239 return unwrap<IntegerType>(IntegerTy)->getBitWidth();
242 /*--.. Operations on real types ............................................--*/
244 LLVMTypeRef LLVMFloatTypeInContext(LLVMContextRef C) {
245 return (LLVMTypeRef) Type::getFloatTy(*unwrap(C));
247 LLVMTypeRef LLVMDoubleTypeInContext(LLVMContextRef C) {
248 return (LLVMTypeRef) Type::getDoubleTy(*unwrap(C));
250 LLVMTypeRef LLVMX86FP80TypeInContext(LLVMContextRef C) {
251 return (LLVMTypeRef) Type::getX86_FP80Ty(*unwrap(C));
253 LLVMTypeRef LLVMFP128TypeInContext(LLVMContextRef C) {
254 return (LLVMTypeRef) Type::getFP128Ty(*unwrap(C));
256 LLVMTypeRef LLVMPPCFP128TypeInContext(LLVMContextRef C) {
257 return (LLVMTypeRef) Type::getPPC_FP128Ty(*unwrap(C));
259 LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C) {
260 return (LLVMTypeRef) Type::getX86_MMXTy(*unwrap(C));
263 LLVMTypeRef LLVMFloatType(void) {
264 return LLVMFloatTypeInContext(LLVMGetGlobalContext());
266 LLVMTypeRef LLVMDoubleType(void) {
267 return LLVMDoubleTypeInContext(LLVMGetGlobalContext());
269 LLVMTypeRef LLVMX86FP80Type(void) {
270 return LLVMX86FP80TypeInContext(LLVMGetGlobalContext());
272 LLVMTypeRef LLVMFP128Type(void) {
273 return LLVMFP128TypeInContext(LLVMGetGlobalContext());
275 LLVMTypeRef LLVMPPCFP128Type(void) {
276 return LLVMPPCFP128TypeInContext(LLVMGetGlobalContext());
278 LLVMTypeRef LLVMX86MMXType(void) {
279 return LLVMX86MMXTypeInContext(LLVMGetGlobalContext());
282 /*--.. Operations on function types ........................................--*/
284 LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
285 LLVMTypeRef *ParamTypes, unsigned ParamCount,
287 std::vector<const Type*> Tys;
288 for (LLVMTypeRef *I = ParamTypes, *E = ParamTypes + ParamCount; I != E; ++I)
289 Tys.push_back(unwrap(*I));
291 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
294 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
295 return unwrap<FunctionType>(FunctionTy)->isVarArg();
298 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
299 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
302 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
303 return unwrap<FunctionType>(FunctionTy)->getNumParams();
306 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
307 FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
308 for (FunctionType::param_iterator I = Ty->param_begin(),
309 E = Ty->param_end(); I != E; ++I)
313 /*--.. Operations on struct types ..........................................--*/
315 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
316 unsigned ElementCount, LLVMBool Packed) {
317 std::vector<const Type*> Tys;
318 for (LLVMTypeRef *I = ElementTypes,
319 *E = ElementTypes + ElementCount; I != E; ++I)
320 Tys.push_back(unwrap(*I));
322 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
325 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
326 unsigned ElementCount, LLVMBool Packed) {
327 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
328 ElementCount, Packed);
332 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) {
333 return unwrap<StructType>(StructTy)->getNumElements();
336 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
337 StructType *Ty = unwrap<StructType>(StructTy);
338 for (FunctionType::param_iterator I = Ty->element_begin(),
339 E = Ty->element_end(); I != E; ++I)
343 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) {
344 return unwrap<StructType>(StructTy)->isPacked();
347 /*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
349 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
350 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
353 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) {
354 return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
357 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
358 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
361 LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty) {
362 return wrap(unwrap<SequentialType>(Ty)->getElementType());
365 unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy) {
366 return unwrap<ArrayType>(ArrayTy)->getNumElements();
369 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) {
370 return unwrap<PointerType>(PointerTy)->getAddressSpace();
373 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
374 return unwrap<VectorType>(VectorTy)->getNumElements();
377 /*--.. Operations on other types ...........................................--*/
379 LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C) {
380 return wrap(Type::getVoidTy(*unwrap(C)));
382 LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C) {
383 return wrap(Type::getLabelTy(*unwrap(C)));
385 LLVMTypeRef LLVMOpaqueTypeInContext(LLVMContextRef C) {
386 return wrap(OpaqueType::get(*unwrap(C)));
389 LLVMTypeRef LLVMVoidType(void) {
390 return LLVMVoidTypeInContext(LLVMGetGlobalContext());
392 LLVMTypeRef LLVMLabelType(void) {
393 return LLVMLabelTypeInContext(LLVMGetGlobalContext());
395 LLVMTypeRef LLVMOpaqueType(void) {
396 return LLVMOpaqueTypeInContext(LLVMGetGlobalContext());
399 /*--.. Operations on type handles ..........................................--*/
401 LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy) {
402 return wrap(new PATypeHolder(unwrap(PotentiallyAbstractTy)));
405 void LLVMDisposeTypeHandle(LLVMTypeHandleRef TypeHandle) {
406 delete unwrap(TypeHandle);
409 LLVMTypeRef LLVMResolveTypeHandle(LLVMTypeHandleRef TypeHandle) {
410 return wrap(unwrap(TypeHandle)->get());
413 void LLVMRefineType(LLVMTypeRef AbstractTy, LLVMTypeRef ConcreteTy) {
414 unwrap<DerivedType>(AbstractTy)->refineAbstractTypeTo(unwrap(ConcreteTy));
418 /*===-- Operations on values ----------------------------------------------===*/
420 /*--.. Operations on all values ............................................--*/
422 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
423 return wrap(unwrap(Val)->getType());
426 const char *LLVMGetValueName(LLVMValueRef Val) {
427 return unwrap(Val)->getName().data();
430 void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
431 unwrap(Val)->setName(Name);
434 void LLVMDumpValue(LLVMValueRef Val) {
438 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal) {
439 unwrap(OldVal)->replaceAllUsesWith(unwrap(NewVal));
442 int LLVMHasMetadata(LLVMValueRef Inst) {
443 return unwrap<Instruction>(Inst)->hasMetadata();
446 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
447 return wrap(unwrap<Instruction>(Inst)->getMetadata(KindID));
450 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) {
451 unwrap<Instruction>(Inst)->setMetadata(KindID, MD? unwrap<MDNode>(MD) : NULL);
454 /*--.. Conversion functions ................................................--*/
456 #define LLVM_DEFINE_VALUE_CAST(name) \
457 LLVMValueRef LLVMIsA##name(LLVMValueRef Val) { \
458 return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
461 LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DEFINE_VALUE_CAST)
463 /*--.. Operations on Uses ..................................................--*/
464 LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val) {
465 Value *V = unwrap(Val);
466 Value::use_iterator I = V->use_begin();
467 if (I == V->use_end())
469 return wrap(&(I.getUse()));
472 LLVMUseRef LLVMGetNextUse(LLVMUseRef U) {
473 Use *Next = unwrap(U)->getNext();
479 LLVMValueRef LLVMGetUser(LLVMUseRef U) {
480 return wrap(unwrap(U)->getUser());
483 LLVMValueRef LLVMGetUsedValue(LLVMUseRef U) {
484 return wrap(unwrap(U)->get());
487 /*--.. Operations on Users .................................................--*/
488 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index) {
489 return wrap(unwrap<User>(Val)->getOperand(Index));
492 void LLVMSetOperand(LLVMValueRef Val, unsigned Index, LLVMValueRef Op) {
493 unwrap<User>(Val)->setOperand(Index, unwrap(Op));
496 int LLVMGetNumOperands(LLVMValueRef Val) {
497 return unwrap<User>(Val)->getNumOperands();
500 /*--.. Operations on constants of any type .................................--*/
502 LLVMValueRef LLVMConstNull(LLVMTypeRef Ty) {
503 return wrap(Constant::getNullValue(unwrap(Ty)));
506 LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty) {
507 return wrap(Constant::getAllOnesValue(unwrap(Ty)));
510 LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty) {
511 return wrap(UndefValue::get(unwrap(Ty)));
514 LLVMBool LLVMIsConstant(LLVMValueRef Ty) {
515 return isa<Constant>(unwrap(Ty));
518 LLVMBool LLVMIsNull(LLVMValueRef Val) {
519 if (Constant *C = dyn_cast<Constant>(unwrap(Val)))
520 return C->isNullValue();
524 LLVMBool LLVMIsUndef(LLVMValueRef Val) {
525 return isa<UndefValue>(unwrap(Val));
528 LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty) {
530 wrap(ConstantPointerNull::get(unwrap<PointerType>(Ty)));
533 /*--.. Operations on metadata nodes ........................................--*/
535 LLVMValueRef LLVMMDStringInContext(LLVMContextRef C, const char *Str,
537 return wrap(MDString::get(*unwrap(C), StringRef(Str, SLen)));
540 LLVMValueRef LLVMMDString(const char *Str, unsigned SLen) {
541 return LLVMMDStringInContext(LLVMGetGlobalContext(), Str, SLen);
544 LLVMValueRef LLVMMDNodeInContext(LLVMContextRef C, LLVMValueRef *Vals,
546 return wrap(MDNode::get(*unwrap(C), unwrap<Value>(Vals, Count), Count));
549 LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count) {
550 return LLVMMDNodeInContext(LLVMGetGlobalContext(), Vals, Count);
553 /*--.. Operations on scalar constants ......................................--*/
555 LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
556 LLVMBool SignExtend) {
557 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
560 LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
562 const uint64_t Words[]) {
563 IntegerType *Ty = unwrap<IntegerType>(IntTy);
564 return wrap(ConstantInt::get(Ty->getContext(),
565 APInt(Ty->getBitWidth(), NumWords, Words)));
568 LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char Str[],
570 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str),
574 LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char Str[],
575 unsigned SLen, uint8_t Radix) {
576 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str, SLen),
580 LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) {
581 return wrap(ConstantFP::get(unwrap(RealTy), N));
584 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) {
585 return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Text)));
588 LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char Str[],
590 return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Str, SLen)));
593 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
594 return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
597 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
598 return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
601 /*--.. Operations on composite constants ...................................--*/
603 LLVMValueRef LLVMConstStringInContext(LLVMContextRef C, const char *Str,
605 LLVMBool DontNullTerminate) {
606 /* Inverted the sense of AddNull because ', 0)' is a
607 better mnemonic for null termination than ', 1)'. */
608 return wrap(ConstantArray::get(*unwrap(C), StringRef(Str, Length),
609 DontNullTerminate == 0));
611 LLVMValueRef LLVMConstStructInContext(LLVMContextRef C,
612 LLVMValueRef *ConstantVals,
613 unsigned Count, LLVMBool Packed) {
614 return wrap(ConstantStruct::get(*unwrap(C),
615 unwrap<Constant>(ConstantVals, Count),
616 Count, Packed != 0));
619 LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
620 LLVMBool DontNullTerminate) {
621 return LLVMConstStringInContext(LLVMGetGlobalContext(), Str, Length,
624 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
625 LLVMValueRef *ConstantVals, unsigned Length) {
626 return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length),
627 unwrap<Constant>(ConstantVals, Length),
630 LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
632 return LLVMConstStructInContext(LLVMGetGlobalContext(), ConstantVals, Count,
635 LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size) {
636 return wrap(ConstantVector::get(ArrayRef<Constant*>(
637 unwrap<Constant>(ScalarConstantVals, Size), Size)));
639 /*--.. Constant expressions ................................................--*/
641 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
642 return (LLVMOpcode)unwrap<ConstantExpr>(ConstantVal)->getOpcode();
645 LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty) {
646 return wrap(ConstantExpr::getAlignOf(unwrap(Ty)));
649 LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty) {
650 return wrap(ConstantExpr::getSizeOf(unwrap(Ty)));
653 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
654 return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
657 LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal) {
658 return wrap(ConstantExpr::getNSWNeg(unwrap<Constant>(ConstantVal)));
661 LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal) {
662 return wrap(ConstantExpr::getNUWNeg(unwrap<Constant>(ConstantVal)));
666 LLVMValueRef LLVMConstFNeg(LLVMValueRef ConstantVal) {
667 return wrap(ConstantExpr::getFNeg(unwrap<Constant>(ConstantVal)));
670 LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal) {
671 return wrap(ConstantExpr::getNot(unwrap<Constant>(ConstantVal)));
674 LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
675 return wrap(ConstantExpr::getAdd(unwrap<Constant>(LHSConstant),
676 unwrap<Constant>(RHSConstant)));
679 LLVMValueRef LLVMConstNSWAdd(LLVMValueRef LHSConstant,
680 LLVMValueRef RHSConstant) {
681 return wrap(ConstantExpr::getNSWAdd(unwrap<Constant>(LHSConstant),
682 unwrap<Constant>(RHSConstant)));
685 LLVMValueRef LLVMConstNUWAdd(LLVMValueRef LHSConstant,
686 LLVMValueRef RHSConstant) {
687 return wrap(ConstantExpr::getNUWAdd(unwrap<Constant>(LHSConstant),
688 unwrap<Constant>(RHSConstant)));
691 LLVMValueRef LLVMConstFAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
692 return wrap(ConstantExpr::getFAdd(unwrap<Constant>(LHSConstant),
693 unwrap<Constant>(RHSConstant)));
696 LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
697 return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant),
698 unwrap<Constant>(RHSConstant)));
701 LLVMValueRef LLVMConstNSWSub(LLVMValueRef LHSConstant,
702 LLVMValueRef RHSConstant) {
703 return wrap(ConstantExpr::getNSWSub(unwrap<Constant>(LHSConstant),
704 unwrap<Constant>(RHSConstant)));
707 LLVMValueRef LLVMConstNUWSub(LLVMValueRef LHSConstant,
708 LLVMValueRef RHSConstant) {
709 return wrap(ConstantExpr::getNUWSub(unwrap<Constant>(LHSConstant),
710 unwrap<Constant>(RHSConstant)));
713 LLVMValueRef LLVMConstFSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
714 return wrap(ConstantExpr::getFSub(unwrap<Constant>(LHSConstant),
715 unwrap<Constant>(RHSConstant)));
718 LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
719 return wrap(ConstantExpr::getMul(unwrap<Constant>(LHSConstant),
720 unwrap<Constant>(RHSConstant)));
723 LLVMValueRef LLVMConstNSWMul(LLVMValueRef LHSConstant,
724 LLVMValueRef RHSConstant) {
725 return wrap(ConstantExpr::getNSWMul(unwrap<Constant>(LHSConstant),
726 unwrap<Constant>(RHSConstant)));
729 LLVMValueRef LLVMConstNUWMul(LLVMValueRef LHSConstant,
730 LLVMValueRef RHSConstant) {
731 return wrap(ConstantExpr::getNUWMul(unwrap<Constant>(LHSConstant),
732 unwrap<Constant>(RHSConstant)));
735 LLVMValueRef LLVMConstFMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
736 return wrap(ConstantExpr::getFMul(unwrap<Constant>(LHSConstant),
737 unwrap<Constant>(RHSConstant)));
740 LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
741 return wrap(ConstantExpr::getUDiv(unwrap<Constant>(LHSConstant),
742 unwrap<Constant>(RHSConstant)));
745 LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
746 return wrap(ConstantExpr::getSDiv(unwrap<Constant>(LHSConstant),
747 unwrap<Constant>(RHSConstant)));
750 LLVMValueRef LLVMConstExactSDiv(LLVMValueRef LHSConstant,
751 LLVMValueRef RHSConstant) {
752 return wrap(ConstantExpr::getExactSDiv(unwrap<Constant>(LHSConstant),
753 unwrap<Constant>(RHSConstant)));
756 LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
757 return wrap(ConstantExpr::getFDiv(unwrap<Constant>(LHSConstant),
758 unwrap<Constant>(RHSConstant)));
761 LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
762 return wrap(ConstantExpr::getURem(unwrap<Constant>(LHSConstant),
763 unwrap<Constant>(RHSConstant)));
766 LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
767 return wrap(ConstantExpr::getSRem(unwrap<Constant>(LHSConstant),
768 unwrap<Constant>(RHSConstant)));
771 LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
772 return wrap(ConstantExpr::getFRem(unwrap<Constant>(LHSConstant),
773 unwrap<Constant>(RHSConstant)));
776 LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
777 return wrap(ConstantExpr::getAnd(unwrap<Constant>(LHSConstant),
778 unwrap<Constant>(RHSConstant)));
781 LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
782 return wrap(ConstantExpr::getOr(unwrap<Constant>(LHSConstant),
783 unwrap<Constant>(RHSConstant)));
786 LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
787 return wrap(ConstantExpr::getXor(unwrap<Constant>(LHSConstant),
788 unwrap<Constant>(RHSConstant)));
791 LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
792 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
793 return wrap(ConstantExpr::getICmp(Predicate,
794 unwrap<Constant>(LHSConstant),
795 unwrap<Constant>(RHSConstant)));
798 LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
799 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
800 return wrap(ConstantExpr::getFCmp(Predicate,
801 unwrap<Constant>(LHSConstant),
802 unwrap<Constant>(RHSConstant)));
805 LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
806 return wrap(ConstantExpr::getShl(unwrap<Constant>(LHSConstant),
807 unwrap<Constant>(RHSConstant)));
810 LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
811 return wrap(ConstantExpr::getLShr(unwrap<Constant>(LHSConstant),
812 unwrap<Constant>(RHSConstant)));
815 LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
816 return wrap(ConstantExpr::getAShr(unwrap<Constant>(LHSConstant),
817 unwrap<Constant>(RHSConstant)));
820 LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
821 LLVMValueRef *ConstantIndices, unsigned NumIndices) {
822 return wrap(ConstantExpr::getGetElementPtr(unwrap<Constant>(ConstantVal),
823 unwrap<Constant>(ConstantIndices,
828 LLVMValueRef LLVMConstInBoundsGEP(LLVMValueRef ConstantVal,
829 LLVMValueRef *ConstantIndices,
830 unsigned NumIndices) {
831 Constant* Val = unwrap<Constant>(ConstantVal);
832 Constant** Idxs = unwrap<Constant>(ConstantIndices, NumIndices);
833 return wrap(ConstantExpr::getInBoundsGetElementPtr(Val, Idxs, NumIndices));
836 LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
837 return wrap(ConstantExpr::getTrunc(unwrap<Constant>(ConstantVal),
841 LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
842 return wrap(ConstantExpr::getSExt(unwrap<Constant>(ConstantVal),
846 LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
847 return wrap(ConstantExpr::getZExt(unwrap<Constant>(ConstantVal),
851 LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
852 return wrap(ConstantExpr::getFPTrunc(unwrap<Constant>(ConstantVal),
856 LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
857 return wrap(ConstantExpr::getFPExtend(unwrap<Constant>(ConstantVal),
861 LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
862 return wrap(ConstantExpr::getUIToFP(unwrap<Constant>(ConstantVal),
866 LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
867 return wrap(ConstantExpr::getSIToFP(unwrap<Constant>(ConstantVal),
871 LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
872 return wrap(ConstantExpr::getFPToUI(unwrap<Constant>(ConstantVal),
876 LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
877 return wrap(ConstantExpr::getFPToSI(unwrap<Constant>(ConstantVal),
881 LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
882 return wrap(ConstantExpr::getPtrToInt(unwrap<Constant>(ConstantVal),
886 LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
887 return wrap(ConstantExpr::getIntToPtr(unwrap<Constant>(ConstantVal),
891 LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
892 return wrap(ConstantExpr::getBitCast(unwrap<Constant>(ConstantVal),
896 LLVMValueRef LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal,
897 LLVMTypeRef ToType) {
898 return wrap(ConstantExpr::getZExtOrBitCast(unwrap<Constant>(ConstantVal),
902 LLVMValueRef LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal,
903 LLVMTypeRef ToType) {
904 return wrap(ConstantExpr::getSExtOrBitCast(unwrap<Constant>(ConstantVal),
908 LLVMValueRef LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal,
909 LLVMTypeRef ToType) {
910 return wrap(ConstantExpr::getTruncOrBitCast(unwrap<Constant>(ConstantVal),
914 LLVMValueRef LLVMConstPointerCast(LLVMValueRef ConstantVal,
915 LLVMTypeRef ToType) {
916 return wrap(ConstantExpr::getPointerCast(unwrap<Constant>(ConstantVal),
920 LLVMValueRef LLVMConstIntCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType,
922 return wrap(ConstantExpr::getIntegerCast(unwrap<Constant>(ConstantVal),
923 unwrap(ToType), isSigned));
926 LLVMValueRef LLVMConstFPCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
927 return wrap(ConstantExpr::getFPCast(unwrap<Constant>(ConstantVal),
931 LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
932 LLVMValueRef ConstantIfTrue,
933 LLVMValueRef ConstantIfFalse) {
934 return wrap(ConstantExpr::getSelect(unwrap<Constant>(ConstantCondition),
935 unwrap<Constant>(ConstantIfTrue),
936 unwrap<Constant>(ConstantIfFalse)));
939 LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
940 LLVMValueRef IndexConstant) {
941 return wrap(ConstantExpr::getExtractElement(unwrap<Constant>(VectorConstant),
942 unwrap<Constant>(IndexConstant)));
945 LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
946 LLVMValueRef ElementValueConstant,
947 LLVMValueRef IndexConstant) {
948 return wrap(ConstantExpr::getInsertElement(unwrap<Constant>(VectorConstant),
949 unwrap<Constant>(ElementValueConstant),
950 unwrap<Constant>(IndexConstant)));
953 LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
954 LLVMValueRef VectorBConstant,
955 LLVMValueRef MaskConstant) {
956 return wrap(ConstantExpr::getShuffleVector(unwrap<Constant>(VectorAConstant),
957 unwrap<Constant>(VectorBConstant),
958 unwrap<Constant>(MaskConstant)));
961 LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
963 return wrap(ConstantExpr::getExtractValue(unwrap<Constant>(AggConstant),
967 LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
968 LLVMValueRef ElementValueConstant,
969 unsigned *IdxList, unsigned NumIdx) {
970 return wrap(ConstantExpr::getInsertValue(unwrap<Constant>(AggConstant),
971 unwrap<Constant>(ElementValueConstant),
975 LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString,
976 const char *Constraints,
977 LLVMBool HasSideEffects,
978 LLVMBool IsAlignStack) {
979 return wrap(InlineAsm::get(dyn_cast<FunctionType>(unwrap(Ty)), AsmString,
980 Constraints, HasSideEffects, IsAlignStack));
983 LLVMValueRef LLVMBlockAddress(LLVMValueRef F, LLVMBasicBlockRef BB) {
984 return wrap(BlockAddress::get(unwrap<Function>(F), unwrap(BB)));
987 /*--.. Operations on global variables, functions, and aliases (globals) ....--*/
989 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) {
990 return wrap(unwrap<GlobalValue>(Global)->getParent());
993 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) {
994 return unwrap<GlobalValue>(Global)->isDeclaration();
997 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) {
998 switch (unwrap<GlobalValue>(Global)->getLinkage()) {
1000 assert(false && "Unhandled Linkage Type.");
1001 case GlobalValue::ExternalLinkage:
1002 return LLVMExternalLinkage;
1003 case GlobalValue::AvailableExternallyLinkage:
1004 return LLVMAvailableExternallyLinkage;
1005 case GlobalValue::LinkOnceAnyLinkage:
1006 return LLVMLinkOnceAnyLinkage;
1007 case GlobalValue::LinkOnceODRLinkage:
1008 return LLVMLinkOnceODRLinkage;
1009 case GlobalValue::WeakAnyLinkage:
1010 return LLVMWeakAnyLinkage;
1011 case GlobalValue::WeakODRLinkage:
1012 return LLVMWeakODRLinkage;
1013 case GlobalValue::AppendingLinkage:
1014 return LLVMAppendingLinkage;
1015 case GlobalValue::InternalLinkage:
1016 return LLVMInternalLinkage;
1017 case GlobalValue::PrivateLinkage:
1018 return LLVMPrivateLinkage;
1019 case GlobalValue::LinkerPrivateLinkage:
1020 return LLVMLinkerPrivateLinkage;
1021 case GlobalValue::LinkerPrivateWeakLinkage:
1022 return LLVMLinkerPrivateWeakLinkage;
1023 case GlobalValue::LinkerPrivateWeakDefAutoLinkage:
1024 return LLVMLinkerPrivateWeakDefAutoLinkage;
1025 case GlobalValue::DLLImportLinkage:
1026 return LLVMDLLImportLinkage;
1027 case GlobalValue::DLLExportLinkage:
1028 return LLVMDLLExportLinkage;
1029 case GlobalValue::ExternalWeakLinkage:
1030 return LLVMExternalWeakLinkage;
1031 case GlobalValue::CommonLinkage:
1032 return LLVMCommonLinkage;
1035 // Should never get here.
1036 return static_cast<LLVMLinkage>(0);
1039 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) {
1040 GlobalValue *GV = unwrap<GlobalValue>(Global);
1044 assert(false && "Unhandled Linkage Type.");
1045 case LLVMExternalLinkage:
1046 GV->setLinkage(GlobalValue::ExternalLinkage);
1048 case LLVMAvailableExternallyLinkage:
1049 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
1051 case LLVMLinkOnceAnyLinkage:
1052 GV->setLinkage(GlobalValue::LinkOnceAnyLinkage);
1054 case LLVMLinkOnceODRLinkage:
1055 GV->setLinkage(GlobalValue::LinkOnceODRLinkage);
1057 case LLVMWeakAnyLinkage:
1058 GV->setLinkage(GlobalValue::WeakAnyLinkage);
1060 case LLVMWeakODRLinkage:
1061 GV->setLinkage(GlobalValue::WeakODRLinkage);
1063 case LLVMAppendingLinkage:
1064 GV->setLinkage(GlobalValue::AppendingLinkage);
1066 case LLVMInternalLinkage:
1067 GV->setLinkage(GlobalValue::InternalLinkage);
1069 case LLVMPrivateLinkage:
1070 GV->setLinkage(GlobalValue::PrivateLinkage);
1072 case LLVMLinkerPrivateLinkage:
1073 GV->setLinkage(GlobalValue::LinkerPrivateLinkage);
1075 case LLVMLinkerPrivateWeakLinkage:
1076 GV->setLinkage(GlobalValue::LinkerPrivateWeakLinkage);
1078 case LLVMLinkerPrivateWeakDefAutoLinkage:
1079 GV->setLinkage(GlobalValue::LinkerPrivateWeakDefAutoLinkage);
1081 case LLVMDLLImportLinkage:
1082 GV->setLinkage(GlobalValue::DLLImportLinkage);
1084 case LLVMDLLExportLinkage:
1085 GV->setLinkage(GlobalValue::DLLExportLinkage);
1087 case LLVMExternalWeakLinkage:
1088 GV->setLinkage(GlobalValue::ExternalWeakLinkage);
1090 case LLVMGhostLinkage:
1092 << "LLVMSetLinkage(): LLVMGhostLinkage is no longer supported.");
1094 case LLVMCommonLinkage:
1095 GV->setLinkage(GlobalValue::CommonLinkage);
1100 const char *LLVMGetSection(LLVMValueRef Global) {
1101 return unwrap<GlobalValue>(Global)->getSection().c_str();
1104 void LLVMSetSection(LLVMValueRef Global, const char *Section) {
1105 unwrap<GlobalValue>(Global)->setSection(Section);
1108 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) {
1109 return static_cast<LLVMVisibility>(
1110 unwrap<GlobalValue>(Global)->getVisibility());
1113 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) {
1114 unwrap<GlobalValue>(Global)
1115 ->setVisibility(static_cast<GlobalValue::VisibilityTypes>(Viz));
1118 unsigned LLVMGetAlignment(LLVMValueRef Global) {
1119 return unwrap<GlobalValue>(Global)->getAlignment();
1122 void LLVMSetAlignment(LLVMValueRef Global, unsigned Bytes) {
1123 unwrap<GlobalValue>(Global)->setAlignment(Bytes);
1126 /*--.. Operations on global variables ......................................--*/
1128 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) {
1129 return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
1130 GlobalValue::ExternalLinkage, 0, Name));
1133 LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty,
1135 unsigned AddressSpace) {
1136 return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
1137 GlobalValue::ExternalLinkage, 0, Name, 0,
1138 false, AddressSpace));
1141 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) {
1142 return wrap(unwrap(M)->getNamedGlobal(Name));
1145 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) {
1146 Module *Mod = unwrap(M);
1147 Module::global_iterator I = Mod->global_begin();
1148 if (I == Mod->global_end())
1153 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) {
1154 Module *Mod = unwrap(M);
1155 Module::global_iterator I = Mod->global_end();
1156 if (I == Mod->global_begin())
1161 LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar) {
1162 GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1163 Module::global_iterator I = GV;
1164 if (++I == GV->getParent()->global_end())
1169 LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar) {
1170 GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1171 Module::global_iterator I = GV;
1172 if (I == GV->getParent()->global_begin())
1177 void LLVMDeleteGlobal(LLVMValueRef GlobalVar) {
1178 unwrap<GlobalVariable>(GlobalVar)->eraseFromParent();
1181 LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar) {
1182 GlobalVariable* GV = unwrap<GlobalVariable>(GlobalVar);
1183 if ( !GV->hasInitializer() )
1185 return wrap(GV->getInitializer());
1188 void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal) {
1189 unwrap<GlobalVariable>(GlobalVar)
1190 ->setInitializer(unwrap<Constant>(ConstantVal));
1193 LLVMBool LLVMIsThreadLocal(LLVMValueRef GlobalVar) {
1194 return unwrap<GlobalVariable>(GlobalVar)->isThreadLocal();
1197 void LLVMSetThreadLocal(LLVMValueRef GlobalVar, LLVMBool IsThreadLocal) {
1198 unwrap<GlobalVariable>(GlobalVar)->setThreadLocal(IsThreadLocal != 0);
1201 LLVMBool LLVMIsGlobalConstant(LLVMValueRef GlobalVar) {
1202 return unwrap<GlobalVariable>(GlobalVar)->isConstant();
1205 void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, LLVMBool IsConstant) {
1206 unwrap<GlobalVariable>(GlobalVar)->setConstant(IsConstant != 0);
1209 /*--.. Operations on aliases ......................................--*/
1211 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
1213 return wrap(new GlobalAlias(unwrap(Ty), GlobalValue::ExternalLinkage, Name,
1214 unwrap<Constant>(Aliasee), unwrap (M)));
1217 /*--.. Operations on functions .............................................--*/
1219 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
1220 LLVMTypeRef FunctionTy) {
1221 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
1222 GlobalValue::ExternalLinkage, Name, unwrap(M)));
1225 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) {
1226 return wrap(unwrap(M)->getFunction(Name));
1229 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) {
1230 Module *Mod = unwrap(M);
1231 Module::iterator I = Mod->begin();
1232 if (I == Mod->end())
1237 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) {
1238 Module *Mod = unwrap(M);
1239 Module::iterator I = Mod->end();
1240 if (I == Mod->begin())
1245 LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn) {
1246 Function *Func = unwrap<Function>(Fn);
1247 Module::iterator I = Func;
1248 if (++I == Func->getParent()->end())
1253 LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn) {
1254 Function *Func = unwrap<Function>(Fn);
1255 Module::iterator I = Func;
1256 if (I == Func->getParent()->begin())
1261 void LLVMDeleteFunction(LLVMValueRef Fn) {
1262 unwrap<Function>(Fn)->eraseFromParent();
1265 unsigned LLVMGetIntrinsicID(LLVMValueRef Fn) {
1266 if (Function *F = dyn_cast<Function>(unwrap(Fn)))
1267 return F->getIntrinsicID();
1271 unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn) {
1272 return unwrap<Function>(Fn)->getCallingConv();
1275 void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC) {
1276 return unwrap<Function>(Fn)->setCallingConv(
1277 static_cast<CallingConv::ID>(CC));
1280 const char *LLVMGetGC(LLVMValueRef Fn) {
1281 Function *F = unwrap<Function>(Fn);
1282 return F->hasGC()? F->getGC() : 0;
1285 void LLVMSetGC(LLVMValueRef Fn, const char *GC) {
1286 Function *F = unwrap<Function>(Fn);
1293 void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
1294 Function *Func = unwrap<Function>(Fn);
1295 const AttrListPtr PAL = Func->getAttributes();
1296 const AttrListPtr PALnew = PAL.addAttr(~0U, PA);
1297 Func->setAttributes(PALnew);
1300 void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
1301 Function *Func = unwrap<Function>(Fn);
1302 const AttrListPtr PAL = Func->getAttributes();
1303 const AttrListPtr PALnew = PAL.removeAttr(~0U, PA);
1304 Func->setAttributes(PALnew);
1307 LLVMAttribute LLVMGetFunctionAttr(LLVMValueRef Fn) {
1308 Function *Func = unwrap<Function>(Fn);
1309 const AttrListPtr PAL = Func->getAttributes();
1310 Attributes attr = PAL.getFnAttributes();
1311 return (LLVMAttribute)attr;
1314 /*--.. Operations on parameters ............................................--*/
1316 unsigned LLVMCountParams(LLVMValueRef FnRef) {
1317 // This function is strictly redundant to
1318 // LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
1319 return unwrap<Function>(FnRef)->arg_size();
1322 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) {
1323 Function *Fn = unwrap<Function>(FnRef);
1324 for (Function::arg_iterator I = Fn->arg_begin(),
1325 E = Fn->arg_end(); I != E; I++)
1326 *ParamRefs++ = wrap(I);
1329 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) {
1330 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin();
1336 LLVMValueRef LLVMGetParamParent(LLVMValueRef V) {
1337 return wrap(unwrap<Argument>(V)->getParent());
1340 LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn) {
1341 Function *Func = unwrap<Function>(Fn);
1342 Function::arg_iterator I = Func->arg_begin();
1343 if (I == Func->arg_end())
1348 LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn) {
1349 Function *Func = unwrap<Function>(Fn);
1350 Function::arg_iterator I = Func->arg_end();
1351 if (I == Func->arg_begin())
1356 LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg) {
1357 Argument *A = unwrap<Argument>(Arg);
1358 Function::arg_iterator I = A;
1359 if (++I == A->getParent()->arg_end())
1364 LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg) {
1365 Argument *A = unwrap<Argument>(Arg);
1366 Function::arg_iterator I = A;
1367 if (I == A->getParent()->arg_begin())
1372 void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
1373 unwrap<Argument>(Arg)->addAttr(PA);
1376 void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
1377 unwrap<Argument>(Arg)->removeAttr(PA);
1380 LLVMAttribute LLVMGetAttribute(LLVMValueRef Arg) {
1381 Argument *A = unwrap<Argument>(Arg);
1382 Attributes attr = A->getParent()->getAttributes().getParamAttributes(
1384 return (LLVMAttribute)attr;
1388 void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align) {
1389 unwrap<Argument>(Arg)->addAttr(
1390 Attribute::constructAlignmentFromInt(align));
1393 /*--.. Operations on basic blocks ..........................................--*/
1395 LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB) {
1396 return wrap(static_cast<Value*>(unwrap(BB)));
1399 LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val) {
1400 return isa<BasicBlock>(unwrap(Val));
1403 LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val) {
1404 return wrap(unwrap<BasicBlock>(Val));
1407 LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB) {
1408 return wrap(unwrap(BB)->getParent());
1411 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) {
1412 return unwrap<Function>(FnRef)->size();
1415 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){
1416 Function *Fn = unwrap<Function>(FnRef);
1417 for (Function::iterator I = Fn->begin(), E = Fn->end(); I != E; I++)
1418 *BasicBlocksRefs++ = wrap(I);
1421 LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn) {
1422 return wrap(&unwrap<Function>(Fn)->getEntryBlock());
1425 LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn) {
1426 Function *Func = unwrap<Function>(Fn);
1427 Function::iterator I = Func->begin();
1428 if (I == Func->end())
1433 LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn) {
1434 Function *Func = unwrap<Function>(Fn);
1435 Function::iterator I = Func->end();
1436 if (I == Func->begin())
1441 LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB) {
1442 BasicBlock *Block = unwrap(BB);
1443 Function::iterator I = Block;
1444 if (++I == Block->getParent()->end())
1449 LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB) {
1450 BasicBlock *Block = unwrap(BB);
1451 Function::iterator I = Block;
1452 if (I == Block->getParent()->begin())
1457 LLVMBasicBlockRef LLVMAppendBasicBlockInContext(LLVMContextRef C,
1460 return wrap(BasicBlock::Create(*unwrap(C), Name, unwrap<Function>(FnRef)));
1463 LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef FnRef, const char *Name) {
1464 return LLVMAppendBasicBlockInContext(LLVMGetGlobalContext(), FnRef, Name);
1467 LLVMBasicBlockRef LLVMInsertBasicBlockInContext(LLVMContextRef C,
1468 LLVMBasicBlockRef BBRef,
1470 BasicBlock *BB = unwrap(BBRef);
1471 return wrap(BasicBlock::Create(*unwrap(C), Name, BB->getParent(), BB));
1474 LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef BBRef,
1476 return LLVMInsertBasicBlockInContext(LLVMGetGlobalContext(), BBRef, Name);
1479 void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef) {
1480 unwrap(BBRef)->eraseFromParent();
1483 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
1484 unwrap(BB)->moveBefore(unwrap(MovePos));
1487 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
1488 unwrap(BB)->moveAfter(unwrap(MovePos));
1491 /*--.. Operations on instructions ..........................................--*/
1493 LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst) {
1494 return wrap(unwrap<Instruction>(Inst)->getParent());
1497 LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB) {
1498 BasicBlock *Block = unwrap(BB);
1499 BasicBlock::iterator I = Block->begin();
1500 if (I == Block->end())
1505 LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB) {
1506 BasicBlock *Block = unwrap(BB);
1507 BasicBlock::iterator I = Block->end();
1508 if (I == Block->begin())
1513 LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst) {
1514 Instruction *Instr = unwrap<Instruction>(Inst);
1515 BasicBlock::iterator I = Instr;
1516 if (++I == Instr->getParent()->end())
1521 LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst) {
1522 Instruction *Instr = unwrap<Instruction>(Inst);
1523 BasicBlock::iterator I = Instr;
1524 if (I == Instr->getParent()->begin())
1529 /*--.. Call and invoke instructions ........................................--*/
1531 unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) {
1532 Value *V = unwrap(Instr);
1533 if (CallInst *CI = dyn_cast<CallInst>(V))
1534 return CI->getCallingConv();
1535 else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
1536 return II->getCallingConv();
1537 llvm_unreachable("LLVMGetInstructionCallConv applies only to call and invoke!");
1541 void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) {
1542 Value *V = unwrap(Instr);
1543 if (CallInst *CI = dyn_cast<CallInst>(V))
1544 return CI->setCallingConv(static_cast<CallingConv::ID>(CC));
1545 else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
1546 return II->setCallingConv(static_cast<CallingConv::ID>(CC));
1547 llvm_unreachable("LLVMSetInstructionCallConv applies only to call and invoke!");
1550 void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index,
1552 CallSite Call = CallSite(unwrap<Instruction>(Instr));
1554 Call.getAttributes().addAttr(index, PA));
1557 void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index,
1559 CallSite Call = CallSite(unwrap<Instruction>(Instr));
1561 Call.getAttributes().removeAttr(index, PA));
1564 void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
1566 CallSite Call = CallSite(unwrap<Instruction>(Instr));
1568 Call.getAttributes().addAttr(index,
1569 Attribute::constructAlignmentFromInt(align)));
1572 /*--.. Operations on call instructions (only) ..............................--*/
1574 LLVMBool LLVMIsTailCall(LLVMValueRef Call) {
1575 return unwrap<CallInst>(Call)->isTailCall();
1578 void LLVMSetTailCall(LLVMValueRef Call, LLVMBool isTailCall) {
1579 unwrap<CallInst>(Call)->setTailCall(isTailCall);
1582 /*--.. Operations on phi nodes .............................................--*/
1584 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
1585 LLVMBasicBlockRef *IncomingBlocks, unsigned Count) {
1586 PHINode *PhiVal = unwrap<PHINode>(PhiNode);
1587 for (unsigned I = 0; I != Count; ++I)
1588 PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I]));
1591 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
1592 return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
1595 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
1596 return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
1599 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
1600 return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));
1604 /*===-- Instruction builders ----------------------------------------------===*/
1606 LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C) {
1607 return wrap(new IRBuilder<>(*unwrap(C)));
1610 LLVMBuilderRef LLVMCreateBuilder(void) {
1611 return LLVMCreateBuilderInContext(LLVMGetGlobalContext());
1614 void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
1615 LLVMValueRef Instr) {
1616 BasicBlock *BB = unwrap(Block);
1617 Instruction *I = Instr? unwrap<Instruction>(Instr) : (Instruction*) BB->end();
1618 unwrap(Builder)->SetInsertPoint(BB, I);
1621 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) {
1622 Instruction *I = unwrap<Instruction>(Instr);
1623 unwrap(Builder)->SetInsertPoint(I->getParent(), I);
1626 void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block) {
1627 BasicBlock *BB = unwrap(Block);
1628 unwrap(Builder)->SetInsertPoint(BB);
1631 LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder) {
1632 return wrap(unwrap(Builder)->GetInsertBlock());
1635 void LLVMClearInsertionPosition(LLVMBuilderRef Builder) {
1636 unwrap(Builder)->ClearInsertionPoint();
1639 void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr) {
1640 unwrap(Builder)->Insert(unwrap<Instruction>(Instr));
1643 void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr,
1645 unwrap(Builder)->Insert(unwrap<Instruction>(Instr), Name);
1648 void LLVMDisposeBuilder(LLVMBuilderRef Builder) {
1649 delete unwrap(Builder);
1652 /*--.. Metadata builders ...................................................--*/
1654 void LLVMSetCurrentDebugLocation(LLVMBuilderRef Builder, LLVMValueRef L) {
1655 MDNode *Loc = L ? unwrap<MDNode>(L) : NULL;
1656 unwrap(Builder)->SetCurrentDebugLocation(DebugLoc::getFromDILocation(Loc));
1659 LLVMValueRef LLVMGetCurrentDebugLocation(LLVMBuilderRef Builder) {
1660 return wrap(unwrap(Builder)->getCurrentDebugLocation()
1661 .getAsMDNode(unwrap(Builder)->getContext()));
1664 void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst) {
1665 unwrap(Builder)->SetInstDebugLocation(unwrap<Instruction>(Inst));
1669 /*--.. Instruction builders ................................................--*/
1671 LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef B) {
1672 return wrap(unwrap(B)->CreateRetVoid());
1675 LLVMValueRef LLVMBuildRet(LLVMBuilderRef B, LLVMValueRef V) {
1676 return wrap(unwrap(B)->CreateRet(unwrap(V)));
1679 LLVMValueRef LLVMBuildAggregateRet(LLVMBuilderRef B, LLVMValueRef *RetVals,
1681 return wrap(unwrap(B)->CreateAggregateRet(unwrap(RetVals), N));
1684 LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) {
1685 return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
1688 LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If,
1689 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
1690 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
1693 LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V,
1694 LLVMBasicBlockRef Else, unsigned NumCases) {
1695 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
1698 LLVMValueRef LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr,
1699 unsigned NumDests) {
1700 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
1703 LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn,
1704 LLVMValueRef *Args, unsigned NumArgs,
1705 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
1707 return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
1708 unwrap(Args), unwrap(Args) + NumArgs,
1712 LLVMValueRef LLVMBuildUnwind(LLVMBuilderRef B) {
1713 return wrap(unwrap(B)->CreateUnwind());
1716 LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef B) {
1717 return wrap(unwrap(B)->CreateUnreachable());
1720 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
1721 LLVMBasicBlockRef Dest) {
1722 unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
1725 void LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest) {
1726 unwrap<IndirectBrInst>(IndirectBr)->addDestination(unwrap(Dest));
1729 /*--.. Arithmetic ..........................................................--*/
1731 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1733 return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
1736 LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1738 return wrap(unwrap(B)->CreateNSWAdd(unwrap(LHS), unwrap(RHS), Name));
1741 LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1743 return wrap(unwrap(B)->CreateNUWAdd(unwrap(LHS), unwrap(RHS), Name));
1746 LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1748 return wrap(unwrap(B)->CreateFAdd(unwrap(LHS), unwrap(RHS), Name));
1751 LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1753 return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwrap(RHS), Name));
1756 LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1758 return wrap(unwrap(B)->CreateNSWSub(unwrap(LHS), unwrap(RHS), Name));
1761 LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1763 return wrap(unwrap(B)->CreateNUWSub(unwrap(LHS), unwrap(RHS), Name));
1766 LLVMValueRef LLVMBuildFSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1768 return wrap(unwrap(B)->CreateFSub(unwrap(LHS), unwrap(RHS), Name));
1771 LLVMValueRef LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1773 return wrap(unwrap(B)->CreateMul(unwrap(LHS), unwrap(RHS), Name));
1776 LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1778 return wrap(unwrap(B)->CreateNSWMul(unwrap(LHS), unwrap(RHS), Name));
1781 LLVMValueRef LLVMBuildNUWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1783 return wrap(unwrap(B)->CreateNUWMul(unwrap(LHS), unwrap(RHS), Name));
1786 LLVMValueRef LLVMBuildFMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1788 return wrap(unwrap(B)->CreateFMul(unwrap(LHS), unwrap(RHS), Name));
1791 LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1793 return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
1796 LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1798 return wrap(unwrap(B)->CreateSDiv(unwrap(LHS), unwrap(RHS), Name));
1801 LLVMValueRef LLVMBuildExactSDiv(LLVMBuilderRef B, LLVMValueRef LHS,
1802 LLVMValueRef RHS, const char *Name) {
1803 return wrap(unwrap(B)->CreateExactSDiv(unwrap(LHS), unwrap(RHS), Name));
1806 LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1808 return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
1811 LLVMValueRef LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1813 return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
1816 LLVMValueRef LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1818 return wrap(unwrap(B)->CreateSRem(unwrap(LHS), unwrap(RHS), Name));
1821 LLVMValueRef LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1823 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name));
1826 LLVMValueRef LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1828 return wrap(unwrap(B)->CreateShl(unwrap(LHS), unwrap(RHS), Name));
1831 LLVMValueRef LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1833 return wrap(unwrap(B)->CreateLShr(unwrap(LHS), unwrap(RHS), Name));
1836 LLVMValueRef LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1838 return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
1841 LLVMValueRef LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1843 return wrap(unwrap(B)->CreateAnd(unwrap(LHS), unwrap(RHS), Name));
1846 LLVMValueRef LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1848 return wrap(unwrap(B)->CreateOr(unwrap(LHS), unwrap(RHS), Name));
1851 LLVMValueRef LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1853 return wrap(unwrap(B)->CreateXor(unwrap(LHS), unwrap(RHS), Name));
1856 LLVMValueRef LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op,
1857 LLVMValueRef LHS, LLVMValueRef RHS,
1859 return wrap(unwrap(B)->CreateBinOp(Instruction::BinaryOps(Op), unwrap(LHS),
1860 unwrap(RHS), Name));
1863 LLVMValueRef LLVMBuildNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
1864 return wrap(unwrap(B)->CreateNeg(unwrap(V), Name));
1867 LLVMValueRef LLVMBuildNSWNeg(LLVMBuilderRef B, LLVMValueRef V,
1869 return wrap(unwrap(B)->CreateNSWNeg(unwrap(V), Name));
1872 LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B, LLVMValueRef V,
1874 return wrap(unwrap(B)->CreateNUWNeg(unwrap(V), Name));
1877 LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
1878 return wrap(unwrap(B)->CreateFNeg(unwrap(V), Name));
1881 LLVMValueRef LLVMBuildNot(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
1882 return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
1885 /*--.. Memory ..............................................................--*/
1887 LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
1889 const Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
1890 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
1891 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
1892 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
1893 ITy, unwrap(Ty), AllocSize,
1895 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
1898 LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
1899 LLVMValueRef Val, const char *Name) {
1900 const Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
1901 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
1902 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
1903 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
1904 ITy, unwrap(Ty), AllocSize,
1905 unwrap(Val), 0, "");
1906 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
1909 LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
1911 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), 0, Name));
1914 LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
1915 LLVMValueRef Val, const char *Name) {
1916 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name));
1919 LLVMValueRef LLVMBuildFree(LLVMBuilderRef B, LLVMValueRef PointerVal) {
1920 return wrap(unwrap(B)->Insert(
1921 CallInst::CreateFree(unwrap(PointerVal), unwrap(B)->GetInsertBlock())));
1925 LLVMValueRef LLVMBuildLoad(LLVMBuilderRef B, LLVMValueRef PointerVal,
1927 return wrap(unwrap(B)->CreateLoad(unwrap(PointerVal), Name));
1930 LLVMValueRef LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val,
1931 LLVMValueRef PointerVal) {
1932 return wrap(unwrap(B)->CreateStore(unwrap(Val), unwrap(PointerVal)));
1935 LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
1936 LLVMValueRef *Indices, unsigned NumIndices,
1938 return wrap(unwrap(B)->CreateGEP(unwrap(Pointer), unwrap(Indices),
1939 unwrap(Indices) + NumIndices, Name));
1942 LLVMValueRef LLVMBuildInBoundsGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
1943 LLVMValueRef *Indices, unsigned NumIndices,
1945 return wrap(unwrap(B)->CreateInBoundsGEP(unwrap(Pointer), unwrap(Indices),
1946 unwrap(Indices) + NumIndices, Name));
1949 LLVMValueRef LLVMBuildStructGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
1950 unsigned Idx, const char *Name) {
1951 return wrap(unwrap(B)->CreateStructGEP(unwrap(Pointer), Idx, Name));
1954 LLVMValueRef LLVMBuildGlobalString(LLVMBuilderRef B, const char *Str,
1956 return wrap(unwrap(B)->CreateGlobalString(Str, Name));
1959 LLVMValueRef LLVMBuildGlobalStringPtr(LLVMBuilderRef B, const char *Str,
1961 return wrap(unwrap(B)->CreateGlobalStringPtr(Str, Name));
1964 /*--.. Casts ...............................................................--*/
1966 LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val,
1967 LLVMTypeRef DestTy, const char *Name) {
1968 return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
1971 LLVMValueRef LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val,
1972 LLVMTypeRef DestTy, const char *Name) {
1973 return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
1976 LLVMValueRef LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val,
1977 LLVMTypeRef DestTy, const char *Name) {
1978 return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
1981 LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val,
1982 LLVMTypeRef DestTy, const char *Name) {
1983 return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
1986 LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val,
1987 LLVMTypeRef DestTy, const char *Name) {
1988 return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
1991 LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val,
1992 LLVMTypeRef DestTy, const char *Name) {
1993 return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
1996 LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val,
1997 LLVMTypeRef DestTy, const char *Name) {
1998 return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
2001 LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val,
2002 LLVMTypeRef DestTy, const char *Name) {
2003 return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
2006 LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val,
2007 LLVMTypeRef DestTy, const char *Name) {
2008 return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
2011 LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val,
2012 LLVMTypeRef DestTy, const char *Name) {
2013 return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
2016 LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val,
2017 LLVMTypeRef DestTy, const char *Name) {
2018 return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
2021 LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2022 LLVMTypeRef DestTy, const char *Name) {
2023 return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
2026 LLVMValueRef LLVMBuildZExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2027 LLVMTypeRef DestTy, const char *Name) {
2028 return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
2032 LLVMValueRef LLVMBuildSExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2033 LLVMTypeRef DestTy, const char *Name) {
2034 return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
2038 LLVMValueRef LLVMBuildTruncOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2039 LLVMTypeRef DestTy, const char *Name) {
2040 return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
2044 LLVMValueRef LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val,
2045 LLVMTypeRef DestTy, const char *Name) {
2046 return wrap(unwrap(B)->CreateCast(Instruction::CastOps(Op), unwrap(Val),
2047 unwrap(DestTy), Name));
2050 LLVMValueRef LLVMBuildPointerCast(LLVMBuilderRef B, LLVMValueRef Val,
2051 LLVMTypeRef DestTy, const char *Name) {
2052 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
2055 LLVMValueRef LLVMBuildIntCast(LLVMBuilderRef B, LLVMValueRef Val,
2056 LLVMTypeRef DestTy, const char *Name) {
2057 return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
2058 /*isSigned*/true, Name));
2061 LLVMValueRef LLVMBuildFPCast(LLVMBuilderRef B, LLVMValueRef Val,
2062 LLVMTypeRef DestTy, const char *Name) {
2063 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));
2066 /*--.. Comparisons .........................................................--*/
2068 LLVMValueRef LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op,
2069 LLVMValueRef LHS, LLVMValueRef RHS,
2071 return wrap(unwrap(B)->CreateICmp(static_cast<ICmpInst::Predicate>(Op),
2072 unwrap(LHS), unwrap(RHS), Name));
2075 LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op,
2076 LLVMValueRef LHS, LLVMValueRef RHS,
2078 return wrap(unwrap(B)->CreateFCmp(static_cast<FCmpInst::Predicate>(Op),
2079 unwrap(LHS), unwrap(RHS), Name));
2082 /*--.. Miscellaneous instructions ..........................................--*/
2084 LLVMValueRef LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) {
2085 return wrap(unwrap(B)->CreatePHI(unwrap(Ty), Name));
2088 LLVMValueRef LLVMBuildCall(LLVMBuilderRef B, LLVMValueRef Fn,
2089 LLVMValueRef *Args, unsigned NumArgs,
2091 return wrap(unwrap(B)->CreateCall(unwrap(Fn), unwrap(Args),
2092 unwrap(Args) + NumArgs, Name));
2095 LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If,
2096 LLVMValueRef Then, LLVMValueRef Else,
2098 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
2102 LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
2103 LLVMTypeRef Ty, const char *Name) {
2104 return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
2107 LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef B, LLVMValueRef VecVal,
2108 LLVMValueRef Index, const char *Name) {
2109 return wrap(unwrap(B)->CreateExtractElement(unwrap(VecVal), unwrap(Index),
2113 LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef B, LLVMValueRef VecVal,
2114 LLVMValueRef EltVal, LLVMValueRef Index,
2116 return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal),
2117 unwrap(Index), Name));
2120 LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef B, LLVMValueRef V1,
2121 LLVMValueRef V2, LLVMValueRef Mask,
2123 return wrap(unwrap(B)->CreateShuffleVector(unwrap(V1), unwrap(V2),
2124 unwrap(Mask), Name));
2127 LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef B, LLVMValueRef AggVal,
2128 unsigned Index, const char *Name) {
2129 return wrap(unwrap(B)->CreateExtractValue(unwrap(AggVal), Index, Name));
2132 LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef B, LLVMValueRef AggVal,
2133 LLVMValueRef EltVal, unsigned Index,
2135 return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal),
2139 LLVMValueRef LLVMBuildIsNull(LLVMBuilderRef B, LLVMValueRef Val,
2141 return wrap(unwrap(B)->CreateIsNull(unwrap(Val), Name));
2144 LLVMValueRef LLVMBuildIsNotNull(LLVMBuilderRef B, LLVMValueRef Val,
2146 return wrap(unwrap(B)->CreateIsNotNull(unwrap(Val), Name));
2149 LLVMValueRef LLVMBuildPtrDiff(LLVMBuilderRef B, LLVMValueRef LHS,
2150 LLVMValueRef RHS, const char *Name) {
2151 return wrap(unwrap(B)->CreatePtrDiff(unwrap(LHS), unwrap(RHS), Name));
2155 /*===-- Module providers --------------------------------------------------===*/
2157 LLVMModuleProviderRef
2158 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) {
2159 return reinterpret_cast<LLVMModuleProviderRef>(M);
2162 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) {
2167 /*===-- Memory buffers ----------------------------------------------------===*/
2169 LLVMBool LLVMCreateMemoryBufferWithContentsOfFile(
2171 LLVMMemoryBufferRef *OutMemBuf,
2172 char **OutMessage) {
2174 OwningPtr<MemoryBuffer> MB;
2176 if (!(ec = MemoryBuffer::getFile(Path, MB))) {
2177 *OutMemBuf = wrap(MB.take());
2181 *OutMessage = strdup(ec.message().c_str());
2185 LLVMBool LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
2186 char **OutMessage) {
2187 OwningPtr<MemoryBuffer> MB;
2189 if (!(ec = MemoryBuffer::getSTDIN(MB))) {
2190 *OutMemBuf = wrap(MB.take());
2194 *OutMessage = strdup(ec.message().c_str());
2198 void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf) {
2199 delete unwrap(MemBuf);
2202 /*===-- Pass Registry -----------------------------------------------------===*/
2204 LLVMPassRegistryRef LLVMGetGlobalPassRegistry(void) {
2205 return wrap(PassRegistry::getPassRegistry());
2208 /*===-- Pass Manager ------------------------------------------------------===*/
2210 LLVMPassManagerRef LLVMCreatePassManager() {
2211 return wrap(new PassManager());
2214 LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) {
2215 return wrap(new FunctionPassManager(unwrap(M)));
2218 LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) {
2219 return LLVMCreateFunctionPassManagerForModule(
2220 reinterpret_cast<LLVMModuleRef>(P));
2223 LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) {
2224 return unwrap<PassManager>(PM)->run(*unwrap(M));
2227 LLVMBool LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) {
2228 return unwrap<FunctionPassManager>(FPM)->doInitialization();
2231 LLVMBool LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) {
2232 return unwrap<FunctionPassManager>(FPM)->run(*unwrap<Function>(F));
2235 LLVMBool LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) {
2236 return unwrap<FunctionPassManager>(FPM)->doFinalization();
2239 void LLVMDisposePassManager(LLVMPassManagerRef PM) {