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/IR/Attributes.h"
18 #include "llvm/IR/Constants.h"
19 #include "llvm/IR/DerivedTypes.h"
20 #include "llvm/IR/GlobalAlias.h"
21 #include "llvm/IR/GlobalVariable.h"
22 #include "llvm/IR/InlineAsm.h"
23 #include "llvm/IR/IntrinsicInst.h"
24 #include "llvm/IR/IRBuilder.h"
25 #include "llvm/IR/LLVMContext.h"
26 #include "llvm/IR/Module.h"
27 #include "llvm/PassManager.h"
28 #include "llvm/Support/CallSite.h"
29 #include "llvm/Support/Debug.h"
30 #include "llvm/Support/ErrorHandling.h"
31 #include "llvm/Support/ManagedStatic.h"
32 #include "llvm/Support/MemoryBuffer.h"
33 #include "llvm/Support/raw_ostream.h"
34 #include "llvm/Support/system_error.h"
35 #include "llvm/Support/Threading.h"
42 void llvm::initializeCore(PassRegistry &Registry) {
43 initializeDominatorTreePass(Registry);
44 initializePrintModulePassPass(Registry);
45 initializePrintFunctionPassPass(Registry);
46 initializePrintBasicBlockPassPass(Registry);
47 initializeVerifierPass(Registry);
48 initializePreVerifierPass(Registry);
51 void LLVMInitializeCore(LLVMPassRegistryRef R) {
52 initializeCore(*unwrap(R));
59 /*===-- Error handling ----------------------------------------------------===*/
61 char *LLVMCreateMessage(const char *Message) {
62 return strdup(Message);
65 void LLVMDisposeMessage(char *Message) {
70 /*===-- Operations on contexts --------------------------------------------===*/
72 LLVMContextRef LLVMContextCreate() {
73 return wrap(new LLVMContext());
76 LLVMContextRef LLVMGetGlobalContext() {
77 return wrap(&getGlobalContext());
80 void LLVMContextDispose(LLVMContextRef C) {
84 unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name,
86 return unwrap(C)->getMDKindID(StringRef(Name, SLen));
89 unsigned LLVMGetMDKindID(const char* Name, unsigned SLen) {
90 return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen);
94 /*===-- Operations on modules ---------------------------------------------===*/
96 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
97 return wrap(new Module(ModuleID, getGlobalContext()));
100 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
102 return wrap(new Module(ModuleID, *unwrap(C)));
105 void LLVMDisposeModule(LLVMModuleRef M) {
109 /*--.. Data layout .........................................................--*/
110 const char * LLVMGetDataLayout(LLVMModuleRef M) {
111 return unwrap(M)->getDataLayout().c_str();
114 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) {
115 unwrap(M)->setDataLayout(Triple);
118 /*--.. Target triple .......................................................--*/
119 const char * LLVMGetTarget(LLVMModuleRef M) {
120 return unwrap(M)->getTargetTriple().c_str();
123 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
124 unwrap(M)->setTargetTriple(Triple);
127 void LLVMDumpModule(LLVMModuleRef M) {
131 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename,
132 char **ErrorMessage) {
134 raw_fd_ostream dest(Filename, error);
135 if (!error.empty()) {
136 *ErrorMessage = strdup(error.c_str());
140 unwrap(M)->print(dest, NULL);
142 if (!error.empty()) {
143 *ErrorMessage = strdup(error.c_str());
150 char *LLVMPrintModuleToString(LLVMModuleRef M) {
152 raw_string_ostream os(buf);
154 unwrap(M)->print(os, NULL);
157 return strdup(buf.c_str());
160 /*--.. Operations on inline assembler ......................................--*/
161 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) {
162 unwrap(M)->setModuleInlineAsm(StringRef(Asm));
166 /*--.. Operations on module contexts ......................................--*/
167 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) {
168 return wrap(&unwrap(M)->getContext());
172 /*===-- Operations on types -----------------------------------------------===*/
174 /*--.. Operations on all types (mostly) ....................................--*/
176 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) {
177 switch (unwrap(Ty)->getTypeID()) {
178 default: llvm_unreachable("Unhandled TypeID.");
180 return LLVMVoidTypeKind;
182 return LLVMHalfTypeKind;
183 case Type::FloatTyID:
184 return LLVMFloatTypeKind;
185 case Type::DoubleTyID:
186 return LLVMDoubleTypeKind;
187 case Type::X86_FP80TyID:
188 return LLVMX86_FP80TypeKind;
189 case Type::FP128TyID:
190 return LLVMFP128TypeKind;
191 case Type::PPC_FP128TyID:
192 return LLVMPPC_FP128TypeKind;
193 case Type::LabelTyID:
194 return LLVMLabelTypeKind;
195 case Type::MetadataTyID:
196 return LLVMMetadataTypeKind;
197 case Type::IntegerTyID:
198 return LLVMIntegerTypeKind;
199 case Type::FunctionTyID:
200 return LLVMFunctionTypeKind;
201 case Type::StructTyID:
202 return LLVMStructTypeKind;
203 case Type::ArrayTyID:
204 return LLVMArrayTypeKind;
205 case Type::PointerTyID:
206 return LLVMPointerTypeKind;
207 case Type::VectorTyID:
208 return LLVMVectorTypeKind;
209 case Type::X86_MMXTyID:
210 return LLVMX86_MMXTypeKind;
214 LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty)
216 return unwrap(Ty)->isSized();
219 LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty) {
220 return wrap(&unwrap(Ty)->getContext());
223 void LLVMDumpType(LLVMTypeRef Ty) {
224 return unwrap(Ty)->dump();
227 char *LLVMPrintTypeToString(LLVMTypeRef Ty) {
229 raw_string_ostream os(buf);
231 unwrap(Ty)->print(os);
234 return strdup(buf.c_str());
237 /*--.. Operations on integer types .........................................--*/
239 LLVMTypeRef LLVMInt1TypeInContext(LLVMContextRef C) {
240 return (LLVMTypeRef) Type::getInt1Ty(*unwrap(C));
242 LLVMTypeRef LLVMInt8TypeInContext(LLVMContextRef C) {
243 return (LLVMTypeRef) Type::getInt8Ty(*unwrap(C));
245 LLVMTypeRef LLVMInt16TypeInContext(LLVMContextRef C) {
246 return (LLVMTypeRef) Type::getInt16Ty(*unwrap(C));
248 LLVMTypeRef LLVMInt32TypeInContext(LLVMContextRef C) {
249 return (LLVMTypeRef) Type::getInt32Ty(*unwrap(C));
251 LLVMTypeRef LLVMInt64TypeInContext(LLVMContextRef C) {
252 return (LLVMTypeRef) Type::getInt64Ty(*unwrap(C));
254 LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits) {
255 return wrap(IntegerType::get(*unwrap(C), NumBits));
258 LLVMTypeRef LLVMInt1Type(void) {
259 return LLVMInt1TypeInContext(LLVMGetGlobalContext());
261 LLVMTypeRef LLVMInt8Type(void) {
262 return LLVMInt8TypeInContext(LLVMGetGlobalContext());
264 LLVMTypeRef LLVMInt16Type(void) {
265 return LLVMInt16TypeInContext(LLVMGetGlobalContext());
267 LLVMTypeRef LLVMInt32Type(void) {
268 return LLVMInt32TypeInContext(LLVMGetGlobalContext());
270 LLVMTypeRef LLVMInt64Type(void) {
271 return LLVMInt64TypeInContext(LLVMGetGlobalContext());
273 LLVMTypeRef LLVMIntType(unsigned NumBits) {
274 return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits);
277 unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
278 return unwrap<IntegerType>(IntegerTy)->getBitWidth();
281 /*--.. Operations on real types ............................................--*/
283 LLVMTypeRef LLVMHalfTypeInContext(LLVMContextRef C) {
284 return (LLVMTypeRef) Type::getHalfTy(*unwrap(C));
286 LLVMTypeRef LLVMFloatTypeInContext(LLVMContextRef C) {
287 return (LLVMTypeRef) Type::getFloatTy(*unwrap(C));
289 LLVMTypeRef LLVMDoubleTypeInContext(LLVMContextRef C) {
290 return (LLVMTypeRef) Type::getDoubleTy(*unwrap(C));
292 LLVMTypeRef LLVMX86FP80TypeInContext(LLVMContextRef C) {
293 return (LLVMTypeRef) Type::getX86_FP80Ty(*unwrap(C));
295 LLVMTypeRef LLVMFP128TypeInContext(LLVMContextRef C) {
296 return (LLVMTypeRef) Type::getFP128Ty(*unwrap(C));
298 LLVMTypeRef LLVMPPCFP128TypeInContext(LLVMContextRef C) {
299 return (LLVMTypeRef) Type::getPPC_FP128Ty(*unwrap(C));
301 LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C) {
302 return (LLVMTypeRef) Type::getX86_MMXTy(*unwrap(C));
305 LLVMTypeRef LLVMHalfType(void) {
306 return LLVMHalfTypeInContext(LLVMGetGlobalContext());
308 LLVMTypeRef LLVMFloatType(void) {
309 return LLVMFloatTypeInContext(LLVMGetGlobalContext());
311 LLVMTypeRef LLVMDoubleType(void) {
312 return LLVMDoubleTypeInContext(LLVMGetGlobalContext());
314 LLVMTypeRef LLVMX86FP80Type(void) {
315 return LLVMX86FP80TypeInContext(LLVMGetGlobalContext());
317 LLVMTypeRef LLVMFP128Type(void) {
318 return LLVMFP128TypeInContext(LLVMGetGlobalContext());
320 LLVMTypeRef LLVMPPCFP128Type(void) {
321 return LLVMPPCFP128TypeInContext(LLVMGetGlobalContext());
323 LLVMTypeRef LLVMX86MMXType(void) {
324 return LLVMX86MMXTypeInContext(LLVMGetGlobalContext());
327 /*--.. Operations on function types ........................................--*/
329 LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
330 LLVMTypeRef *ParamTypes, unsigned ParamCount,
332 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
333 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
336 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
337 return unwrap<FunctionType>(FunctionTy)->isVarArg();
340 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
341 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
344 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
345 return unwrap<FunctionType>(FunctionTy)->getNumParams();
348 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
349 FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
350 for (FunctionType::param_iterator I = Ty->param_begin(),
351 E = Ty->param_end(); I != E; ++I)
355 /*--.. Operations on struct types ..........................................--*/
357 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
358 unsigned ElementCount, LLVMBool Packed) {
359 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
360 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
363 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
364 unsigned ElementCount, LLVMBool Packed) {
365 return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
366 ElementCount, Packed);
369 LLVMTypeRef LLVMStructCreateNamed(LLVMContextRef C, const char *Name)
371 return wrap(StructType::create(*unwrap(C), Name));
374 const char *LLVMGetStructName(LLVMTypeRef Ty)
376 StructType *Type = unwrap<StructType>(Ty);
377 if (!Type->hasName())
379 return Type->getName().data();
382 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
383 unsigned ElementCount, LLVMBool Packed) {
384 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
385 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
388 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) {
389 return unwrap<StructType>(StructTy)->getNumElements();
392 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
393 StructType *Ty = unwrap<StructType>(StructTy);
394 for (StructType::element_iterator I = Ty->element_begin(),
395 E = Ty->element_end(); I != E; ++I)
399 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) {
400 return unwrap<StructType>(StructTy)->isPacked();
403 LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy) {
404 return unwrap<StructType>(StructTy)->isOpaque();
407 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) {
408 return wrap(unwrap(M)->getTypeByName(Name));
411 /*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
413 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
414 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
417 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) {
418 return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
421 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
422 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
425 LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty) {
426 return wrap(unwrap<SequentialType>(Ty)->getElementType());
429 unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy) {
430 return unwrap<ArrayType>(ArrayTy)->getNumElements();
433 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) {
434 return unwrap<PointerType>(PointerTy)->getAddressSpace();
437 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
438 return unwrap<VectorType>(VectorTy)->getNumElements();
441 /*--.. Operations on other types ...........................................--*/
443 LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C) {
444 return wrap(Type::getVoidTy(*unwrap(C)));
446 LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C) {
447 return wrap(Type::getLabelTy(*unwrap(C)));
450 LLVMTypeRef LLVMVoidType(void) {
451 return LLVMVoidTypeInContext(LLVMGetGlobalContext());
453 LLVMTypeRef LLVMLabelType(void) {
454 return LLVMLabelTypeInContext(LLVMGetGlobalContext());
457 /*===-- Operations on values ----------------------------------------------===*/
459 /*--.. Operations on all values ............................................--*/
461 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
462 return wrap(unwrap(Val)->getType());
465 const char *LLVMGetValueName(LLVMValueRef Val) {
466 return unwrap(Val)->getName().data();
469 void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
470 unwrap(Val)->setName(Name);
473 void LLVMDumpValue(LLVMValueRef Val) {
477 char* LLVMPrintValueToString(LLVMValueRef Val) {
479 raw_string_ostream os(buf);
481 unwrap(Val)->print(os);
484 return strdup(buf.c_str());
487 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal) {
488 unwrap(OldVal)->replaceAllUsesWith(unwrap(NewVal));
491 int LLVMHasMetadata(LLVMValueRef Inst) {
492 return unwrap<Instruction>(Inst)->hasMetadata();
495 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
496 return wrap(unwrap<Instruction>(Inst)->getMetadata(KindID));
499 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) {
500 unwrap<Instruction>(Inst)->setMetadata(KindID, MD? unwrap<MDNode>(MD) : NULL);
503 /*--.. Conversion functions ................................................--*/
505 #define LLVM_DEFINE_VALUE_CAST(name) \
506 LLVMValueRef LLVMIsA##name(LLVMValueRef Val) { \
507 return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
510 LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DEFINE_VALUE_CAST)
512 /*--.. Operations on Uses ..................................................--*/
513 LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val) {
514 Value *V = unwrap(Val);
515 Value::use_iterator I = V->use_begin();
516 if (I == V->use_end())
518 return wrap(&(I.getUse()));
521 LLVMUseRef LLVMGetNextUse(LLVMUseRef U) {
522 Use *Next = unwrap(U)->getNext();
528 LLVMValueRef LLVMGetUser(LLVMUseRef U) {
529 return wrap(unwrap(U)->getUser());
532 LLVMValueRef LLVMGetUsedValue(LLVMUseRef U) {
533 return wrap(unwrap(U)->get());
536 /*--.. Operations on Users .................................................--*/
537 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index) {
538 Value *V = unwrap(Val);
539 if (MDNode *MD = dyn_cast<MDNode>(V))
540 return wrap(MD->getOperand(Index));
541 return wrap(cast<User>(V)->getOperand(Index));
544 void LLVMSetOperand(LLVMValueRef Val, unsigned Index, LLVMValueRef Op) {
545 unwrap<User>(Val)->setOperand(Index, unwrap(Op));
548 int LLVMGetNumOperands(LLVMValueRef Val) {
549 Value *V = unwrap(Val);
550 if (MDNode *MD = dyn_cast<MDNode>(V))
551 return MD->getNumOperands();
552 return cast<User>(V)->getNumOperands();
555 /*--.. Operations on constants of any type .................................--*/
557 LLVMValueRef LLVMConstNull(LLVMTypeRef Ty) {
558 return wrap(Constant::getNullValue(unwrap(Ty)));
561 LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty) {
562 return wrap(Constant::getAllOnesValue(unwrap(Ty)));
565 LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty) {
566 return wrap(UndefValue::get(unwrap(Ty)));
569 LLVMBool LLVMIsConstant(LLVMValueRef Ty) {
570 return isa<Constant>(unwrap(Ty));
573 LLVMBool LLVMIsNull(LLVMValueRef Val) {
574 if (Constant *C = dyn_cast<Constant>(unwrap(Val)))
575 return C->isNullValue();
579 LLVMBool LLVMIsUndef(LLVMValueRef Val) {
580 return isa<UndefValue>(unwrap(Val));
583 LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty) {
585 wrap(ConstantPointerNull::get(unwrap<PointerType>(Ty)));
588 /*--.. Operations on metadata nodes ........................................--*/
590 LLVMValueRef LLVMMDStringInContext(LLVMContextRef C, const char *Str,
592 return wrap(MDString::get(*unwrap(C), StringRef(Str, SLen)));
595 LLVMValueRef LLVMMDString(const char *Str, unsigned SLen) {
596 return LLVMMDStringInContext(LLVMGetGlobalContext(), Str, SLen);
599 LLVMValueRef LLVMMDNodeInContext(LLVMContextRef C, LLVMValueRef *Vals,
601 return wrap(MDNode::get(*unwrap(C),
602 makeArrayRef(unwrap<Value>(Vals, Count), Count)));
605 LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count) {
606 return LLVMMDNodeInContext(LLVMGetGlobalContext(), Vals, Count);
609 const char *LLVMGetMDString(LLVMValueRef V, unsigned* Len) {
610 if (const MDString *S = dyn_cast<MDString>(unwrap(V))) {
611 *Len = S->getString().size();
612 return S->getString().data();
618 unsigned LLVMGetMDNodeNumOperands(LLVMValueRef V)
620 return cast<MDNode>(unwrap(V))->getNumOperands();
623 void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest)
625 const MDNode *N = cast<MDNode>(unwrap(V));
626 const unsigned numOperands = N->getNumOperands();
627 for (unsigned i = 0; i < numOperands; i++)
628 Dest[i] = wrap(N->getOperand(i));
631 unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name)
633 if (NamedMDNode *N = unwrap(M)->getNamedMetadata(name)) {
634 return N->getNumOperands();
639 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest)
641 NamedMDNode *N = unwrap(M)->getNamedMetadata(name);
644 for (unsigned i=0;i<N->getNumOperands();i++)
645 Dest[i] = wrap(N->getOperand(i));
648 void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name,
651 NamedMDNode *N = unwrap(M)->getOrInsertNamedMetadata(name);
654 MDNode *Op = Val ? unwrap<MDNode>(Val) : NULL;
659 /*--.. Operations on scalar constants ......................................--*/
661 LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
662 LLVMBool SignExtend) {
663 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
666 LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
668 const uint64_t Words[]) {
669 IntegerType *Ty = unwrap<IntegerType>(IntTy);
670 return wrap(ConstantInt::get(Ty->getContext(),
671 APInt(Ty->getBitWidth(),
672 makeArrayRef(Words, NumWords))));
675 LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char Str[],
677 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str),
681 LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char Str[],
682 unsigned SLen, uint8_t Radix) {
683 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str, SLen),
687 LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) {
688 return wrap(ConstantFP::get(unwrap(RealTy), N));
691 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) {
692 return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Text)));
695 LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char Str[],
697 return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Str, SLen)));
700 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
701 return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
704 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
705 return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
708 /*--.. Operations on composite constants ...................................--*/
710 LLVMValueRef LLVMConstStringInContext(LLVMContextRef C, const char *Str,
712 LLVMBool DontNullTerminate) {
713 /* Inverted the sense of AddNull because ', 0)' is a
714 better mnemonic for null termination than ', 1)'. */
715 return wrap(ConstantDataArray::getString(*unwrap(C), StringRef(Str, Length),
716 DontNullTerminate == 0));
718 LLVMValueRef LLVMConstStructInContext(LLVMContextRef C,
719 LLVMValueRef *ConstantVals,
720 unsigned Count, LLVMBool Packed) {
721 Constant **Elements = unwrap<Constant>(ConstantVals, Count);
722 return wrap(ConstantStruct::getAnon(*unwrap(C), makeArrayRef(Elements, Count),
726 LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
727 LLVMBool DontNullTerminate) {
728 return LLVMConstStringInContext(LLVMGetGlobalContext(), Str, Length,
731 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
732 LLVMValueRef *ConstantVals, unsigned Length) {
733 ArrayRef<Constant*> V(unwrap<Constant>(ConstantVals, Length), Length);
734 return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length), V));
736 LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
738 return LLVMConstStructInContext(LLVMGetGlobalContext(), ConstantVals, Count,
742 LLVMValueRef LLVMConstNamedStruct(LLVMTypeRef StructTy,
743 LLVMValueRef *ConstantVals,
745 Constant **Elements = unwrap<Constant>(ConstantVals, Count);
746 StructType *Ty = cast<StructType>(unwrap(StructTy));
748 return wrap(ConstantStruct::get(Ty, makeArrayRef(Elements, Count)));
751 LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size) {
752 return wrap(ConstantVector::get(makeArrayRef(
753 unwrap<Constant>(ScalarConstantVals, Size), Size)));
756 /*-- Opcode mapping */
758 static LLVMOpcode map_to_llvmopcode(int opcode)
761 default: llvm_unreachable("Unhandled Opcode.");
762 #define HANDLE_INST(num, opc, clas) case num: return LLVM##opc;
763 #include "llvm/IR/Instruction.def"
768 static int map_from_llvmopcode(LLVMOpcode code)
771 #define HANDLE_INST(num, opc, clas) case LLVM##opc: return num;
772 #include "llvm/IR/Instruction.def"
775 llvm_unreachable("Unhandled Opcode.");
778 /*--.. Constant expressions ................................................--*/
780 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
781 return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode());
784 LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty) {
785 return wrap(ConstantExpr::getAlignOf(unwrap(Ty)));
788 LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty) {
789 return wrap(ConstantExpr::getSizeOf(unwrap(Ty)));
792 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
793 return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
796 LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal) {
797 return wrap(ConstantExpr::getNSWNeg(unwrap<Constant>(ConstantVal)));
800 LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal) {
801 return wrap(ConstantExpr::getNUWNeg(unwrap<Constant>(ConstantVal)));
805 LLVMValueRef LLVMConstFNeg(LLVMValueRef ConstantVal) {
806 return wrap(ConstantExpr::getFNeg(unwrap<Constant>(ConstantVal)));
809 LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal) {
810 return wrap(ConstantExpr::getNot(unwrap<Constant>(ConstantVal)));
813 LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
814 return wrap(ConstantExpr::getAdd(unwrap<Constant>(LHSConstant),
815 unwrap<Constant>(RHSConstant)));
818 LLVMValueRef LLVMConstNSWAdd(LLVMValueRef LHSConstant,
819 LLVMValueRef RHSConstant) {
820 return wrap(ConstantExpr::getNSWAdd(unwrap<Constant>(LHSConstant),
821 unwrap<Constant>(RHSConstant)));
824 LLVMValueRef LLVMConstNUWAdd(LLVMValueRef LHSConstant,
825 LLVMValueRef RHSConstant) {
826 return wrap(ConstantExpr::getNUWAdd(unwrap<Constant>(LHSConstant),
827 unwrap<Constant>(RHSConstant)));
830 LLVMValueRef LLVMConstFAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
831 return wrap(ConstantExpr::getFAdd(unwrap<Constant>(LHSConstant),
832 unwrap<Constant>(RHSConstant)));
835 LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
836 return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant),
837 unwrap<Constant>(RHSConstant)));
840 LLVMValueRef LLVMConstNSWSub(LLVMValueRef LHSConstant,
841 LLVMValueRef RHSConstant) {
842 return wrap(ConstantExpr::getNSWSub(unwrap<Constant>(LHSConstant),
843 unwrap<Constant>(RHSConstant)));
846 LLVMValueRef LLVMConstNUWSub(LLVMValueRef LHSConstant,
847 LLVMValueRef RHSConstant) {
848 return wrap(ConstantExpr::getNUWSub(unwrap<Constant>(LHSConstant),
849 unwrap<Constant>(RHSConstant)));
852 LLVMValueRef LLVMConstFSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
853 return wrap(ConstantExpr::getFSub(unwrap<Constant>(LHSConstant),
854 unwrap<Constant>(RHSConstant)));
857 LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
858 return wrap(ConstantExpr::getMul(unwrap<Constant>(LHSConstant),
859 unwrap<Constant>(RHSConstant)));
862 LLVMValueRef LLVMConstNSWMul(LLVMValueRef LHSConstant,
863 LLVMValueRef RHSConstant) {
864 return wrap(ConstantExpr::getNSWMul(unwrap<Constant>(LHSConstant),
865 unwrap<Constant>(RHSConstant)));
868 LLVMValueRef LLVMConstNUWMul(LLVMValueRef LHSConstant,
869 LLVMValueRef RHSConstant) {
870 return wrap(ConstantExpr::getNUWMul(unwrap<Constant>(LHSConstant),
871 unwrap<Constant>(RHSConstant)));
874 LLVMValueRef LLVMConstFMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
875 return wrap(ConstantExpr::getFMul(unwrap<Constant>(LHSConstant),
876 unwrap<Constant>(RHSConstant)));
879 LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
880 return wrap(ConstantExpr::getUDiv(unwrap<Constant>(LHSConstant),
881 unwrap<Constant>(RHSConstant)));
884 LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
885 return wrap(ConstantExpr::getSDiv(unwrap<Constant>(LHSConstant),
886 unwrap<Constant>(RHSConstant)));
889 LLVMValueRef LLVMConstExactSDiv(LLVMValueRef LHSConstant,
890 LLVMValueRef RHSConstant) {
891 return wrap(ConstantExpr::getExactSDiv(unwrap<Constant>(LHSConstant),
892 unwrap<Constant>(RHSConstant)));
895 LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
896 return wrap(ConstantExpr::getFDiv(unwrap<Constant>(LHSConstant),
897 unwrap<Constant>(RHSConstant)));
900 LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
901 return wrap(ConstantExpr::getURem(unwrap<Constant>(LHSConstant),
902 unwrap<Constant>(RHSConstant)));
905 LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
906 return wrap(ConstantExpr::getSRem(unwrap<Constant>(LHSConstant),
907 unwrap<Constant>(RHSConstant)));
910 LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
911 return wrap(ConstantExpr::getFRem(unwrap<Constant>(LHSConstant),
912 unwrap<Constant>(RHSConstant)));
915 LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
916 return wrap(ConstantExpr::getAnd(unwrap<Constant>(LHSConstant),
917 unwrap<Constant>(RHSConstant)));
920 LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
921 return wrap(ConstantExpr::getOr(unwrap<Constant>(LHSConstant),
922 unwrap<Constant>(RHSConstant)));
925 LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
926 return wrap(ConstantExpr::getXor(unwrap<Constant>(LHSConstant),
927 unwrap<Constant>(RHSConstant)));
930 LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
931 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
932 return wrap(ConstantExpr::getICmp(Predicate,
933 unwrap<Constant>(LHSConstant),
934 unwrap<Constant>(RHSConstant)));
937 LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
938 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
939 return wrap(ConstantExpr::getFCmp(Predicate,
940 unwrap<Constant>(LHSConstant),
941 unwrap<Constant>(RHSConstant)));
944 LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
945 return wrap(ConstantExpr::getShl(unwrap<Constant>(LHSConstant),
946 unwrap<Constant>(RHSConstant)));
949 LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
950 return wrap(ConstantExpr::getLShr(unwrap<Constant>(LHSConstant),
951 unwrap<Constant>(RHSConstant)));
954 LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
955 return wrap(ConstantExpr::getAShr(unwrap<Constant>(LHSConstant),
956 unwrap<Constant>(RHSConstant)));
959 LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
960 LLVMValueRef *ConstantIndices, unsigned NumIndices) {
961 ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
963 return wrap(ConstantExpr::getGetElementPtr(unwrap<Constant>(ConstantVal),
967 LLVMValueRef LLVMConstInBoundsGEP(LLVMValueRef ConstantVal,
968 LLVMValueRef *ConstantIndices,
969 unsigned NumIndices) {
970 Constant* Val = unwrap<Constant>(ConstantVal);
971 ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
973 return wrap(ConstantExpr::getInBoundsGetElementPtr(Val, IdxList));
976 LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
977 return wrap(ConstantExpr::getTrunc(unwrap<Constant>(ConstantVal),
981 LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
982 return wrap(ConstantExpr::getSExt(unwrap<Constant>(ConstantVal),
986 LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
987 return wrap(ConstantExpr::getZExt(unwrap<Constant>(ConstantVal),
991 LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
992 return wrap(ConstantExpr::getFPTrunc(unwrap<Constant>(ConstantVal),
996 LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
997 return wrap(ConstantExpr::getFPExtend(unwrap<Constant>(ConstantVal),
1001 LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1002 return wrap(ConstantExpr::getUIToFP(unwrap<Constant>(ConstantVal),
1006 LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1007 return wrap(ConstantExpr::getSIToFP(unwrap<Constant>(ConstantVal),
1011 LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1012 return wrap(ConstantExpr::getFPToUI(unwrap<Constant>(ConstantVal),
1016 LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1017 return wrap(ConstantExpr::getFPToSI(unwrap<Constant>(ConstantVal),
1021 LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1022 return wrap(ConstantExpr::getPtrToInt(unwrap<Constant>(ConstantVal),
1026 LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1027 return wrap(ConstantExpr::getIntToPtr(unwrap<Constant>(ConstantVal),
1031 LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1032 return wrap(ConstantExpr::getBitCast(unwrap<Constant>(ConstantVal),
1036 LLVMValueRef LLVMConstAddrSpaceCast(LLVMValueRef ConstantVal,
1037 LLVMTypeRef ToType) {
1038 return wrap(ConstantExpr::getAddrSpaceCast(unwrap<Constant>(ConstantVal),
1042 LLVMValueRef LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal,
1043 LLVMTypeRef ToType) {
1044 return wrap(ConstantExpr::getZExtOrBitCast(unwrap<Constant>(ConstantVal),
1048 LLVMValueRef LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal,
1049 LLVMTypeRef ToType) {
1050 return wrap(ConstantExpr::getSExtOrBitCast(unwrap<Constant>(ConstantVal),
1054 LLVMValueRef LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal,
1055 LLVMTypeRef ToType) {
1056 return wrap(ConstantExpr::getTruncOrBitCast(unwrap<Constant>(ConstantVal),
1060 LLVMValueRef LLVMConstPointerCast(LLVMValueRef ConstantVal,
1061 LLVMTypeRef ToType) {
1062 return wrap(ConstantExpr::getPointerCast(unwrap<Constant>(ConstantVal),
1066 LLVMValueRef LLVMConstIntCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType,
1067 LLVMBool isSigned) {
1068 return wrap(ConstantExpr::getIntegerCast(unwrap<Constant>(ConstantVal),
1069 unwrap(ToType), isSigned));
1072 LLVMValueRef LLVMConstFPCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1073 return wrap(ConstantExpr::getFPCast(unwrap<Constant>(ConstantVal),
1077 LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
1078 LLVMValueRef ConstantIfTrue,
1079 LLVMValueRef ConstantIfFalse) {
1080 return wrap(ConstantExpr::getSelect(unwrap<Constant>(ConstantCondition),
1081 unwrap<Constant>(ConstantIfTrue),
1082 unwrap<Constant>(ConstantIfFalse)));
1085 LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
1086 LLVMValueRef IndexConstant) {
1087 return wrap(ConstantExpr::getExtractElement(unwrap<Constant>(VectorConstant),
1088 unwrap<Constant>(IndexConstant)));
1091 LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
1092 LLVMValueRef ElementValueConstant,
1093 LLVMValueRef IndexConstant) {
1094 return wrap(ConstantExpr::getInsertElement(unwrap<Constant>(VectorConstant),
1095 unwrap<Constant>(ElementValueConstant),
1096 unwrap<Constant>(IndexConstant)));
1099 LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
1100 LLVMValueRef VectorBConstant,
1101 LLVMValueRef MaskConstant) {
1102 return wrap(ConstantExpr::getShuffleVector(unwrap<Constant>(VectorAConstant),
1103 unwrap<Constant>(VectorBConstant),
1104 unwrap<Constant>(MaskConstant)));
1107 LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
1109 return wrap(ConstantExpr::getExtractValue(unwrap<Constant>(AggConstant),
1110 makeArrayRef(IdxList, NumIdx)));
1113 LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
1114 LLVMValueRef ElementValueConstant,
1115 unsigned *IdxList, unsigned NumIdx) {
1116 return wrap(ConstantExpr::getInsertValue(unwrap<Constant>(AggConstant),
1117 unwrap<Constant>(ElementValueConstant),
1118 makeArrayRef(IdxList, NumIdx)));
1121 LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString,
1122 const char *Constraints,
1123 LLVMBool HasSideEffects,
1124 LLVMBool IsAlignStack) {
1125 return wrap(InlineAsm::get(dyn_cast<FunctionType>(unwrap(Ty)), AsmString,
1126 Constraints, HasSideEffects, IsAlignStack));
1129 LLVMValueRef LLVMBlockAddress(LLVMValueRef F, LLVMBasicBlockRef BB) {
1130 return wrap(BlockAddress::get(unwrap<Function>(F), unwrap(BB)));
1133 /*--.. Operations on global variables, functions, and aliases (globals) ....--*/
1135 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) {
1136 return wrap(unwrap<GlobalValue>(Global)->getParent());
1139 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) {
1140 return unwrap<GlobalValue>(Global)->isDeclaration();
1143 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) {
1144 switch (unwrap<GlobalValue>(Global)->getLinkage()) {
1145 case GlobalValue::ExternalLinkage:
1146 return LLVMExternalLinkage;
1147 case GlobalValue::AvailableExternallyLinkage:
1148 return LLVMAvailableExternallyLinkage;
1149 case GlobalValue::LinkOnceAnyLinkage:
1150 return LLVMLinkOnceAnyLinkage;
1151 case GlobalValue::LinkOnceODRLinkage:
1152 return LLVMLinkOnceODRLinkage;
1153 case GlobalValue::WeakAnyLinkage:
1154 return LLVMWeakAnyLinkage;
1155 case GlobalValue::WeakODRLinkage:
1156 return LLVMWeakODRLinkage;
1157 case GlobalValue::AppendingLinkage:
1158 return LLVMAppendingLinkage;
1159 case GlobalValue::InternalLinkage:
1160 return LLVMInternalLinkage;
1161 case GlobalValue::PrivateLinkage:
1162 return LLVMPrivateLinkage;
1163 case GlobalValue::LinkerPrivateLinkage:
1164 return LLVMLinkerPrivateLinkage;
1165 case GlobalValue::LinkerPrivateWeakLinkage:
1166 return LLVMLinkerPrivateWeakLinkage;
1167 case GlobalValue::DLLImportLinkage:
1168 return LLVMDLLImportLinkage;
1169 case GlobalValue::DLLExportLinkage:
1170 return LLVMDLLExportLinkage;
1171 case GlobalValue::ExternalWeakLinkage:
1172 return LLVMExternalWeakLinkage;
1173 case GlobalValue::CommonLinkage:
1174 return LLVMCommonLinkage;
1177 llvm_unreachable("Invalid GlobalValue linkage!");
1180 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) {
1181 GlobalValue *GV = unwrap<GlobalValue>(Global);
1184 case LLVMExternalLinkage:
1185 GV->setLinkage(GlobalValue::ExternalLinkage);
1187 case LLVMAvailableExternallyLinkage:
1188 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
1190 case LLVMLinkOnceAnyLinkage:
1191 GV->setLinkage(GlobalValue::LinkOnceAnyLinkage);
1193 case LLVMLinkOnceODRLinkage:
1194 GV->setLinkage(GlobalValue::LinkOnceODRLinkage);
1196 case LLVMLinkOnceODRAutoHideLinkage:
1197 DEBUG(errs() << "LLVMSetLinkage(): LLVMLinkOnceODRAutoHideLinkage is no "
1198 "longer supported.");
1200 case LLVMWeakAnyLinkage:
1201 GV->setLinkage(GlobalValue::WeakAnyLinkage);
1203 case LLVMWeakODRLinkage:
1204 GV->setLinkage(GlobalValue::WeakODRLinkage);
1206 case LLVMAppendingLinkage:
1207 GV->setLinkage(GlobalValue::AppendingLinkage);
1209 case LLVMInternalLinkage:
1210 GV->setLinkage(GlobalValue::InternalLinkage);
1212 case LLVMPrivateLinkage:
1213 GV->setLinkage(GlobalValue::PrivateLinkage);
1215 case LLVMLinkerPrivateLinkage:
1216 GV->setLinkage(GlobalValue::LinkerPrivateLinkage);
1218 case LLVMLinkerPrivateWeakLinkage:
1219 GV->setLinkage(GlobalValue::LinkerPrivateWeakLinkage);
1221 case LLVMDLLImportLinkage:
1222 GV->setLinkage(GlobalValue::DLLImportLinkage);
1224 case LLVMDLLExportLinkage:
1225 GV->setLinkage(GlobalValue::DLLExportLinkage);
1227 case LLVMExternalWeakLinkage:
1228 GV->setLinkage(GlobalValue::ExternalWeakLinkage);
1230 case LLVMGhostLinkage:
1232 << "LLVMSetLinkage(): LLVMGhostLinkage is no longer supported.");
1234 case LLVMCommonLinkage:
1235 GV->setLinkage(GlobalValue::CommonLinkage);
1240 const char *LLVMGetSection(LLVMValueRef Global) {
1241 return unwrap<GlobalValue>(Global)->getSection().c_str();
1244 void LLVMSetSection(LLVMValueRef Global, const char *Section) {
1245 unwrap<GlobalValue>(Global)->setSection(Section);
1248 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) {
1249 return static_cast<LLVMVisibility>(
1250 unwrap<GlobalValue>(Global)->getVisibility());
1253 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) {
1254 unwrap<GlobalValue>(Global)
1255 ->setVisibility(static_cast<GlobalValue::VisibilityTypes>(Viz));
1258 /*--.. Operations on global variables, load and store instructions .........--*/
1260 unsigned LLVMGetAlignment(LLVMValueRef V) {
1261 Value *P = unwrap<Value>(V);
1262 if (GlobalValue *GV = dyn_cast<GlobalValue>(P))
1263 return GV->getAlignment();
1264 if (LoadInst *LI = dyn_cast<LoadInst>(P))
1265 return LI->getAlignment();
1266 if (StoreInst *SI = dyn_cast<StoreInst>(P))
1267 return SI->getAlignment();
1269 llvm_unreachable("only GlobalValue, LoadInst and StoreInst have alignment");
1272 void LLVMSetAlignment(LLVMValueRef V, unsigned Bytes) {
1273 Value *P = unwrap<Value>(V);
1274 if (GlobalValue *GV = dyn_cast<GlobalValue>(P))
1275 GV->setAlignment(Bytes);
1276 else if (LoadInst *LI = dyn_cast<LoadInst>(P))
1277 LI->setAlignment(Bytes);
1278 else if (StoreInst *SI = dyn_cast<StoreInst>(P))
1279 SI->setAlignment(Bytes);
1281 llvm_unreachable("only GlobalValue, LoadInst and StoreInst have alignment");
1284 /*--.. Operations on global variables ......................................--*/
1286 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) {
1287 return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
1288 GlobalValue::ExternalLinkage, 0, Name));
1291 LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty,
1293 unsigned AddressSpace) {
1294 return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
1295 GlobalValue::ExternalLinkage, 0, Name, 0,
1296 GlobalVariable::NotThreadLocal, AddressSpace));
1299 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) {
1300 return wrap(unwrap(M)->getNamedGlobal(Name));
1303 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) {
1304 Module *Mod = unwrap(M);
1305 Module::global_iterator I = Mod->global_begin();
1306 if (I == Mod->global_end())
1311 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) {
1312 Module *Mod = unwrap(M);
1313 Module::global_iterator I = Mod->global_end();
1314 if (I == Mod->global_begin())
1319 LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar) {
1320 GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1321 Module::global_iterator I = GV;
1322 if (++I == GV->getParent()->global_end())
1327 LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar) {
1328 GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1329 Module::global_iterator I = GV;
1330 if (I == GV->getParent()->global_begin())
1335 void LLVMDeleteGlobal(LLVMValueRef GlobalVar) {
1336 unwrap<GlobalVariable>(GlobalVar)->eraseFromParent();
1339 LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar) {
1340 GlobalVariable* GV = unwrap<GlobalVariable>(GlobalVar);
1341 if ( !GV->hasInitializer() )
1343 return wrap(GV->getInitializer());
1346 void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal) {
1347 unwrap<GlobalVariable>(GlobalVar)
1348 ->setInitializer(unwrap<Constant>(ConstantVal));
1351 LLVMBool LLVMIsThreadLocal(LLVMValueRef GlobalVar) {
1352 return unwrap<GlobalVariable>(GlobalVar)->isThreadLocal();
1355 void LLVMSetThreadLocal(LLVMValueRef GlobalVar, LLVMBool IsThreadLocal) {
1356 unwrap<GlobalVariable>(GlobalVar)->setThreadLocal(IsThreadLocal != 0);
1359 LLVMBool LLVMIsGlobalConstant(LLVMValueRef GlobalVar) {
1360 return unwrap<GlobalVariable>(GlobalVar)->isConstant();
1363 void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, LLVMBool IsConstant) {
1364 unwrap<GlobalVariable>(GlobalVar)->setConstant(IsConstant != 0);
1367 LLVMThreadLocalMode LLVMGetThreadLocalMode(LLVMValueRef GlobalVar) {
1368 switch (unwrap<GlobalVariable>(GlobalVar)->getThreadLocalMode()) {
1369 case GlobalVariable::NotThreadLocal:
1370 return LLVMNotThreadLocal;
1371 case GlobalVariable::GeneralDynamicTLSModel:
1372 return LLVMGeneralDynamicTLSModel;
1373 case GlobalVariable::LocalDynamicTLSModel:
1374 return LLVMLocalDynamicTLSModel;
1375 case GlobalVariable::InitialExecTLSModel:
1376 return LLVMInitialExecTLSModel;
1377 case GlobalVariable::LocalExecTLSModel:
1378 return LLVMLocalExecTLSModel;
1381 llvm_unreachable("Invalid GlobalVariable thread local mode");
1384 void LLVMSetThreadLocalMode(LLVMValueRef GlobalVar, LLVMThreadLocalMode Mode) {
1385 GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1388 case LLVMNotThreadLocal:
1389 GV->setThreadLocalMode(GlobalVariable::NotThreadLocal);
1391 case LLVMGeneralDynamicTLSModel:
1392 GV->setThreadLocalMode(GlobalVariable::GeneralDynamicTLSModel);
1394 case LLVMLocalDynamicTLSModel:
1395 GV->setThreadLocalMode(GlobalVariable::LocalDynamicTLSModel);
1397 case LLVMInitialExecTLSModel:
1398 GV->setThreadLocalMode(GlobalVariable::InitialExecTLSModel);
1400 case LLVMLocalExecTLSModel:
1401 GV->setThreadLocalMode(GlobalVariable::LocalExecTLSModel);
1406 LLVMBool LLVMIsExternallyInitialized(LLVMValueRef GlobalVar) {
1407 return unwrap<GlobalVariable>(GlobalVar)->isExternallyInitialized();
1410 void LLVMSetExternallyInitialized(LLVMValueRef GlobalVar, LLVMBool IsExtInit) {
1411 unwrap<GlobalVariable>(GlobalVar)->setExternallyInitialized(IsExtInit);
1414 /*--.. Operations on aliases ......................................--*/
1416 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
1418 return wrap(new GlobalAlias(unwrap(Ty), GlobalValue::ExternalLinkage, Name,
1419 unwrap<Constant>(Aliasee), unwrap (M)));
1422 /*--.. Operations on functions .............................................--*/
1424 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
1425 LLVMTypeRef FunctionTy) {
1426 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
1427 GlobalValue::ExternalLinkage, Name, unwrap(M)));
1430 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) {
1431 return wrap(unwrap(M)->getFunction(Name));
1434 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) {
1435 Module *Mod = unwrap(M);
1436 Module::iterator I = Mod->begin();
1437 if (I == Mod->end())
1442 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) {
1443 Module *Mod = unwrap(M);
1444 Module::iterator I = Mod->end();
1445 if (I == Mod->begin())
1450 LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn) {
1451 Function *Func = unwrap<Function>(Fn);
1452 Module::iterator I = Func;
1453 if (++I == Func->getParent()->end())
1458 LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn) {
1459 Function *Func = unwrap<Function>(Fn);
1460 Module::iterator I = Func;
1461 if (I == Func->getParent()->begin())
1466 void LLVMDeleteFunction(LLVMValueRef Fn) {
1467 unwrap<Function>(Fn)->eraseFromParent();
1470 unsigned LLVMGetIntrinsicID(LLVMValueRef Fn) {
1471 if (Function *F = dyn_cast<Function>(unwrap(Fn)))
1472 return F->getIntrinsicID();
1476 unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn) {
1477 return unwrap<Function>(Fn)->getCallingConv();
1480 void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC) {
1481 return unwrap<Function>(Fn)->setCallingConv(
1482 static_cast<CallingConv::ID>(CC));
1485 const char *LLVMGetGC(LLVMValueRef Fn) {
1486 Function *F = unwrap<Function>(Fn);
1487 return F->hasGC()? F->getGC() : 0;
1490 void LLVMSetGC(LLVMValueRef Fn, const char *GC) {
1491 Function *F = unwrap<Function>(Fn);
1498 void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
1499 Function *Func = unwrap<Function>(Fn);
1500 const AttributeSet PAL = Func->getAttributes();
1502 const AttributeSet PALnew =
1503 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex,
1504 AttributeSet::get(Func->getContext(),
1505 AttributeSet::FunctionIndex, B));
1506 Func->setAttributes(PALnew);
1509 void LLVMAddTargetDependentFunctionAttr(LLVMValueRef Fn, const char *A,
1511 Function *Func = unwrap<Function>(Fn);
1512 AttributeSet::AttrIndex Idx =
1513 AttributeSet::AttrIndex(AttributeSet::FunctionIndex);
1516 B.addAttribute(A, V);
1517 AttributeSet Set = AttributeSet::get(Func->getContext(), Idx, B);
1518 Func->addAttributes(Idx, Set);
1521 void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
1522 Function *Func = unwrap<Function>(Fn);
1523 const AttributeSet PAL = Func->getAttributes();
1525 const AttributeSet PALnew =
1526 PAL.removeAttributes(Func->getContext(), AttributeSet::FunctionIndex,
1527 AttributeSet::get(Func->getContext(),
1528 AttributeSet::FunctionIndex, B));
1529 Func->setAttributes(PALnew);
1532 LLVMAttribute LLVMGetFunctionAttr(LLVMValueRef Fn) {
1533 Function *Func = unwrap<Function>(Fn);
1534 const AttributeSet PAL = Func->getAttributes();
1535 return (LLVMAttribute)PAL.Raw(AttributeSet::FunctionIndex);
1538 /*--.. Operations on parameters ............................................--*/
1540 unsigned LLVMCountParams(LLVMValueRef FnRef) {
1541 // This function is strictly redundant to
1542 // LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
1543 return unwrap<Function>(FnRef)->arg_size();
1546 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) {
1547 Function *Fn = unwrap<Function>(FnRef);
1548 for (Function::arg_iterator I = Fn->arg_begin(),
1549 E = Fn->arg_end(); I != E; I++)
1550 *ParamRefs++ = wrap(I);
1553 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) {
1554 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin();
1560 LLVMValueRef LLVMGetParamParent(LLVMValueRef V) {
1561 return wrap(unwrap<Argument>(V)->getParent());
1564 LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn) {
1565 Function *Func = unwrap<Function>(Fn);
1566 Function::arg_iterator I = Func->arg_begin();
1567 if (I == Func->arg_end())
1572 LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn) {
1573 Function *Func = unwrap<Function>(Fn);
1574 Function::arg_iterator I = Func->arg_end();
1575 if (I == Func->arg_begin())
1580 LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg) {
1581 Argument *A = unwrap<Argument>(Arg);
1582 Function::arg_iterator I = A;
1583 if (++I == A->getParent()->arg_end())
1588 LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg) {
1589 Argument *A = unwrap<Argument>(Arg);
1590 Function::arg_iterator I = A;
1591 if (I == A->getParent()->arg_begin())
1596 void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
1597 Argument *A = unwrap<Argument>(Arg);
1599 A->addAttr(AttributeSet::get(A->getContext(), A->getArgNo() + 1, B));
1602 void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
1603 Argument *A = unwrap<Argument>(Arg);
1605 A->removeAttr(AttributeSet::get(A->getContext(), A->getArgNo() + 1, B));
1608 LLVMAttribute LLVMGetAttribute(LLVMValueRef Arg) {
1609 Argument *A = unwrap<Argument>(Arg);
1610 return (LLVMAttribute)A->getParent()->getAttributes().
1611 Raw(A->getArgNo()+1);
1615 void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align) {
1616 Argument *A = unwrap<Argument>(Arg);
1618 B.addAlignmentAttr(align);
1619 A->addAttr(AttributeSet::get(A->getContext(),A->getArgNo() + 1, B));
1622 /*--.. Operations on basic blocks ..........................................--*/
1624 LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB) {
1625 return wrap(static_cast<Value*>(unwrap(BB)));
1628 LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val) {
1629 return isa<BasicBlock>(unwrap(Val));
1632 LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val) {
1633 return wrap(unwrap<BasicBlock>(Val));
1636 LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB) {
1637 return wrap(unwrap(BB)->getParent());
1640 LLVMValueRef LLVMGetBasicBlockTerminator(LLVMBasicBlockRef BB) {
1641 return wrap(unwrap(BB)->getTerminator());
1644 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) {
1645 return unwrap<Function>(FnRef)->size();
1648 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){
1649 Function *Fn = unwrap<Function>(FnRef);
1650 for (Function::iterator I = Fn->begin(), E = Fn->end(); I != E; I++)
1651 *BasicBlocksRefs++ = wrap(I);
1654 LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn) {
1655 return wrap(&unwrap<Function>(Fn)->getEntryBlock());
1658 LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn) {
1659 Function *Func = unwrap<Function>(Fn);
1660 Function::iterator I = Func->begin();
1661 if (I == Func->end())
1666 LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn) {
1667 Function *Func = unwrap<Function>(Fn);
1668 Function::iterator I = Func->end();
1669 if (I == Func->begin())
1674 LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB) {
1675 BasicBlock *Block = unwrap(BB);
1676 Function::iterator I = Block;
1677 if (++I == Block->getParent()->end())
1682 LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB) {
1683 BasicBlock *Block = unwrap(BB);
1684 Function::iterator I = Block;
1685 if (I == Block->getParent()->begin())
1690 LLVMBasicBlockRef LLVMAppendBasicBlockInContext(LLVMContextRef C,
1693 return wrap(BasicBlock::Create(*unwrap(C), Name, unwrap<Function>(FnRef)));
1696 LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef FnRef, const char *Name) {
1697 return LLVMAppendBasicBlockInContext(LLVMGetGlobalContext(), FnRef, Name);
1700 LLVMBasicBlockRef LLVMInsertBasicBlockInContext(LLVMContextRef C,
1701 LLVMBasicBlockRef BBRef,
1703 BasicBlock *BB = unwrap(BBRef);
1704 return wrap(BasicBlock::Create(*unwrap(C), Name, BB->getParent(), BB));
1707 LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef BBRef,
1709 return LLVMInsertBasicBlockInContext(LLVMGetGlobalContext(), BBRef, Name);
1712 void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef) {
1713 unwrap(BBRef)->eraseFromParent();
1716 void LLVMRemoveBasicBlockFromParent(LLVMBasicBlockRef BBRef) {
1717 unwrap(BBRef)->removeFromParent();
1720 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
1721 unwrap(BB)->moveBefore(unwrap(MovePos));
1724 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
1725 unwrap(BB)->moveAfter(unwrap(MovePos));
1728 /*--.. Operations on instructions ..........................................--*/
1730 LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst) {
1731 return wrap(unwrap<Instruction>(Inst)->getParent());
1734 LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB) {
1735 BasicBlock *Block = unwrap(BB);
1736 BasicBlock::iterator I = Block->begin();
1737 if (I == Block->end())
1742 LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB) {
1743 BasicBlock *Block = unwrap(BB);
1744 BasicBlock::iterator I = Block->end();
1745 if (I == Block->begin())
1750 LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst) {
1751 Instruction *Instr = unwrap<Instruction>(Inst);
1752 BasicBlock::iterator I = Instr;
1753 if (++I == Instr->getParent()->end())
1758 LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst) {
1759 Instruction *Instr = unwrap<Instruction>(Inst);
1760 BasicBlock::iterator I = Instr;
1761 if (I == Instr->getParent()->begin())
1766 void LLVMInstructionEraseFromParent(LLVMValueRef Inst) {
1767 unwrap<Instruction>(Inst)->eraseFromParent();
1770 LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst) {
1771 if (ICmpInst *I = dyn_cast<ICmpInst>(unwrap(Inst)))
1772 return (LLVMIntPredicate)I->getPredicate();
1773 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
1774 if (CE->getOpcode() == Instruction::ICmp)
1775 return (LLVMIntPredicate)CE->getPredicate();
1776 return (LLVMIntPredicate)0;
1779 LLVMOpcode LLVMGetInstructionOpcode(LLVMValueRef Inst) {
1780 if (Instruction *C = dyn_cast<Instruction>(unwrap(Inst)))
1781 return map_to_llvmopcode(C->getOpcode());
1782 return (LLVMOpcode)0;
1785 /*--.. Call and invoke instructions ........................................--*/
1787 unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) {
1788 Value *V = unwrap(Instr);
1789 if (CallInst *CI = dyn_cast<CallInst>(V))
1790 return CI->getCallingConv();
1791 if (InvokeInst *II = dyn_cast<InvokeInst>(V))
1792 return II->getCallingConv();
1793 llvm_unreachable("LLVMGetInstructionCallConv applies only to call and invoke!");
1796 void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) {
1797 Value *V = unwrap(Instr);
1798 if (CallInst *CI = dyn_cast<CallInst>(V))
1799 return CI->setCallingConv(static_cast<CallingConv::ID>(CC));
1800 else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
1801 return II->setCallingConv(static_cast<CallingConv::ID>(CC));
1802 llvm_unreachable("LLVMSetInstructionCallConv applies only to call and invoke!");
1805 void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index,
1807 CallSite Call = CallSite(unwrap<Instruction>(Instr));
1810 Call.getAttributes().addAttributes(Call->getContext(), index,
1811 AttributeSet::get(Call->getContext(),
1815 void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index,
1817 CallSite Call = CallSite(unwrap<Instruction>(Instr));
1819 Call.setAttributes(Call.getAttributes()
1820 .removeAttributes(Call->getContext(), index,
1821 AttributeSet::get(Call->getContext(),
1825 void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
1827 CallSite Call = CallSite(unwrap<Instruction>(Instr));
1829 B.addAlignmentAttr(align);
1830 Call.setAttributes(Call.getAttributes()
1831 .addAttributes(Call->getContext(), index,
1832 AttributeSet::get(Call->getContext(),
1836 /*--.. Operations on call instructions (only) ..............................--*/
1838 LLVMBool LLVMIsTailCall(LLVMValueRef Call) {
1839 return unwrap<CallInst>(Call)->isTailCall();
1842 void LLVMSetTailCall(LLVMValueRef Call, LLVMBool isTailCall) {
1843 unwrap<CallInst>(Call)->setTailCall(isTailCall);
1846 /*--.. Operations on switch instructions (only) ............................--*/
1848 LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) {
1849 return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
1852 /*--.. Operations on phi nodes .............................................--*/
1854 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
1855 LLVMBasicBlockRef *IncomingBlocks, unsigned Count) {
1856 PHINode *PhiVal = unwrap<PHINode>(PhiNode);
1857 for (unsigned I = 0; I != Count; ++I)
1858 PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I]));
1861 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
1862 return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
1865 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
1866 return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
1869 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
1870 return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));
1874 /*===-- Instruction builders ----------------------------------------------===*/
1876 LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C) {
1877 return wrap(new IRBuilder<>(*unwrap(C)));
1880 LLVMBuilderRef LLVMCreateBuilder(void) {
1881 return LLVMCreateBuilderInContext(LLVMGetGlobalContext());
1884 void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
1885 LLVMValueRef Instr) {
1886 BasicBlock *BB = unwrap(Block);
1887 Instruction *I = Instr? unwrap<Instruction>(Instr) : (Instruction*) BB->end();
1888 unwrap(Builder)->SetInsertPoint(BB, I);
1891 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) {
1892 Instruction *I = unwrap<Instruction>(Instr);
1893 unwrap(Builder)->SetInsertPoint(I->getParent(), I);
1896 void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block) {
1897 BasicBlock *BB = unwrap(Block);
1898 unwrap(Builder)->SetInsertPoint(BB);
1901 LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder) {
1902 return wrap(unwrap(Builder)->GetInsertBlock());
1905 void LLVMClearInsertionPosition(LLVMBuilderRef Builder) {
1906 unwrap(Builder)->ClearInsertionPoint();
1909 void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr) {
1910 unwrap(Builder)->Insert(unwrap<Instruction>(Instr));
1913 void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr,
1915 unwrap(Builder)->Insert(unwrap<Instruction>(Instr), Name);
1918 void LLVMDisposeBuilder(LLVMBuilderRef Builder) {
1919 delete unwrap(Builder);
1922 /*--.. Metadata builders ...................................................--*/
1924 void LLVMSetCurrentDebugLocation(LLVMBuilderRef Builder, LLVMValueRef L) {
1925 MDNode *Loc = L ? unwrap<MDNode>(L) : NULL;
1926 unwrap(Builder)->SetCurrentDebugLocation(DebugLoc::getFromDILocation(Loc));
1929 LLVMValueRef LLVMGetCurrentDebugLocation(LLVMBuilderRef Builder) {
1930 return wrap(unwrap(Builder)->getCurrentDebugLocation()
1931 .getAsMDNode(unwrap(Builder)->getContext()));
1934 void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst) {
1935 unwrap(Builder)->SetInstDebugLocation(unwrap<Instruction>(Inst));
1939 /*--.. Instruction builders ................................................--*/
1941 LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef B) {
1942 return wrap(unwrap(B)->CreateRetVoid());
1945 LLVMValueRef LLVMBuildRet(LLVMBuilderRef B, LLVMValueRef V) {
1946 return wrap(unwrap(B)->CreateRet(unwrap(V)));
1949 LLVMValueRef LLVMBuildAggregateRet(LLVMBuilderRef B, LLVMValueRef *RetVals,
1951 return wrap(unwrap(B)->CreateAggregateRet(unwrap(RetVals), N));
1954 LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) {
1955 return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
1958 LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If,
1959 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
1960 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
1963 LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V,
1964 LLVMBasicBlockRef Else, unsigned NumCases) {
1965 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
1968 LLVMValueRef LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr,
1969 unsigned NumDests) {
1970 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
1973 LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn,
1974 LLVMValueRef *Args, unsigned NumArgs,
1975 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
1977 return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
1978 makeArrayRef(unwrap(Args), NumArgs),
1982 LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty,
1983 LLVMValueRef PersFn, unsigned NumClauses,
1985 return wrap(unwrap(B)->CreateLandingPad(unwrap(Ty),
1986 cast<Function>(unwrap(PersFn)),
1990 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) {
1991 return wrap(unwrap(B)->CreateResume(unwrap(Exn)));
1994 LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef B) {
1995 return wrap(unwrap(B)->CreateUnreachable());
1998 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
1999 LLVMBasicBlockRef Dest) {
2000 unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
2003 void LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest) {
2004 unwrap<IndirectBrInst>(IndirectBr)->addDestination(unwrap(Dest));
2007 void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal) {
2008 unwrap<LandingPadInst>(LandingPad)->
2009 addClause(cast<Constant>(unwrap(ClauseVal)));
2012 void LLVMSetCleanup(LLVMValueRef LandingPad, LLVMBool Val) {
2013 unwrap<LandingPadInst>(LandingPad)->setCleanup(Val);
2016 /*--.. Arithmetic ..........................................................--*/
2018 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2020 return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
2023 LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2025 return wrap(unwrap(B)->CreateNSWAdd(unwrap(LHS), unwrap(RHS), Name));
2028 LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2030 return wrap(unwrap(B)->CreateNUWAdd(unwrap(LHS), unwrap(RHS), Name));
2033 LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2035 return wrap(unwrap(B)->CreateFAdd(unwrap(LHS), unwrap(RHS), Name));
2038 LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2040 return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwrap(RHS), Name));
2043 LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2045 return wrap(unwrap(B)->CreateNSWSub(unwrap(LHS), unwrap(RHS), Name));
2048 LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2050 return wrap(unwrap(B)->CreateNUWSub(unwrap(LHS), unwrap(RHS), Name));
2053 LLVMValueRef LLVMBuildFSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2055 return wrap(unwrap(B)->CreateFSub(unwrap(LHS), unwrap(RHS), Name));
2058 LLVMValueRef LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2060 return wrap(unwrap(B)->CreateMul(unwrap(LHS), unwrap(RHS), Name));
2063 LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2065 return wrap(unwrap(B)->CreateNSWMul(unwrap(LHS), unwrap(RHS), Name));
2068 LLVMValueRef LLVMBuildNUWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2070 return wrap(unwrap(B)->CreateNUWMul(unwrap(LHS), unwrap(RHS), Name));
2073 LLVMValueRef LLVMBuildFMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2075 return wrap(unwrap(B)->CreateFMul(unwrap(LHS), unwrap(RHS), Name));
2078 LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2080 return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
2083 LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2085 return wrap(unwrap(B)->CreateSDiv(unwrap(LHS), unwrap(RHS), Name));
2088 LLVMValueRef LLVMBuildExactSDiv(LLVMBuilderRef B, LLVMValueRef LHS,
2089 LLVMValueRef RHS, const char *Name) {
2090 return wrap(unwrap(B)->CreateExactSDiv(unwrap(LHS), unwrap(RHS), Name));
2093 LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2095 return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
2098 LLVMValueRef LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2100 return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
2103 LLVMValueRef LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2105 return wrap(unwrap(B)->CreateSRem(unwrap(LHS), unwrap(RHS), Name));
2108 LLVMValueRef LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2110 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name));
2113 LLVMValueRef LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2115 return wrap(unwrap(B)->CreateShl(unwrap(LHS), unwrap(RHS), Name));
2118 LLVMValueRef LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2120 return wrap(unwrap(B)->CreateLShr(unwrap(LHS), unwrap(RHS), Name));
2123 LLVMValueRef LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2125 return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
2128 LLVMValueRef LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2130 return wrap(unwrap(B)->CreateAnd(unwrap(LHS), unwrap(RHS), Name));
2133 LLVMValueRef LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2135 return wrap(unwrap(B)->CreateOr(unwrap(LHS), unwrap(RHS), Name));
2138 LLVMValueRef LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2140 return wrap(unwrap(B)->CreateXor(unwrap(LHS), unwrap(RHS), Name));
2143 LLVMValueRef LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op,
2144 LLVMValueRef LHS, LLVMValueRef RHS,
2146 return wrap(unwrap(B)->CreateBinOp(Instruction::BinaryOps(map_from_llvmopcode(Op)), unwrap(LHS),
2147 unwrap(RHS), Name));
2150 LLVMValueRef LLVMBuildNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
2151 return wrap(unwrap(B)->CreateNeg(unwrap(V), Name));
2154 LLVMValueRef LLVMBuildNSWNeg(LLVMBuilderRef B, LLVMValueRef V,
2156 return wrap(unwrap(B)->CreateNSWNeg(unwrap(V), Name));
2159 LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B, LLVMValueRef V,
2161 return wrap(unwrap(B)->CreateNUWNeg(unwrap(V), Name));
2164 LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
2165 return wrap(unwrap(B)->CreateFNeg(unwrap(V), Name));
2168 LLVMValueRef LLVMBuildNot(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
2169 return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
2172 /*--.. Memory ..............................................................--*/
2174 LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
2176 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
2177 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
2178 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2179 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
2180 ITy, unwrap(Ty), AllocSize,
2182 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
2185 LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
2186 LLVMValueRef Val, const char *Name) {
2187 Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
2188 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
2189 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2190 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
2191 ITy, unwrap(Ty), AllocSize,
2192 unwrap(Val), 0, "");
2193 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
2196 LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
2198 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), 0, Name));
2201 LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
2202 LLVMValueRef Val, const char *Name) {
2203 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name));
2206 LLVMValueRef LLVMBuildFree(LLVMBuilderRef B, LLVMValueRef PointerVal) {
2207 return wrap(unwrap(B)->Insert(
2208 CallInst::CreateFree(unwrap(PointerVal), unwrap(B)->GetInsertBlock())));
2212 LLVMValueRef LLVMBuildLoad(LLVMBuilderRef B, LLVMValueRef PointerVal,
2214 return wrap(unwrap(B)->CreateLoad(unwrap(PointerVal), Name));
2217 LLVMValueRef LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val,
2218 LLVMValueRef PointerVal) {
2219 return wrap(unwrap(B)->CreateStore(unwrap(Val), unwrap(PointerVal)));
2222 static AtomicOrdering mapFromLLVMOrdering(LLVMAtomicOrdering Ordering) {
2224 case LLVMAtomicOrderingNotAtomic: return NotAtomic;
2225 case LLVMAtomicOrderingUnordered: return Unordered;
2226 case LLVMAtomicOrderingMonotonic: return Monotonic;
2227 case LLVMAtomicOrderingAcquire: return Acquire;
2228 case LLVMAtomicOrderingRelease: return Release;
2229 case LLVMAtomicOrderingAcquireRelease: return AcquireRelease;
2230 case LLVMAtomicOrderingSequentiallyConsistent:
2231 return SequentiallyConsistent;
2234 llvm_unreachable("Invalid LLVMAtomicOrdering value!");
2237 LLVMValueRef LLVMBuildFence(LLVMBuilderRef B, LLVMAtomicOrdering Ordering,
2238 LLVMBool isSingleThread, const char *Name) {
2240 unwrap(B)->CreateFence(mapFromLLVMOrdering(Ordering),
2241 isSingleThread ? SingleThread : CrossThread,
2245 LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2246 LLVMValueRef *Indices, unsigned NumIndices,
2248 ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
2249 return wrap(unwrap(B)->CreateGEP(unwrap(Pointer), IdxList, Name));
2252 LLVMValueRef LLVMBuildInBoundsGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2253 LLVMValueRef *Indices, unsigned NumIndices,
2255 ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
2256 return wrap(unwrap(B)->CreateInBoundsGEP(unwrap(Pointer), IdxList, Name));
2259 LLVMValueRef LLVMBuildStructGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2260 unsigned Idx, const char *Name) {
2261 return wrap(unwrap(B)->CreateStructGEP(unwrap(Pointer), Idx, Name));
2264 LLVMValueRef LLVMBuildGlobalString(LLVMBuilderRef B, const char *Str,
2266 return wrap(unwrap(B)->CreateGlobalString(Str, Name));
2269 LLVMValueRef LLVMBuildGlobalStringPtr(LLVMBuilderRef B, const char *Str,
2271 return wrap(unwrap(B)->CreateGlobalStringPtr(Str, Name));
2274 LLVMBool LLVMGetVolatile(LLVMValueRef MemAccessInst) {
2275 Value *P = unwrap<Value>(MemAccessInst);
2276 if (LoadInst *LI = dyn_cast<LoadInst>(P))
2277 return LI->isVolatile();
2278 return cast<StoreInst>(P)->isVolatile();
2281 void LLVMSetVolatile(LLVMValueRef MemAccessInst, LLVMBool isVolatile) {
2282 Value *P = unwrap<Value>(MemAccessInst);
2283 if (LoadInst *LI = dyn_cast<LoadInst>(P))
2284 return LI->setVolatile(isVolatile);
2285 return cast<StoreInst>(P)->setVolatile(isVolatile);
2288 /*--.. Casts ...............................................................--*/
2290 LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val,
2291 LLVMTypeRef DestTy, const char *Name) {
2292 return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
2295 LLVMValueRef LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val,
2296 LLVMTypeRef DestTy, const char *Name) {
2297 return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
2300 LLVMValueRef LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val,
2301 LLVMTypeRef DestTy, const char *Name) {
2302 return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
2305 LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val,
2306 LLVMTypeRef DestTy, const char *Name) {
2307 return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
2310 LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val,
2311 LLVMTypeRef DestTy, const char *Name) {
2312 return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
2315 LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val,
2316 LLVMTypeRef DestTy, const char *Name) {
2317 return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
2320 LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val,
2321 LLVMTypeRef DestTy, const char *Name) {
2322 return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
2325 LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val,
2326 LLVMTypeRef DestTy, const char *Name) {
2327 return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
2330 LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val,
2331 LLVMTypeRef DestTy, const char *Name) {
2332 return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
2335 LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val,
2336 LLVMTypeRef DestTy, const char *Name) {
2337 return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
2340 LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val,
2341 LLVMTypeRef DestTy, const char *Name) {
2342 return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
2345 LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2346 LLVMTypeRef DestTy, const char *Name) {
2347 return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
2350 LLVMValueRef LLVMBuildAddrSpaceCast(LLVMBuilderRef B, LLVMValueRef Val,
2351 LLVMTypeRef DestTy, const char *Name) {
2352 return wrap(unwrap(B)->CreateAddrSpaceCast(unwrap(Val), unwrap(DestTy), Name));
2355 LLVMValueRef LLVMBuildZExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2356 LLVMTypeRef DestTy, const char *Name) {
2357 return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
2361 LLVMValueRef LLVMBuildSExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2362 LLVMTypeRef DestTy, const char *Name) {
2363 return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
2367 LLVMValueRef LLVMBuildTruncOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2368 LLVMTypeRef DestTy, const char *Name) {
2369 return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
2373 LLVMValueRef LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val,
2374 LLVMTypeRef DestTy, const char *Name) {
2375 return wrap(unwrap(B)->CreateCast(Instruction::CastOps(map_from_llvmopcode(Op)), unwrap(Val),
2376 unwrap(DestTy), Name));
2379 LLVMValueRef LLVMBuildPointerCast(LLVMBuilderRef B, LLVMValueRef Val,
2380 LLVMTypeRef DestTy, const char *Name) {
2381 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
2384 LLVMValueRef LLVMBuildIntCast(LLVMBuilderRef B, LLVMValueRef Val,
2385 LLVMTypeRef DestTy, const char *Name) {
2386 return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
2387 /*isSigned*/true, Name));
2390 LLVMValueRef LLVMBuildFPCast(LLVMBuilderRef B, LLVMValueRef Val,
2391 LLVMTypeRef DestTy, const char *Name) {
2392 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));
2395 /*--.. Comparisons .........................................................--*/
2397 LLVMValueRef LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op,
2398 LLVMValueRef LHS, LLVMValueRef RHS,
2400 return wrap(unwrap(B)->CreateICmp(static_cast<ICmpInst::Predicate>(Op),
2401 unwrap(LHS), unwrap(RHS), Name));
2404 LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op,
2405 LLVMValueRef LHS, LLVMValueRef RHS,
2407 return wrap(unwrap(B)->CreateFCmp(static_cast<FCmpInst::Predicate>(Op),
2408 unwrap(LHS), unwrap(RHS), Name));
2411 /*--.. Miscellaneous instructions ..........................................--*/
2413 LLVMValueRef LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) {
2414 return wrap(unwrap(B)->CreatePHI(unwrap(Ty), 0, Name));
2417 LLVMValueRef LLVMBuildCall(LLVMBuilderRef B, LLVMValueRef Fn,
2418 LLVMValueRef *Args, unsigned NumArgs,
2420 return wrap(unwrap(B)->CreateCall(unwrap(Fn),
2421 makeArrayRef(unwrap(Args), NumArgs),
2425 LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If,
2426 LLVMValueRef Then, LLVMValueRef Else,
2428 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
2432 LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
2433 LLVMTypeRef Ty, const char *Name) {
2434 return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
2437 LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef B, LLVMValueRef VecVal,
2438 LLVMValueRef Index, const char *Name) {
2439 return wrap(unwrap(B)->CreateExtractElement(unwrap(VecVal), unwrap(Index),
2443 LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef B, LLVMValueRef VecVal,
2444 LLVMValueRef EltVal, LLVMValueRef Index,
2446 return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal),
2447 unwrap(Index), Name));
2450 LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef B, LLVMValueRef V1,
2451 LLVMValueRef V2, LLVMValueRef Mask,
2453 return wrap(unwrap(B)->CreateShuffleVector(unwrap(V1), unwrap(V2),
2454 unwrap(Mask), Name));
2457 LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef B, LLVMValueRef AggVal,
2458 unsigned Index, const char *Name) {
2459 return wrap(unwrap(B)->CreateExtractValue(unwrap(AggVal), Index, Name));
2462 LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef B, LLVMValueRef AggVal,
2463 LLVMValueRef EltVal, unsigned Index,
2465 return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal),
2469 LLVMValueRef LLVMBuildIsNull(LLVMBuilderRef B, LLVMValueRef Val,
2471 return wrap(unwrap(B)->CreateIsNull(unwrap(Val), Name));
2474 LLVMValueRef LLVMBuildIsNotNull(LLVMBuilderRef B, LLVMValueRef Val,
2476 return wrap(unwrap(B)->CreateIsNotNull(unwrap(Val), Name));
2479 LLVMValueRef LLVMBuildPtrDiff(LLVMBuilderRef B, LLVMValueRef LHS,
2480 LLVMValueRef RHS, const char *Name) {
2481 return wrap(unwrap(B)->CreatePtrDiff(unwrap(LHS), unwrap(RHS), Name));
2484 LLVMValueRef LLVMBuildAtomicRMW(LLVMBuilderRef B,LLVMAtomicRMWBinOp op,
2485 LLVMValueRef PTR, LLVMValueRef Val,
2486 LLVMAtomicOrdering ordering,
2487 LLVMBool singleThread) {
2488 AtomicRMWInst::BinOp intop;
2490 case LLVMAtomicRMWBinOpXchg: intop = AtomicRMWInst::Xchg; break;
2491 case LLVMAtomicRMWBinOpAdd: intop = AtomicRMWInst::Add; break;
2492 case LLVMAtomicRMWBinOpSub: intop = AtomicRMWInst::Sub; break;
2493 case LLVMAtomicRMWBinOpAnd: intop = AtomicRMWInst::And; break;
2494 case LLVMAtomicRMWBinOpNand: intop = AtomicRMWInst::Nand; break;
2495 case LLVMAtomicRMWBinOpOr: intop = AtomicRMWInst::Or; break;
2496 case LLVMAtomicRMWBinOpXor: intop = AtomicRMWInst::Xor; break;
2497 case LLVMAtomicRMWBinOpMax: intop = AtomicRMWInst::Max; break;
2498 case LLVMAtomicRMWBinOpMin: intop = AtomicRMWInst::Min; break;
2499 case LLVMAtomicRMWBinOpUMax: intop = AtomicRMWInst::UMax; break;
2500 case LLVMAtomicRMWBinOpUMin: intop = AtomicRMWInst::UMin; break;
2502 return wrap(unwrap(B)->CreateAtomicRMW(intop, unwrap(PTR), unwrap(Val),
2503 mapFromLLVMOrdering(ordering), singleThread ? SingleThread : CrossThread));
2507 /*===-- Module providers --------------------------------------------------===*/
2509 LLVMModuleProviderRef
2510 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) {
2511 return reinterpret_cast<LLVMModuleProviderRef>(M);
2514 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) {
2519 /*===-- Memory buffers ----------------------------------------------------===*/
2521 LLVMBool LLVMCreateMemoryBufferWithContentsOfFile(
2523 LLVMMemoryBufferRef *OutMemBuf,
2524 char **OutMessage) {
2526 OwningPtr<MemoryBuffer> MB;
2528 if (!(ec = MemoryBuffer::getFile(Path, MB))) {
2529 *OutMemBuf = wrap(MB.take());
2533 *OutMessage = strdup(ec.message().c_str());
2537 LLVMBool LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
2538 char **OutMessage) {
2539 OwningPtr<MemoryBuffer> MB;
2541 if (!(ec = MemoryBuffer::getSTDIN(MB))) {
2542 *OutMemBuf = wrap(MB.take());
2546 *OutMessage = strdup(ec.message().c_str());
2550 LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRange(
2551 const char *InputData,
2552 size_t InputDataLength,
2553 const char *BufferName,
2554 LLVMBool RequiresNullTerminator) {
2556 return wrap(MemoryBuffer::getMemBuffer(
2557 StringRef(InputData, InputDataLength),
2558 StringRef(BufferName),
2559 RequiresNullTerminator));
2562 LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRangeCopy(
2563 const char *InputData,
2564 size_t InputDataLength,
2565 const char *BufferName) {
2567 return wrap(MemoryBuffer::getMemBufferCopy(
2568 StringRef(InputData, InputDataLength),
2569 StringRef(BufferName)));
2572 const char *LLVMGetBufferStart(LLVMMemoryBufferRef MemBuf) {
2573 return unwrap(MemBuf)->getBufferStart();
2576 size_t LLVMGetBufferSize(LLVMMemoryBufferRef MemBuf) {
2577 return unwrap(MemBuf)->getBufferSize();
2580 void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf) {
2581 delete unwrap(MemBuf);
2584 /*===-- Pass Registry -----------------------------------------------------===*/
2586 LLVMPassRegistryRef LLVMGetGlobalPassRegistry(void) {
2587 return wrap(PassRegistry::getPassRegistry());
2590 /*===-- Pass Manager ------------------------------------------------------===*/
2592 LLVMPassManagerRef LLVMCreatePassManager() {
2593 return wrap(new PassManager());
2596 LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) {
2597 return wrap(new FunctionPassManager(unwrap(M)));
2600 LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) {
2601 return LLVMCreateFunctionPassManagerForModule(
2602 reinterpret_cast<LLVMModuleRef>(P));
2605 LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) {
2606 return unwrap<PassManager>(PM)->run(*unwrap(M));
2609 LLVMBool LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) {
2610 return unwrap<FunctionPassManager>(FPM)->doInitialization();
2613 LLVMBool LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) {
2614 return unwrap<FunctionPassManager>(FPM)->run(*unwrap<Function>(F));
2617 LLVMBool LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) {
2618 return unwrap<FunctionPassManager>(FPM)->doFinalization();
2621 void LLVMDisposePassManager(LLVMPassManagerRef PM) {
2625 /*===-- Threading ------------------------------------------------------===*/
2627 LLVMBool LLVMStartMultithreaded() {
2628 return llvm_start_multithreaded();
2631 void LLVMStopMultithreaded() {
2632 llvm_stop_multithreaded();
2635 LLVMBool LLVMIsMultithreaded() {
2636 return llvm_is_multithreaded();