xref: /llvm-project-15.0.7/llvm/lib/IR/Core.cpp (revision 08ebd61a)
1 //===-- Core.cpp ----------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the common infrastructure (including the C bindings)
11 // for libLLVMCore.a, which implements the LLVM intermediate representation.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "llvm-c/Core.h"
16 #include "llvm/ADT/StringSwitch.h"
17 #include "llvm/Bitcode/BitcodeReader.h"
18 #include "llvm/IR/Attributes.h"
19 #include "AttributeSetNode.h"
20 #include "llvm/IR/CallSite.h"
21 #include "llvm/IR/Constants.h"
22 #include "llvm/IR/DerivedTypes.h"
23 #include "llvm/IR/DiagnosticInfo.h"
24 #include "llvm/IR/DiagnosticPrinter.h"
25 #include "llvm/IR/GlobalAlias.h"
26 #include "llvm/IR/GlobalVariable.h"
27 #include "llvm/IR/IRBuilder.h"
28 #include "llvm/IR/InlineAsm.h"
29 #include "llvm/IR/IntrinsicInst.h"
30 #include "llvm/IR/LLVMContext.h"
31 #include "llvm/IR/LegacyPassManager.h"
32 #include "llvm/IR/Module.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/FileSystem.h"
36 #include "llvm/Support/ManagedStatic.h"
37 #include "llvm/Support/MemoryBuffer.h"
38 #include "llvm/Support/Threading.h"
39 #include "llvm/Support/raw_ostream.h"
40 #include <cassert>
41 #include <cstdlib>
42 #include <cstring>
43 #include <system_error>
44 
45 using namespace llvm;
46 
47 #define DEBUG_TYPE "ir"
48 
49 void llvm::initializeCore(PassRegistry &Registry) {
50   initializeDominatorTreeWrapperPassPass(Registry);
51   initializePrintModulePassWrapperPass(Registry);
52   initializePrintFunctionPassWrapperPass(Registry);
53   initializePrintBasicBlockPassPass(Registry);
54   initializeVerifierLegacyPassPass(Registry);
55 }
56 
57 void LLVMInitializeCore(LLVMPassRegistryRef R) {
58   initializeCore(*unwrap(R));
59 }
60 
61 void LLVMShutdown() {
62   llvm_shutdown();
63 }
64 
65 /*===-- Error handling ----------------------------------------------------===*/
66 
67 char *LLVMCreateMessage(const char *Message) {
68   return strdup(Message);
69 }
70 
71 void LLVMDisposeMessage(char *Message) {
72   free(Message);
73 }
74 
75 
76 /*===-- Operations on contexts --------------------------------------------===*/
77 
78 static ManagedStatic<LLVMContext> GlobalContext;
79 
80 LLVMContextRef LLVMContextCreate() {
81   return wrap(new LLVMContext());
82 }
83 
84 LLVMContextRef LLVMGetGlobalContext() { return wrap(&*GlobalContext); }
85 
86 void LLVMContextSetDiagnosticHandler(LLVMContextRef C,
87                                      LLVMDiagnosticHandler Handler,
88                                      void *DiagnosticContext) {
89   unwrap(C)->setDiagnosticHandler(
90       LLVM_EXTENSION reinterpret_cast<LLVMContext::DiagnosticHandlerTy>(
91           Handler),
92       DiagnosticContext);
93 }
94 
95 LLVMDiagnosticHandler LLVMContextGetDiagnosticHandler(LLVMContextRef C) {
96   return LLVM_EXTENSION reinterpret_cast<LLVMDiagnosticHandler>(
97       unwrap(C)->getDiagnosticHandler());
98 }
99 
100 void *LLVMContextGetDiagnosticContext(LLVMContextRef C) {
101   return unwrap(C)->getDiagnosticContext();
102 }
103 
104 void LLVMContextSetYieldCallback(LLVMContextRef C, LLVMYieldCallback Callback,
105                                  void *OpaqueHandle) {
106   auto YieldCallback =
107     LLVM_EXTENSION reinterpret_cast<LLVMContext::YieldCallbackTy>(Callback);
108   unwrap(C)->setYieldCallback(YieldCallback, OpaqueHandle);
109 }
110 
111 void LLVMContextDispose(LLVMContextRef C) {
112   delete unwrap(C);
113 }
114 
115 unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char *Name,
116                                   unsigned SLen) {
117   return unwrap(C)->getMDKindID(StringRef(Name, SLen));
118 }
119 
120 unsigned LLVMGetMDKindID(const char *Name, unsigned SLen) {
121   return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen);
122 }
123 
124 #define GET_ATTR_KIND_FROM_NAME
125 #include "AttributesCompatFunc.inc"
126 
127 unsigned LLVMGetEnumAttributeKindForName(const char *Name, size_t SLen) {
128   return getAttrKindFromName(StringRef(Name, SLen));
129 }
130 
131 unsigned LLVMGetLastEnumAttributeKind(void) {
132   return Attribute::AttrKind::EndAttrKinds;
133 }
134 
135 LLVMAttributeRef LLVMCreateEnumAttribute(LLVMContextRef C, unsigned KindID,
136                                          uint64_t Val) {
137   return wrap(Attribute::get(*unwrap(C), (Attribute::AttrKind)KindID, Val));
138 }
139 
140 unsigned LLVMGetEnumAttributeKind(LLVMAttributeRef A) {
141   return unwrap(A).getKindAsEnum();
142 }
143 
144 uint64_t LLVMGetEnumAttributeValue(LLVMAttributeRef A) {
145   auto Attr = unwrap(A);
146   if (Attr.isEnumAttribute())
147     return 0;
148   return Attr.getValueAsInt();
149 }
150 
151 LLVMAttributeRef LLVMCreateStringAttribute(LLVMContextRef C,
152                                            const char *K, unsigned KLength,
153                                            const char *V, unsigned VLength) {
154   return wrap(Attribute::get(*unwrap(C), StringRef(K, KLength),
155                              StringRef(V, VLength)));
156 }
157 
158 const char *LLVMGetStringAttributeKind(LLVMAttributeRef A,
159                                        unsigned *Length) {
160   auto S = unwrap(A).getKindAsString();
161   *Length = S.size();
162   return S.data();
163 }
164 
165 const char *LLVMGetStringAttributeValue(LLVMAttributeRef A,
166                                         unsigned *Length) {
167   auto S = unwrap(A).getValueAsString();
168   *Length = S.size();
169   return S.data();
170 }
171 
172 LLVMBool LLVMIsEnumAttribute(LLVMAttributeRef A) {
173   auto Attr = unwrap(A);
174   return Attr.isEnumAttribute() || Attr.isIntAttribute();
175 }
176 
177 LLVMBool LLVMIsStringAttribute(LLVMAttributeRef A) {
178   return unwrap(A).isStringAttribute();
179 }
180 
181 char *LLVMGetDiagInfoDescription(LLVMDiagnosticInfoRef DI) {
182   std::string MsgStorage;
183   raw_string_ostream Stream(MsgStorage);
184   DiagnosticPrinterRawOStream DP(Stream);
185 
186   unwrap(DI)->print(DP);
187   Stream.flush();
188 
189   return LLVMCreateMessage(MsgStorage.c_str());
190 }
191 
192 LLVMDiagnosticSeverity LLVMGetDiagInfoSeverity(LLVMDiagnosticInfoRef DI) {
193     LLVMDiagnosticSeverity severity;
194 
195     switch(unwrap(DI)->getSeverity()) {
196     default:
197       severity = LLVMDSError;
198       break;
199     case DS_Warning:
200       severity = LLVMDSWarning;
201       break;
202     case DS_Remark:
203       severity = LLVMDSRemark;
204       break;
205     case DS_Note:
206       severity = LLVMDSNote;
207       break;
208     }
209 
210     return severity;
211 }
212 
213 /*===-- Operations on modules ---------------------------------------------===*/
214 
215 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
216   return wrap(new Module(ModuleID, *GlobalContext));
217 }
218 
219 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
220                                                 LLVMContextRef C) {
221   return wrap(new Module(ModuleID, *unwrap(C)));
222 }
223 
224 void LLVMDisposeModule(LLVMModuleRef M) {
225   delete unwrap(M);
226 }
227 
228 const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len) {
229   auto &Str = unwrap(M)->getModuleIdentifier();
230   *Len = Str.length();
231   return Str.c_str();
232 }
233 
234 void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len) {
235   unwrap(M)->setModuleIdentifier(StringRef(Ident, Len));
236 }
237 
238 
239 /*--.. Data layout .........................................................--*/
240 const char *LLVMGetDataLayoutStr(LLVMModuleRef M) {
241   return unwrap(M)->getDataLayoutStr().c_str();
242 }
243 
244 const char *LLVMGetDataLayout(LLVMModuleRef M) {
245   return LLVMGetDataLayoutStr(M);
246 }
247 
248 void LLVMSetDataLayout(LLVMModuleRef M, const char *DataLayoutStr) {
249   unwrap(M)->setDataLayout(DataLayoutStr);
250 }
251 
252 /*--.. Target triple .......................................................--*/
253 const char * LLVMGetTarget(LLVMModuleRef M) {
254   return unwrap(M)->getTargetTriple().c_str();
255 }
256 
257 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
258   unwrap(M)->setTargetTriple(Triple);
259 }
260 
261 void LLVMDumpModule(LLVMModuleRef M) {
262   unwrap(M)->print(errs(), nullptr,
263                    /*ShouldPreserveUseListOrder=*/false, /*IsForDebug=*/true);
264 }
265 
266 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename,
267                                char **ErrorMessage) {
268   std::error_code EC;
269   raw_fd_ostream dest(Filename, EC, sys::fs::F_Text);
270   if (EC) {
271     *ErrorMessage = strdup(EC.message().c_str());
272     return true;
273   }
274 
275   unwrap(M)->print(dest, nullptr);
276 
277   dest.close();
278 
279   if (dest.has_error()) {
280     *ErrorMessage = strdup("Error printing to file");
281     return true;
282   }
283 
284   return false;
285 }
286 
287 char *LLVMPrintModuleToString(LLVMModuleRef M) {
288   std::string buf;
289   raw_string_ostream os(buf);
290 
291   unwrap(M)->print(os, nullptr);
292   os.flush();
293 
294   return strdup(buf.c_str());
295 }
296 
297 /*--.. Operations on inline assembler ......................................--*/
298 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) {
299   unwrap(M)->setModuleInlineAsm(StringRef(Asm));
300 }
301 
302 
303 /*--.. Operations on module contexts ......................................--*/
304 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) {
305   return wrap(&unwrap(M)->getContext());
306 }
307 
308 
309 /*===-- Operations on types -----------------------------------------------===*/
310 
311 /*--.. Operations on all types (mostly) ....................................--*/
312 
313 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) {
314   switch (unwrap(Ty)->getTypeID()) {
315   case Type::VoidTyID:
316     return LLVMVoidTypeKind;
317   case Type::HalfTyID:
318     return LLVMHalfTypeKind;
319   case Type::FloatTyID:
320     return LLVMFloatTypeKind;
321   case Type::DoubleTyID:
322     return LLVMDoubleTypeKind;
323   case Type::X86_FP80TyID:
324     return LLVMX86_FP80TypeKind;
325   case Type::FP128TyID:
326     return LLVMFP128TypeKind;
327   case Type::PPC_FP128TyID:
328     return LLVMPPC_FP128TypeKind;
329   case Type::LabelTyID:
330     return LLVMLabelTypeKind;
331   case Type::MetadataTyID:
332     return LLVMMetadataTypeKind;
333   case Type::IntegerTyID:
334     return LLVMIntegerTypeKind;
335   case Type::FunctionTyID:
336     return LLVMFunctionTypeKind;
337   case Type::StructTyID:
338     return LLVMStructTypeKind;
339   case Type::ArrayTyID:
340     return LLVMArrayTypeKind;
341   case Type::PointerTyID:
342     return LLVMPointerTypeKind;
343   case Type::VectorTyID:
344     return LLVMVectorTypeKind;
345   case Type::X86_MMXTyID:
346     return LLVMX86_MMXTypeKind;
347   case Type::TokenTyID:
348     return LLVMTokenTypeKind;
349   }
350   llvm_unreachable("Unhandled TypeID.");
351 }
352 
353 LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty)
354 {
355     return unwrap(Ty)->isSized();
356 }
357 
358 LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty) {
359   return wrap(&unwrap(Ty)->getContext());
360 }
361 
362 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
363 LLVM_DUMP_METHOD void LLVMDumpType(LLVMTypeRef Ty) {
364   return unwrap(Ty)->dump();
365 }
366 #endif
367 
368 char *LLVMPrintTypeToString(LLVMTypeRef Ty) {
369   std::string buf;
370   raw_string_ostream os(buf);
371 
372   if (unwrap(Ty))
373     unwrap(Ty)->print(os);
374   else
375     os << "Printing <null> Type";
376 
377   os.flush();
378 
379   return strdup(buf.c_str());
380 }
381 
382 /*--.. Operations on integer types .........................................--*/
383 
384 LLVMTypeRef LLVMInt1TypeInContext(LLVMContextRef C)  {
385   return (LLVMTypeRef) Type::getInt1Ty(*unwrap(C));
386 }
387 LLVMTypeRef LLVMInt8TypeInContext(LLVMContextRef C)  {
388   return (LLVMTypeRef) Type::getInt8Ty(*unwrap(C));
389 }
390 LLVMTypeRef LLVMInt16TypeInContext(LLVMContextRef C) {
391   return (LLVMTypeRef) Type::getInt16Ty(*unwrap(C));
392 }
393 LLVMTypeRef LLVMInt32TypeInContext(LLVMContextRef C) {
394   return (LLVMTypeRef) Type::getInt32Ty(*unwrap(C));
395 }
396 LLVMTypeRef LLVMInt64TypeInContext(LLVMContextRef C) {
397   return (LLVMTypeRef) Type::getInt64Ty(*unwrap(C));
398 }
399 LLVMTypeRef LLVMInt128TypeInContext(LLVMContextRef C) {
400   return (LLVMTypeRef) Type::getInt128Ty(*unwrap(C));
401 }
402 LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits) {
403   return wrap(IntegerType::get(*unwrap(C), NumBits));
404 }
405 
406 LLVMTypeRef LLVMInt1Type(void)  {
407   return LLVMInt1TypeInContext(LLVMGetGlobalContext());
408 }
409 LLVMTypeRef LLVMInt8Type(void)  {
410   return LLVMInt8TypeInContext(LLVMGetGlobalContext());
411 }
412 LLVMTypeRef LLVMInt16Type(void) {
413   return LLVMInt16TypeInContext(LLVMGetGlobalContext());
414 }
415 LLVMTypeRef LLVMInt32Type(void) {
416   return LLVMInt32TypeInContext(LLVMGetGlobalContext());
417 }
418 LLVMTypeRef LLVMInt64Type(void) {
419   return LLVMInt64TypeInContext(LLVMGetGlobalContext());
420 }
421 LLVMTypeRef LLVMInt128Type(void) {
422   return LLVMInt128TypeInContext(LLVMGetGlobalContext());
423 }
424 LLVMTypeRef LLVMIntType(unsigned NumBits) {
425   return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits);
426 }
427 
428 unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
429   return unwrap<IntegerType>(IntegerTy)->getBitWidth();
430 }
431 
432 /*--.. Operations on real types ............................................--*/
433 
434 LLVMTypeRef LLVMHalfTypeInContext(LLVMContextRef C) {
435   return (LLVMTypeRef) Type::getHalfTy(*unwrap(C));
436 }
437 LLVMTypeRef LLVMFloatTypeInContext(LLVMContextRef C) {
438   return (LLVMTypeRef) Type::getFloatTy(*unwrap(C));
439 }
440 LLVMTypeRef LLVMDoubleTypeInContext(LLVMContextRef C) {
441   return (LLVMTypeRef) Type::getDoubleTy(*unwrap(C));
442 }
443 LLVMTypeRef LLVMX86FP80TypeInContext(LLVMContextRef C) {
444   return (LLVMTypeRef) Type::getX86_FP80Ty(*unwrap(C));
445 }
446 LLVMTypeRef LLVMFP128TypeInContext(LLVMContextRef C) {
447   return (LLVMTypeRef) Type::getFP128Ty(*unwrap(C));
448 }
449 LLVMTypeRef LLVMPPCFP128TypeInContext(LLVMContextRef C) {
450   return (LLVMTypeRef) Type::getPPC_FP128Ty(*unwrap(C));
451 }
452 LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C) {
453   return (LLVMTypeRef) Type::getX86_MMXTy(*unwrap(C));
454 }
455 LLVMTypeRef LLVMTokenTypeInContext(LLVMContextRef C) {
456   return (LLVMTypeRef) Type::getTokenTy(*unwrap(C));
457 }
458 
459 LLVMTypeRef LLVMHalfType(void) {
460   return LLVMHalfTypeInContext(LLVMGetGlobalContext());
461 }
462 LLVMTypeRef LLVMFloatType(void) {
463   return LLVMFloatTypeInContext(LLVMGetGlobalContext());
464 }
465 LLVMTypeRef LLVMDoubleType(void) {
466   return LLVMDoubleTypeInContext(LLVMGetGlobalContext());
467 }
468 LLVMTypeRef LLVMX86FP80Type(void) {
469   return LLVMX86FP80TypeInContext(LLVMGetGlobalContext());
470 }
471 LLVMTypeRef LLVMFP128Type(void) {
472   return LLVMFP128TypeInContext(LLVMGetGlobalContext());
473 }
474 LLVMTypeRef LLVMPPCFP128Type(void) {
475   return LLVMPPCFP128TypeInContext(LLVMGetGlobalContext());
476 }
477 LLVMTypeRef LLVMX86MMXType(void) {
478   return LLVMX86MMXTypeInContext(LLVMGetGlobalContext());
479 }
480 
481 /*--.. Operations on function types ........................................--*/
482 
483 LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
484                              LLVMTypeRef *ParamTypes, unsigned ParamCount,
485                              LLVMBool IsVarArg) {
486   ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
487   return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
488 }
489 
490 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
491   return unwrap<FunctionType>(FunctionTy)->isVarArg();
492 }
493 
494 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
495   return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
496 }
497 
498 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
499   return unwrap<FunctionType>(FunctionTy)->getNumParams();
500 }
501 
502 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
503   FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
504   for (FunctionType::param_iterator I = Ty->param_begin(),
505                                     E = Ty->param_end(); I != E; ++I)
506     *Dest++ = wrap(*I);
507 }
508 
509 /*--.. Operations on struct types ..........................................--*/
510 
511 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
512                            unsigned ElementCount, LLVMBool Packed) {
513   ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
514   return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
515 }
516 
517 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
518                            unsigned ElementCount, LLVMBool Packed) {
519   return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
520                                  ElementCount, Packed);
521 }
522 
523 LLVMTypeRef LLVMStructCreateNamed(LLVMContextRef C, const char *Name)
524 {
525   return wrap(StructType::create(*unwrap(C), Name));
526 }
527 
528 const char *LLVMGetStructName(LLVMTypeRef Ty)
529 {
530   StructType *Type = unwrap<StructType>(Ty);
531   if (!Type->hasName())
532     return nullptr;
533   return Type->getName().data();
534 }
535 
536 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
537                        unsigned ElementCount, LLVMBool Packed) {
538   ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
539   unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
540 }
541 
542 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) {
543   return unwrap<StructType>(StructTy)->getNumElements();
544 }
545 
546 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
547   StructType *Ty = unwrap<StructType>(StructTy);
548   for (StructType::element_iterator I = Ty->element_begin(),
549                                     E = Ty->element_end(); I != E; ++I)
550     *Dest++ = wrap(*I);
551 }
552 
553 LLVMTypeRef LLVMStructGetTypeAtIndex(LLVMTypeRef StructTy, unsigned i) {
554   StructType *Ty = unwrap<StructType>(StructTy);
555   return wrap(Ty->getTypeAtIndex(i));
556 }
557 
558 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) {
559   return unwrap<StructType>(StructTy)->isPacked();
560 }
561 
562 LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy) {
563   return unwrap<StructType>(StructTy)->isOpaque();
564 }
565 
566 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) {
567   return wrap(unwrap(M)->getTypeByName(Name));
568 }
569 
570 /*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
571 
572 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
573   return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
574 }
575 
576 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) {
577   return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
578 }
579 
580 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
581   return wrap(VectorType::get(unwrap(ElementType), ElementCount));
582 }
583 
584 LLVMTypeRef LLVMGetElementType(LLVMTypeRef WrappedTy) {
585   auto *Ty = unwrap<Type>(WrappedTy);
586   if (auto *PTy = dyn_cast<PointerType>(Ty))
587     return wrap(PTy->getElementType());
588   return wrap(cast<SequentialType>(Ty)->getElementType());
589 }
590 
591 unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy) {
592   return unwrap<ArrayType>(ArrayTy)->getNumElements();
593 }
594 
595 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) {
596   return unwrap<PointerType>(PointerTy)->getAddressSpace();
597 }
598 
599 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
600   return unwrap<VectorType>(VectorTy)->getNumElements();
601 }
602 
603 /*--.. Operations on other types ...........................................--*/
604 
605 LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C)  {
606   return wrap(Type::getVoidTy(*unwrap(C)));
607 }
608 LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C) {
609   return wrap(Type::getLabelTy(*unwrap(C)));
610 }
611 
612 LLVMTypeRef LLVMVoidType(void)  {
613   return LLVMVoidTypeInContext(LLVMGetGlobalContext());
614 }
615 LLVMTypeRef LLVMLabelType(void) {
616   return LLVMLabelTypeInContext(LLVMGetGlobalContext());
617 }
618 
619 /*===-- Operations on values ----------------------------------------------===*/
620 
621 /*--.. Operations on all values ............................................--*/
622 
623 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
624   return wrap(unwrap(Val)->getType());
625 }
626 
627 LLVMValueKind LLVMGetValueKind(LLVMValueRef Val) {
628     switch(unwrap(Val)->getValueID()) {
629 #define HANDLE_VALUE(Name) \
630   case Value::Name##Val: \
631     return LLVM##Name##ValueKind;
632 #include "llvm/IR/Value.def"
633   default:
634     return LLVMInstructionValueKind;
635   }
636 }
637 
638 const char *LLVMGetValueName(LLVMValueRef Val) {
639   return unwrap(Val)->getName().data();
640 }
641 
642 void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
643   unwrap(Val)->setName(Name);
644 }
645 
646 LLVM_DUMP_METHOD void LLVMDumpValue(LLVMValueRef Val) {
647   unwrap(Val)->print(errs(), /*IsForDebug=*/true);
648 }
649 
650 char* LLVMPrintValueToString(LLVMValueRef Val) {
651   std::string buf;
652   raw_string_ostream os(buf);
653 
654   if (unwrap(Val))
655     unwrap(Val)->print(os);
656   else
657     os << "Printing <null> Value";
658 
659   os.flush();
660 
661   return strdup(buf.c_str());
662 }
663 
664 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal) {
665   unwrap(OldVal)->replaceAllUsesWith(unwrap(NewVal));
666 }
667 
668 int LLVMHasMetadata(LLVMValueRef Inst) {
669   return unwrap<Instruction>(Inst)->hasMetadata();
670 }
671 
672 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
673   auto *I = unwrap<Instruction>(Inst);
674   assert(I && "Expected instruction");
675   if (auto *MD = I->getMetadata(KindID))
676     return wrap(MetadataAsValue::get(I->getContext(), MD));
677   return nullptr;
678 }
679 
680 // MetadataAsValue uses a canonical format which strips the actual MDNode for
681 // MDNode with just a single constant value, storing just a ConstantAsMetadata
682 // This undoes this canonicalization, reconstructing the MDNode.
683 static MDNode *extractMDNode(MetadataAsValue *MAV) {
684   Metadata *MD = MAV->getMetadata();
685   assert((isa<MDNode>(MD) || isa<ConstantAsMetadata>(MD)) &&
686       "Expected a metadata node or a canonicalized constant");
687 
688   if (MDNode *N = dyn_cast<MDNode>(MD))
689     return N;
690 
691   return MDNode::get(MAV->getContext(), MD);
692 }
693 
694 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef Val) {
695   MDNode *N = Val ? extractMDNode(unwrap<MetadataAsValue>(Val)) : nullptr;
696 
697   unwrap<Instruction>(Inst)->setMetadata(KindID, N);
698 }
699 
700 /*--.. Conversion functions ................................................--*/
701 
702 #define LLVM_DEFINE_VALUE_CAST(name)                                       \
703   LLVMValueRef LLVMIsA##name(LLVMValueRef Val) {                           \
704     return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
705   }
706 
707 LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DEFINE_VALUE_CAST)
708 
709 LLVMValueRef LLVMIsAMDNode(LLVMValueRef Val) {
710   if (auto *MD = dyn_cast_or_null<MetadataAsValue>(unwrap(Val)))
711     if (isa<MDNode>(MD->getMetadata()) ||
712         isa<ValueAsMetadata>(MD->getMetadata()))
713       return Val;
714   return nullptr;
715 }
716 
717 LLVMValueRef LLVMIsAMDString(LLVMValueRef Val) {
718   if (auto *MD = dyn_cast_or_null<MetadataAsValue>(unwrap(Val)))
719     if (isa<MDString>(MD->getMetadata()))
720       return Val;
721   return nullptr;
722 }
723 
724 /*--.. Operations on Uses ..................................................--*/
725 LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val) {
726   Value *V = unwrap(Val);
727   Value::use_iterator I = V->use_begin();
728   if (I == V->use_end())
729     return nullptr;
730   return wrap(&*I);
731 }
732 
733 LLVMUseRef LLVMGetNextUse(LLVMUseRef U) {
734   Use *Next = unwrap(U)->getNext();
735   if (Next)
736     return wrap(Next);
737   return nullptr;
738 }
739 
740 LLVMValueRef LLVMGetUser(LLVMUseRef U) {
741   return wrap(unwrap(U)->getUser());
742 }
743 
744 LLVMValueRef LLVMGetUsedValue(LLVMUseRef U) {
745   return wrap(unwrap(U)->get());
746 }
747 
748 /*--.. Operations on Users .................................................--*/
749 
750 static LLVMValueRef getMDNodeOperandImpl(LLVMContext &Context, const MDNode *N,
751                                          unsigned Index) {
752   Metadata *Op = N->getOperand(Index);
753   if (!Op)
754     return nullptr;
755   if (auto *C = dyn_cast<ConstantAsMetadata>(Op))
756     return wrap(C->getValue());
757   return wrap(MetadataAsValue::get(Context, Op));
758 }
759 
760 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index) {
761   Value *V = unwrap(Val);
762   if (auto *MD = dyn_cast<MetadataAsValue>(V)) {
763     if (auto *L = dyn_cast<ValueAsMetadata>(MD->getMetadata())) {
764       assert(Index == 0 && "Function-local metadata can only have one operand");
765       return wrap(L->getValue());
766     }
767     return getMDNodeOperandImpl(V->getContext(),
768                                 cast<MDNode>(MD->getMetadata()), Index);
769   }
770 
771   return wrap(cast<User>(V)->getOperand(Index));
772 }
773 
774 LLVMUseRef LLVMGetOperandUse(LLVMValueRef Val, unsigned Index) {
775   Value *V = unwrap(Val);
776   return wrap(&cast<User>(V)->getOperandUse(Index));
777 }
778 
779 void LLVMSetOperand(LLVMValueRef Val, unsigned Index, LLVMValueRef Op) {
780   unwrap<User>(Val)->setOperand(Index, unwrap(Op));
781 }
782 
783 int LLVMGetNumOperands(LLVMValueRef Val) {
784   Value *V = unwrap(Val);
785   if (isa<MetadataAsValue>(V))
786     return LLVMGetMDNodeNumOperands(Val);
787 
788   return cast<User>(V)->getNumOperands();
789 }
790 
791 /*--.. Operations on constants of any type .................................--*/
792 
793 LLVMValueRef LLVMConstNull(LLVMTypeRef Ty) {
794   return wrap(Constant::getNullValue(unwrap(Ty)));
795 }
796 
797 LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty) {
798   return wrap(Constant::getAllOnesValue(unwrap(Ty)));
799 }
800 
801 LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty) {
802   return wrap(UndefValue::get(unwrap(Ty)));
803 }
804 
805 LLVMBool LLVMIsConstant(LLVMValueRef Ty) {
806   return isa<Constant>(unwrap(Ty));
807 }
808 
809 LLVMBool LLVMIsNull(LLVMValueRef Val) {
810   if (Constant *C = dyn_cast<Constant>(unwrap(Val)))
811     return C->isNullValue();
812   return false;
813 }
814 
815 LLVMBool LLVMIsUndef(LLVMValueRef Val) {
816   return isa<UndefValue>(unwrap(Val));
817 }
818 
819 LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty) {
820   return wrap(ConstantPointerNull::get(unwrap<PointerType>(Ty)));
821 }
822 
823 /*--.. Operations on metadata nodes ........................................--*/
824 
825 LLVMValueRef LLVMMDStringInContext(LLVMContextRef C, const char *Str,
826                                    unsigned SLen) {
827   LLVMContext &Context = *unwrap(C);
828   return wrap(MetadataAsValue::get(
829       Context, MDString::get(Context, StringRef(Str, SLen))));
830 }
831 
832 LLVMValueRef LLVMMDString(const char *Str, unsigned SLen) {
833   return LLVMMDStringInContext(LLVMGetGlobalContext(), Str, SLen);
834 }
835 
836 LLVMValueRef LLVMMDNodeInContext(LLVMContextRef C, LLVMValueRef *Vals,
837                                  unsigned Count) {
838   LLVMContext &Context = *unwrap(C);
839   SmallVector<Metadata *, 8> MDs;
840   for (auto *OV : makeArrayRef(Vals, Count)) {
841     Value *V = unwrap(OV);
842     Metadata *MD;
843     if (!V)
844       MD = nullptr;
845     else if (auto *C = dyn_cast<Constant>(V))
846       MD = ConstantAsMetadata::get(C);
847     else if (auto *MDV = dyn_cast<MetadataAsValue>(V)) {
848       MD = MDV->getMetadata();
849       assert(!isa<LocalAsMetadata>(MD) && "Unexpected function-local metadata "
850                                           "outside of direct argument to call");
851     } else {
852       // This is function-local metadata.  Pretend to make an MDNode.
853       assert(Count == 1 &&
854              "Expected only one operand to function-local metadata");
855       return wrap(MetadataAsValue::get(Context, LocalAsMetadata::get(V)));
856     }
857 
858     MDs.push_back(MD);
859   }
860   return wrap(MetadataAsValue::get(Context, MDNode::get(Context, MDs)));
861 }
862 
863 LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count) {
864   return LLVMMDNodeInContext(LLVMGetGlobalContext(), Vals, Count);
865 }
866 
867 const char *LLVMGetMDString(LLVMValueRef V, unsigned *Length) {
868   if (const auto *MD = dyn_cast<MetadataAsValue>(unwrap(V)))
869     if (const MDString *S = dyn_cast<MDString>(MD->getMetadata())) {
870       *Length = S->getString().size();
871       return S->getString().data();
872     }
873   *Length = 0;
874   return nullptr;
875 }
876 
877 unsigned LLVMGetMDNodeNumOperands(LLVMValueRef V) {
878   auto *MD = cast<MetadataAsValue>(unwrap(V));
879   if (isa<ValueAsMetadata>(MD->getMetadata()))
880     return 1;
881   return cast<MDNode>(MD->getMetadata())->getNumOperands();
882 }
883 
884 void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest) {
885   auto *MD = cast<MetadataAsValue>(unwrap(V));
886   if (auto *MDV = dyn_cast<ValueAsMetadata>(MD->getMetadata())) {
887     *Dest = wrap(MDV->getValue());
888     return;
889   }
890   const auto *N = cast<MDNode>(MD->getMetadata());
891   const unsigned numOperands = N->getNumOperands();
892   LLVMContext &Context = unwrap(V)->getContext();
893   for (unsigned i = 0; i < numOperands; i++)
894     Dest[i] = getMDNodeOperandImpl(Context, N, i);
895 }
896 
897 unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char *Name) {
898   if (NamedMDNode *N = unwrap(M)->getNamedMetadata(Name)) {
899     return N->getNumOperands();
900   }
901   return 0;
902 }
903 
904 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char *Name,
905                                   LLVMValueRef *Dest) {
906   NamedMDNode *N = unwrap(M)->getNamedMetadata(Name);
907   if (!N)
908     return;
909   LLVMContext &Context = unwrap(M)->getContext();
910   for (unsigned i=0;i<N->getNumOperands();i++)
911     Dest[i] = wrap(MetadataAsValue::get(Context, N->getOperand(i)));
912 }
913 
914 void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char *Name,
915                                  LLVMValueRef Val) {
916   NamedMDNode *N = unwrap(M)->getOrInsertNamedMetadata(Name);
917   if (!N)
918     return;
919   if (!Val)
920     return;
921   N->addOperand(extractMDNode(unwrap<MetadataAsValue>(Val)));
922 }
923 
924 /*--.. Operations on scalar constants ......................................--*/
925 
926 LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
927                           LLVMBool SignExtend) {
928   return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
929 }
930 
931 LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
932                                               unsigned NumWords,
933                                               const uint64_t Words[]) {
934     IntegerType *Ty = unwrap<IntegerType>(IntTy);
935     return wrap(ConstantInt::get(Ty->getContext(),
936                                  APInt(Ty->getBitWidth(),
937                                        makeArrayRef(Words, NumWords))));
938 }
939 
940 LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char Str[],
941                                   uint8_t Radix) {
942   return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str),
943                                Radix));
944 }
945 
946 LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char Str[],
947                                          unsigned SLen, uint8_t Radix) {
948   return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str, SLen),
949                                Radix));
950 }
951 
952 LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) {
953   return wrap(ConstantFP::get(unwrap(RealTy), N));
954 }
955 
956 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) {
957   return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Text)));
958 }
959 
960 LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char Str[],
961                                           unsigned SLen) {
962   return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Str, SLen)));
963 }
964 
965 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
966   return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
967 }
968 
969 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
970   return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
971 }
972 
973 double LLVMConstRealGetDouble(LLVMValueRef ConstantVal, LLVMBool *LosesInfo) {
974   ConstantFP *cFP = unwrap<ConstantFP>(ConstantVal) ;
975   Type *Ty = cFP->getType();
976 
977   if (Ty->isFloatTy()) {
978     *LosesInfo = false;
979     return cFP->getValueAPF().convertToFloat();
980   }
981 
982   if (Ty->isDoubleTy()) {
983     *LosesInfo = false;
984     return cFP->getValueAPF().convertToDouble();
985   }
986 
987   bool APFLosesInfo;
988   APFloat APF = cFP->getValueAPF();
989   APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &APFLosesInfo);
990   *LosesInfo = APFLosesInfo;
991   return APF.convertToDouble();
992 }
993 
994 /*--.. Operations on composite constants ...................................--*/
995 
996 LLVMValueRef LLVMConstStringInContext(LLVMContextRef C, const char *Str,
997                                       unsigned Length,
998                                       LLVMBool DontNullTerminate) {
999   /* Inverted the sense of AddNull because ', 0)' is a
1000      better mnemonic for null termination than ', 1)'. */
1001   return wrap(ConstantDataArray::getString(*unwrap(C), StringRef(Str, Length),
1002                                            DontNullTerminate == 0));
1003 }
1004 
1005 LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
1006                              LLVMBool DontNullTerminate) {
1007   return LLVMConstStringInContext(LLVMGetGlobalContext(), Str, Length,
1008                                   DontNullTerminate);
1009 }
1010 
1011 LLVMValueRef LLVMGetElementAsConstant(LLVMValueRef C, unsigned idx) {
1012   return wrap(unwrap<ConstantDataSequential>(C)->getElementAsConstant(idx));
1013 }
1014 
1015 LLVMBool LLVMIsConstantString(LLVMValueRef C) {
1016   return unwrap<ConstantDataSequential>(C)->isString();
1017 }
1018 
1019 const char *LLVMGetAsString(LLVMValueRef C, size_t *Length) {
1020   StringRef Str = unwrap<ConstantDataSequential>(C)->getAsString();
1021   *Length = Str.size();
1022   return Str.data();
1023 }
1024 
1025 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
1026                             LLVMValueRef *ConstantVals, unsigned Length) {
1027   ArrayRef<Constant*> V(unwrap<Constant>(ConstantVals, Length), Length);
1028   return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length), V));
1029 }
1030 
1031 LLVMValueRef LLVMConstStructInContext(LLVMContextRef C,
1032                                       LLVMValueRef *ConstantVals,
1033                                       unsigned Count, LLVMBool Packed) {
1034   Constant **Elements = unwrap<Constant>(ConstantVals, Count);
1035   return wrap(ConstantStruct::getAnon(*unwrap(C), makeArrayRef(Elements, Count),
1036                                       Packed != 0));
1037 }
1038 
1039 LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
1040                              LLVMBool Packed) {
1041   return LLVMConstStructInContext(LLVMGetGlobalContext(), ConstantVals, Count,
1042                                   Packed);
1043 }
1044 
1045 LLVMValueRef LLVMConstNamedStruct(LLVMTypeRef StructTy,
1046                                   LLVMValueRef *ConstantVals,
1047                                   unsigned Count) {
1048   Constant **Elements = unwrap<Constant>(ConstantVals, Count);
1049   StructType *Ty = cast<StructType>(unwrap(StructTy));
1050 
1051   return wrap(ConstantStruct::get(Ty, makeArrayRef(Elements, Count)));
1052 }
1053 
1054 LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size) {
1055   return wrap(ConstantVector::get(makeArrayRef(
1056                             unwrap<Constant>(ScalarConstantVals, Size), Size)));
1057 }
1058 
1059 /*-- Opcode mapping */
1060 
1061 static LLVMOpcode map_to_llvmopcode(int opcode)
1062 {
1063     switch (opcode) {
1064       default: llvm_unreachable("Unhandled Opcode.");
1065 #define HANDLE_INST(num, opc, clas) case num: return LLVM##opc;
1066 #include "llvm/IR/Instruction.def"
1067 #undef HANDLE_INST
1068     }
1069 }
1070 
1071 static int map_from_llvmopcode(LLVMOpcode code)
1072 {
1073     switch (code) {
1074 #define HANDLE_INST(num, opc, clas) case LLVM##opc: return num;
1075 #include "llvm/IR/Instruction.def"
1076 #undef HANDLE_INST
1077     }
1078     llvm_unreachable("Unhandled Opcode.");
1079 }
1080 
1081 /*--.. Constant expressions ................................................--*/
1082 
1083 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
1084   return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode());
1085 }
1086 
1087 LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty) {
1088   return wrap(ConstantExpr::getAlignOf(unwrap(Ty)));
1089 }
1090 
1091 LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty) {
1092   return wrap(ConstantExpr::getSizeOf(unwrap(Ty)));
1093 }
1094 
1095 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
1096   return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
1097 }
1098 
1099 LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal) {
1100   return wrap(ConstantExpr::getNSWNeg(unwrap<Constant>(ConstantVal)));
1101 }
1102 
1103 LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal) {
1104   return wrap(ConstantExpr::getNUWNeg(unwrap<Constant>(ConstantVal)));
1105 }
1106 
1107 
1108 LLVMValueRef LLVMConstFNeg(LLVMValueRef ConstantVal) {
1109   return wrap(ConstantExpr::getFNeg(unwrap<Constant>(ConstantVal)));
1110 }
1111 
1112 LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal) {
1113   return wrap(ConstantExpr::getNot(unwrap<Constant>(ConstantVal)));
1114 }
1115 
1116 LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1117   return wrap(ConstantExpr::getAdd(unwrap<Constant>(LHSConstant),
1118                                    unwrap<Constant>(RHSConstant)));
1119 }
1120 
1121 LLVMValueRef LLVMConstNSWAdd(LLVMValueRef LHSConstant,
1122                              LLVMValueRef RHSConstant) {
1123   return wrap(ConstantExpr::getNSWAdd(unwrap<Constant>(LHSConstant),
1124                                       unwrap<Constant>(RHSConstant)));
1125 }
1126 
1127 LLVMValueRef LLVMConstNUWAdd(LLVMValueRef LHSConstant,
1128                              LLVMValueRef RHSConstant) {
1129   return wrap(ConstantExpr::getNUWAdd(unwrap<Constant>(LHSConstant),
1130                                       unwrap<Constant>(RHSConstant)));
1131 }
1132 
1133 LLVMValueRef LLVMConstFAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1134   return wrap(ConstantExpr::getFAdd(unwrap<Constant>(LHSConstant),
1135                                     unwrap<Constant>(RHSConstant)));
1136 }
1137 
1138 LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1139   return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant),
1140                                    unwrap<Constant>(RHSConstant)));
1141 }
1142 
1143 LLVMValueRef LLVMConstNSWSub(LLVMValueRef LHSConstant,
1144                              LLVMValueRef RHSConstant) {
1145   return wrap(ConstantExpr::getNSWSub(unwrap<Constant>(LHSConstant),
1146                                       unwrap<Constant>(RHSConstant)));
1147 }
1148 
1149 LLVMValueRef LLVMConstNUWSub(LLVMValueRef LHSConstant,
1150                              LLVMValueRef RHSConstant) {
1151   return wrap(ConstantExpr::getNUWSub(unwrap<Constant>(LHSConstant),
1152                                       unwrap<Constant>(RHSConstant)));
1153 }
1154 
1155 LLVMValueRef LLVMConstFSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1156   return wrap(ConstantExpr::getFSub(unwrap<Constant>(LHSConstant),
1157                                     unwrap<Constant>(RHSConstant)));
1158 }
1159 
1160 LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1161   return wrap(ConstantExpr::getMul(unwrap<Constant>(LHSConstant),
1162                                    unwrap<Constant>(RHSConstant)));
1163 }
1164 
1165 LLVMValueRef LLVMConstNSWMul(LLVMValueRef LHSConstant,
1166                              LLVMValueRef RHSConstant) {
1167   return wrap(ConstantExpr::getNSWMul(unwrap<Constant>(LHSConstant),
1168                                       unwrap<Constant>(RHSConstant)));
1169 }
1170 
1171 LLVMValueRef LLVMConstNUWMul(LLVMValueRef LHSConstant,
1172                              LLVMValueRef RHSConstant) {
1173   return wrap(ConstantExpr::getNUWMul(unwrap<Constant>(LHSConstant),
1174                                       unwrap<Constant>(RHSConstant)));
1175 }
1176 
1177 LLVMValueRef LLVMConstFMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1178   return wrap(ConstantExpr::getFMul(unwrap<Constant>(LHSConstant),
1179                                     unwrap<Constant>(RHSConstant)));
1180 }
1181 
1182 LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1183   return wrap(ConstantExpr::getUDiv(unwrap<Constant>(LHSConstant),
1184                                     unwrap<Constant>(RHSConstant)));
1185 }
1186 
1187 LLVMValueRef LLVMConstExactUDiv(LLVMValueRef LHSConstant,
1188                                 LLVMValueRef RHSConstant) {
1189   return wrap(ConstantExpr::getExactUDiv(unwrap<Constant>(LHSConstant),
1190                                          unwrap<Constant>(RHSConstant)));
1191 }
1192 
1193 LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1194   return wrap(ConstantExpr::getSDiv(unwrap<Constant>(LHSConstant),
1195                                     unwrap<Constant>(RHSConstant)));
1196 }
1197 
1198 LLVMValueRef LLVMConstExactSDiv(LLVMValueRef LHSConstant,
1199                                 LLVMValueRef RHSConstant) {
1200   return wrap(ConstantExpr::getExactSDiv(unwrap<Constant>(LHSConstant),
1201                                          unwrap<Constant>(RHSConstant)));
1202 }
1203 
1204 LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1205   return wrap(ConstantExpr::getFDiv(unwrap<Constant>(LHSConstant),
1206                                     unwrap<Constant>(RHSConstant)));
1207 }
1208 
1209 LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1210   return wrap(ConstantExpr::getURem(unwrap<Constant>(LHSConstant),
1211                                     unwrap<Constant>(RHSConstant)));
1212 }
1213 
1214 LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1215   return wrap(ConstantExpr::getSRem(unwrap<Constant>(LHSConstant),
1216                                     unwrap<Constant>(RHSConstant)));
1217 }
1218 
1219 LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1220   return wrap(ConstantExpr::getFRem(unwrap<Constant>(LHSConstant),
1221                                     unwrap<Constant>(RHSConstant)));
1222 }
1223 
1224 LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1225   return wrap(ConstantExpr::getAnd(unwrap<Constant>(LHSConstant),
1226                                    unwrap<Constant>(RHSConstant)));
1227 }
1228 
1229 LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1230   return wrap(ConstantExpr::getOr(unwrap<Constant>(LHSConstant),
1231                                   unwrap<Constant>(RHSConstant)));
1232 }
1233 
1234 LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1235   return wrap(ConstantExpr::getXor(unwrap<Constant>(LHSConstant),
1236                                    unwrap<Constant>(RHSConstant)));
1237 }
1238 
1239 LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
1240                            LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1241   return wrap(ConstantExpr::getICmp(Predicate,
1242                                     unwrap<Constant>(LHSConstant),
1243                                     unwrap<Constant>(RHSConstant)));
1244 }
1245 
1246 LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
1247                            LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1248   return wrap(ConstantExpr::getFCmp(Predicate,
1249                                     unwrap<Constant>(LHSConstant),
1250                                     unwrap<Constant>(RHSConstant)));
1251 }
1252 
1253 LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1254   return wrap(ConstantExpr::getShl(unwrap<Constant>(LHSConstant),
1255                                    unwrap<Constant>(RHSConstant)));
1256 }
1257 
1258 LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1259   return wrap(ConstantExpr::getLShr(unwrap<Constant>(LHSConstant),
1260                                     unwrap<Constant>(RHSConstant)));
1261 }
1262 
1263 LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1264   return wrap(ConstantExpr::getAShr(unwrap<Constant>(LHSConstant),
1265                                     unwrap<Constant>(RHSConstant)));
1266 }
1267 
1268 LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
1269                           LLVMValueRef *ConstantIndices, unsigned NumIndices) {
1270   ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
1271                                NumIndices);
1272   return wrap(ConstantExpr::getGetElementPtr(
1273       nullptr, unwrap<Constant>(ConstantVal), IdxList));
1274 }
1275 
1276 LLVMValueRef LLVMConstInBoundsGEP(LLVMValueRef ConstantVal,
1277                                   LLVMValueRef *ConstantIndices,
1278                                   unsigned NumIndices) {
1279   Constant* Val = unwrap<Constant>(ConstantVal);
1280   ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
1281                                NumIndices);
1282   return wrap(ConstantExpr::getInBoundsGetElementPtr(nullptr, Val, IdxList));
1283 }
1284 
1285 LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1286   return wrap(ConstantExpr::getTrunc(unwrap<Constant>(ConstantVal),
1287                                      unwrap(ToType)));
1288 }
1289 
1290 LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1291   return wrap(ConstantExpr::getSExt(unwrap<Constant>(ConstantVal),
1292                                     unwrap(ToType)));
1293 }
1294 
1295 LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1296   return wrap(ConstantExpr::getZExt(unwrap<Constant>(ConstantVal),
1297                                     unwrap(ToType)));
1298 }
1299 
1300 LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1301   return wrap(ConstantExpr::getFPTrunc(unwrap<Constant>(ConstantVal),
1302                                        unwrap(ToType)));
1303 }
1304 
1305 LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1306   return wrap(ConstantExpr::getFPExtend(unwrap<Constant>(ConstantVal),
1307                                         unwrap(ToType)));
1308 }
1309 
1310 LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1311   return wrap(ConstantExpr::getUIToFP(unwrap<Constant>(ConstantVal),
1312                                       unwrap(ToType)));
1313 }
1314 
1315 LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1316   return wrap(ConstantExpr::getSIToFP(unwrap<Constant>(ConstantVal),
1317                                       unwrap(ToType)));
1318 }
1319 
1320 LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1321   return wrap(ConstantExpr::getFPToUI(unwrap<Constant>(ConstantVal),
1322                                       unwrap(ToType)));
1323 }
1324 
1325 LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1326   return wrap(ConstantExpr::getFPToSI(unwrap<Constant>(ConstantVal),
1327                                       unwrap(ToType)));
1328 }
1329 
1330 LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1331   return wrap(ConstantExpr::getPtrToInt(unwrap<Constant>(ConstantVal),
1332                                         unwrap(ToType)));
1333 }
1334 
1335 LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1336   return wrap(ConstantExpr::getIntToPtr(unwrap<Constant>(ConstantVal),
1337                                         unwrap(ToType)));
1338 }
1339 
1340 LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1341   return wrap(ConstantExpr::getBitCast(unwrap<Constant>(ConstantVal),
1342                                        unwrap(ToType)));
1343 }
1344 
1345 LLVMValueRef LLVMConstAddrSpaceCast(LLVMValueRef ConstantVal,
1346                                     LLVMTypeRef ToType) {
1347   return wrap(ConstantExpr::getAddrSpaceCast(unwrap<Constant>(ConstantVal),
1348                                              unwrap(ToType)));
1349 }
1350 
1351 LLVMValueRef LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal,
1352                                     LLVMTypeRef ToType) {
1353   return wrap(ConstantExpr::getZExtOrBitCast(unwrap<Constant>(ConstantVal),
1354                                              unwrap(ToType)));
1355 }
1356 
1357 LLVMValueRef LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal,
1358                                     LLVMTypeRef ToType) {
1359   return wrap(ConstantExpr::getSExtOrBitCast(unwrap<Constant>(ConstantVal),
1360                                              unwrap(ToType)));
1361 }
1362 
1363 LLVMValueRef LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal,
1364                                      LLVMTypeRef ToType) {
1365   return wrap(ConstantExpr::getTruncOrBitCast(unwrap<Constant>(ConstantVal),
1366                                               unwrap(ToType)));
1367 }
1368 
1369 LLVMValueRef LLVMConstPointerCast(LLVMValueRef ConstantVal,
1370                                   LLVMTypeRef ToType) {
1371   return wrap(ConstantExpr::getPointerCast(unwrap<Constant>(ConstantVal),
1372                                            unwrap(ToType)));
1373 }
1374 
1375 LLVMValueRef LLVMConstIntCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType,
1376                               LLVMBool isSigned) {
1377   return wrap(ConstantExpr::getIntegerCast(unwrap<Constant>(ConstantVal),
1378                                            unwrap(ToType), isSigned));
1379 }
1380 
1381 LLVMValueRef LLVMConstFPCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1382   return wrap(ConstantExpr::getFPCast(unwrap<Constant>(ConstantVal),
1383                                       unwrap(ToType)));
1384 }
1385 
1386 LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
1387                              LLVMValueRef ConstantIfTrue,
1388                              LLVMValueRef ConstantIfFalse) {
1389   return wrap(ConstantExpr::getSelect(unwrap<Constant>(ConstantCondition),
1390                                       unwrap<Constant>(ConstantIfTrue),
1391                                       unwrap<Constant>(ConstantIfFalse)));
1392 }
1393 
1394 LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
1395                                      LLVMValueRef IndexConstant) {
1396   return wrap(ConstantExpr::getExtractElement(unwrap<Constant>(VectorConstant),
1397                                               unwrap<Constant>(IndexConstant)));
1398 }
1399 
1400 LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
1401                                     LLVMValueRef ElementValueConstant,
1402                                     LLVMValueRef IndexConstant) {
1403   return wrap(ConstantExpr::getInsertElement(unwrap<Constant>(VectorConstant),
1404                                          unwrap<Constant>(ElementValueConstant),
1405                                              unwrap<Constant>(IndexConstant)));
1406 }
1407 
1408 LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
1409                                     LLVMValueRef VectorBConstant,
1410                                     LLVMValueRef MaskConstant) {
1411   return wrap(ConstantExpr::getShuffleVector(unwrap<Constant>(VectorAConstant),
1412                                              unwrap<Constant>(VectorBConstant),
1413                                              unwrap<Constant>(MaskConstant)));
1414 }
1415 
1416 LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
1417                                    unsigned NumIdx) {
1418   return wrap(ConstantExpr::getExtractValue(unwrap<Constant>(AggConstant),
1419                                             makeArrayRef(IdxList, NumIdx)));
1420 }
1421 
1422 LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
1423                                   LLVMValueRef ElementValueConstant,
1424                                   unsigned *IdxList, unsigned NumIdx) {
1425   return wrap(ConstantExpr::getInsertValue(unwrap<Constant>(AggConstant),
1426                                          unwrap<Constant>(ElementValueConstant),
1427                                            makeArrayRef(IdxList, NumIdx)));
1428 }
1429 
1430 LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString,
1431                                 const char *Constraints,
1432                                 LLVMBool HasSideEffects,
1433                                 LLVMBool IsAlignStack) {
1434   return wrap(InlineAsm::get(dyn_cast<FunctionType>(unwrap(Ty)), AsmString,
1435                              Constraints, HasSideEffects, IsAlignStack));
1436 }
1437 
1438 LLVMValueRef LLVMBlockAddress(LLVMValueRef F, LLVMBasicBlockRef BB) {
1439   return wrap(BlockAddress::get(unwrap<Function>(F), unwrap(BB)));
1440 }
1441 
1442 /*--.. Operations on global variables, functions, and aliases (globals) ....--*/
1443 
1444 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) {
1445   return wrap(unwrap<GlobalValue>(Global)->getParent());
1446 }
1447 
1448 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) {
1449   return unwrap<GlobalValue>(Global)->isDeclaration();
1450 }
1451 
1452 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) {
1453   switch (unwrap<GlobalValue>(Global)->getLinkage()) {
1454   case GlobalValue::ExternalLinkage:
1455     return LLVMExternalLinkage;
1456   case GlobalValue::AvailableExternallyLinkage:
1457     return LLVMAvailableExternallyLinkage;
1458   case GlobalValue::LinkOnceAnyLinkage:
1459     return LLVMLinkOnceAnyLinkage;
1460   case GlobalValue::LinkOnceODRLinkage:
1461     return LLVMLinkOnceODRLinkage;
1462   case GlobalValue::WeakAnyLinkage:
1463     return LLVMWeakAnyLinkage;
1464   case GlobalValue::WeakODRLinkage:
1465     return LLVMWeakODRLinkage;
1466   case GlobalValue::AppendingLinkage:
1467     return LLVMAppendingLinkage;
1468   case GlobalValue::InternalLinkage:
1469     return LLVMInternalLinkage;
1470   case GlobalValue::PrivateLinkage:
1471     return LLVMPrivateLinkage;
1472   case GlobalValue::ExternalWeakLinkage:
1473     return LLVMExternalWeakLinkage;
1474   case GlobalValue::CommonLinkage:
1475     return LLVMCommonLinkage;
1476   }
1477 
1478   llvm_unreachable("Invalid GlobalValue linkage!");
1479 }
1480 
1481 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) {
1482   GlobalValue *GV = unwrap<GlobalValue>(Global);
1483 
1484   switch (Linkage) {
1485   case LLVMExternalLinkage:
1486     GV->setLinkage(GlobalValue::ExternalLinkage);
1487     break;
1488   case LLVMAvailableExternallyLinkage:
1489     GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
1490     break;
1491   case LLVMLinkOnceAnyLinkage:
1492     GV->setLinkage(GlobalValue::LinkOnceAnyLinkage);
1493     break;
1494   case LLVMLinkOnceODRLinkage:
1495     GV->setLinkage(GlobalValue::LinkOnceODRLinkage);
1496     break;
1497   case LLVMLinkOnceODRAutoHideLinkage:
1498     DEBUG(errs() << "LLVMSetLinkage(): LLVMLinkOnceODRAutoHideLinkage is no "
1499                     "longer supported.");
1500     break;
1501   case LLVMWeakAnyLinkage:
1502     GV->setLinkage(GlobalValue::WeakAnyLinkage);
1503     break;
1504   case LLVMWeakODRLinkage:
1505     GV->setLinkage(GlobalValue::WeakODRLinkage);
1506     break;
1507   case LLVMAppendingLinkage:
1508     GV->setLinkage(GlobalValue::AppendingLinkage);
1509     break;
1510   case LLVMInternalLinkage:
1511     GV->setLinkage(GlobalValue::InternalLinkage);
1512     break;
1513   case LLVMPrivateLinkage:
1514     GV->setLinkage(GlobalValue::PrivateLinkage);
1515     break;
1516   case LLVMLinkerPrivateLinkage:
1517     GV->setLinkage(GlobalValue::PrivateLinkage);
1518     break;
1519   case LLVMLinkerPrivateWeakLinkage:
1520     GV->setLinkage(GlobalValue::PrivateLinkage);
1521     break;
1522   case LLVMDLLImportLinkage:
1523     DEBUG(errs()
1524           << "LLVMSetLinkage(): LLVMDLLImportLinkage is no longer supported.");
1525     break;
1526   case LLVMDLLExportLinkage:
1527     DEBUG(errs()
1528           << "LLVMSetLinkage(): LLVMDLLExportLinkage is no longer supported.");
1529     break;
1530   case LLVMExternalWeakLinkage:
1531     GV->setLinkage(GlobalValue::ExternalWeakLinkage);
1532     break;
1533   case LLVMGhostLinkage:
1534     DEBUG(errs()
1535           << "LLVMSetLinkage(): LLVMGhostLinkage is no longer supported.");
1536     break;
1537   case LLVMCommonLinkage:
1538     GV->setLinkage(GlobalValue::CommonLinkage);
1539     break;
1540   }
1541 }
1542 
1543 const char *LLVMGetSection(LLVMValueRef Global) {
1544   // Using .data() is safe because of how GlobalObject::setSection is
1545   // implemented.
1546   return unwrap<GlobalValue>(Global)->getSection().data();
1547 }
1548 
1549 void LLVMSetSection(LLVMValueRef Global, const char *Section) {
1550   unwrap<GlobalObject>(Global)->setSection(Section);
1551 }
1552 
1553 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) {
1554   return static_cast<LLVMVisibility>(
1555     unwrap<GlobalValue>(Global)->getVisibility());
1556 }
1557 
1558 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) {
1559   unwrap<GlobalValue>(Global)
1560     ->setVisibility(static_cast<GlobalValue::VisibilityTypes>(Viz));
1561 }
1562 
1563 LLVMDLLStorageClass LLVMGetDLLStorageClass(LLVMValueRef Global) {
1564   return static_cast<LLVMDLLStorageClass>(
1565       unwrap<GlobalValue>(Global)->getDLLStorageClass());
1566 }
1567 
1568 void LLVMSetDLLStorageClass(LLVMValueRef Global, LLVMDLLStorageClass Class) {
1569   unwrap<GlobalValue>(Global)->setDLLStorageClass(
1570       static_cast<GlobalValue::DLLStorageClassTypes>(Class));
1571 }
1572 
1573 LLVMBool LLVMHasUnnamedAddr(LLVMValueRef Global) {
1574   return unwrap<GlobalValue>(Global)->hasGlobalUnnamedAddr();
1575 }
1576 
1577 void LLVMSetUnnamedAddr(LLVMValueRef Global, LLVMBool HasUnnamedAddr) {
1578   unwrap<GlobalValue>(Global)->setUnnamedAddr(
1579       HasUnnamedAddr ? GlobalValue::UnnamedAddr::Global
1580                      : GlobalValue::UnnamedAddr::None);
1581 }
1582 
1583 /*--.. Operations on global variables, load and store instructions .........--*/
1584 
1585 unsigned LLVMGetAlignment(LLVMValueRef V) {
1586   Value *P = unwrap<Value>(V);
1587   if (GlobalValue *GV = dyn_cast<GlobalValue>(P))
1588     return GV->getAlignment();
1589   if (AllocaInst *AI = dyn_cast<AllocaInst>(P))
1590     return AI->getAlignment();
1591   if (LoadInst *LI = dyn_cast<LoadInst>(P))
1592     return LI->getAlignment();
1593   if (StoreInst *SI = dyn_cast<StoreInst>(P))
1594     return SI->getAlignment();
1595 
1596   llvm_unreachable(
1597       "only GlobalValue, AllocaInst, LoadInst and StoreInst have alignment");
1598 }
1599 
1600 void LLVMSetAlignment(LLVMValueRef V, unsigned Bytes) {
1601   Value *P = unwrap<Value>(V);
1602   if (GlobalObject *GV = dyn_cast<GlobalObject>(P))
1603     GV->setAlignment(Bytes);
1604   else if (AllocaInst *AI = dyn_cast<AllocaInst>(P))
1605     AI->setAlignment(Bytes);
1606   else if (LoadInst *LI = dyn_cast<LoadInst>(P))
1607     LI->setAlignment(Bytes);
1608   else if (StoreInst *SI = dyn_cast<StoreInst>(P))
1609     SI->setAlignment(Bytes);
1610   else
1611     llvm_unreachable(
1612         "only GlobalValue, AllocaInst, LoadInst and StoreInst have alignment");
1613 }
1614 
1615 /*--.. Operations on global variables ......................................--*/
1616 
1617 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) {
1618   return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
1619                                  GlobalValue::ExternalLinkage, nullptr, Name));
1620 }
1621 
1622 LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty,
1623                                          const char *Name,
1624                                          unsigned AddressSpace) {
1625   return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
1626                                  GlobalValue::ExternalLinkage, nullptr, Name,
1627                                  nullptr, GlobalVariable::NotThreadLocal,
1628                                  AddressSpace));
1629 }
1630 
1631 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) {
1632   return wrap(unwrap(M)->getNamedGlobal(Name));
1633 }
1634 
1635 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) {
1636   Module *Mod = unwrap(M);
1637   Module::global_iterator I = Mod->global_begin();
1638   if (I == Mod->global_end())
1639     return nullptr;
1640   return wrap(&*I);
1641 }
1642 
1643 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) {
1644   Module *Mod = unwrap(M);
1645   Module::global_iterator I = Mod->global_end();
1646   if (I == Mod->global_begin())
1647     return nullptr;
1648   return wrap(&*--I);
1649 }
1650 
1651 LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar) {
1652   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1653   Module::global_iterator I(GV);
1654   if (++I == GV->getParent()->global_end())
1655     return nullptr;
1656   return wrap(&*I);
1657 }
1658 
1659 LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar) {
1660   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1661   Module::global_iterator I(GV);
1662   if (I == GV->getParent()->global_begin())
1663     return nullptr;
1664   return wrap(&*--I);
1665 }
1666 
1667 void LLVMDeleteGlobal(LLVMValueRef GlobalVar) {
1668   unwrap<GlobalVariable>(GlobalVar)->eraseFromParent();
1669 }
1670 
1671 LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar) {
1672   GlobalVariable* GV = unwrap<GlobalVariable>(GlobalVar);
1673   if ( !GV->hasInitializer() )
1674     return nullptr;
1675   return wrap(GV->getInitializer());
1676 }
1677 
1678 void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal) {
1679   unwrap<GlobalVariable>(GlobalVar)
1680     ->setInitializer(unwrap<Constant>(ConstantVal));
1681 }
1682 
1683 LLVMBool LLVMIsThreadLocal(LLVMValueRef GlobalVar) {
1684   return unwrap<GlobalVariable>(GlobalVar)->isThreadLocal();
1685 }
1686 
1687 void LLVMSetThreadLocal(LLVMValueRef GlobalVar, LLVMBool IsThreadLocal) {
1688   unwrap<GlobalVariable>(GlobalVar)->setThreadLocal(IsThreadLocal != 0);
1689 }
1690 
1691 LLVMBool LLVMIsGlobalConstant(LLVMValueRef GlobalVar) {
1692   return unwrap<GlobalVariable>(GlobalVar)->isConstant();
1693 }
1694 
1695 void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, LLVMBool IsConstant) {
1696   unwrap<GlobalVariable>(GlobalVar)->setConstant(IsConstant != 0);
1697 }
1698 
1699 LLVMThreadLocalMode LLVMGetThreadLocalMode(LLVMValueRef GlobalVar) {
1700   switch (unwrap<GlobalVariable>(GlobalVar)->getThreadLocalMode()) {
1701   case GlobalVariable::NotThreadLocal:
1702     return LLVMNotThreadLocal;
1703   case GlobalVariable::GeneralDynamicTLSModel:
1704     return LLVMGeneralDynamicTLSModel;
1705   case GlobalVariable::LocalDynamicTLSModel:
1706     return LLVMLocalDynamicTLSModel;
1707   case GlobalVariable::InitialExecTLSModel:
1708     return LLVMInitialExecTLSModel;
1709   case GlobalVariable::LocalExecTLSModel:
1710     return LLVMLocalExecTLSModel;
1711   }
1712 
1713   llvm_unreachable("Invalid GlobalVariable thread local mode");
1714 }
1715 
1716 void LLVMSetThreadLocalMode(LLVMValueRef GlobalVar, LLVMThreadLocalMode Mode) {
1717   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
1718 
1719   switch (Mode) {
1720   case LLVMNotThreadLocal:
1721     GV->setThreadLocalMode(GlobalVariable::NotThreadLocal);
1722     break;
1723   case LLVMGeneralDynamicTLSModel:
1724     GV->setThreadLocalMode(GlobalVariable::GeneralDynamicTLSModel);
1725     break;
1726   case LLVMLocalDynamicTLSModel:
1727     GV->setThreadLocalMode(GlobalVariable::LocalDynamicTLSModel);
1728     break;
1729   case LLVMInitialExecTLSModel:
1730     GV->setThreadLocalMode(GlobalVariable::InitialExecTLSModel);
1731     break;
1732   case LLVMLocalExecTLSModel:
1733     GV->setThreadLocalMode(GlobalVariable::LocalExecTLSModel);
1734     break;
1735   }
1736 }
1737 
1738 LLVMBool LLVMIsExternallyInitialized(LLVMValueRef GlobalVar) {
1739   return unwrap<GlobalVariable>(GlobalVar)->isExternallyInitialized();
1740 }
1741 
1742 void LLVMSetExternallyInitialized(LLVMValueRef GlobalVar, LLVMBool IsExtInit) {
1743   unwrap<GlobalVariable>(GlobalVar)->setExternallyInitialized(IsExtInit);
1744 }
1745 
1746 /*--.. Operations on aliases ......................................--*/
1747 
1748 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
1749                           const char *Name) {
1750   auto *PTy = cast<PointerType>(unwrap(Ty));
1751   return wrap(GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1752                                   GlobalValue::ExternalLinkage, Name,
1753                                   unwrap<Constant>(Aliasee), unwrap(M)));
1754 }
1755 
1756 /*--.. Operations on functions .............................................--*/
1757 
1758 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
1759                              LLVMTypeRef FunctionTy) {
1760   return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
1761                                GlobalValue::ExternalLinkage, Name, unwrap(M)));
1762 }
1763 
1764 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) {
1765   return wrap(unwrap(M)->getFunction(Name));
1766 }
1767 
1768 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) {
1769   Module *Mod = unwrap(M);
1770   Module::iterator I = Mod->begin();
1771   if (I == Mod->end())
1772     return nullptr;
1773   return wrap(&*I);
1774 }
1775 
1776 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) {
1777   Module *Mod = unwrap(M);
1778   Module::iterator I = Mod->end();
1779   if (I == Mod->begin())
1780     return nullptr;
1781   return wrap(&*--I);
1782 }
1783 
1784 LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn) {
1785   Function *Func = unwrap<Function>(Fn);
1786   Module::iterator I(Func);
1787   if (++I == Func->getParent()->end())
1788     return nullptr;
1789   return wrap(&*I);
1790 }
1791 
1792 LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn) {
1793   Function *Func = unwrap<Function>(Fn);
1794   Module::iterator I(Func);
1795   if (I == Func->getParent()->begin())
1796     return nullptr;
1797   return wrap(&*--I);
1798 }
1799 
1800 void LLVMDeleteFunction(LLVMValueRef Fn) {
1801   unwrap<Function>(Fn)->eraseFromParent();
1802 }
1803 
1804 LLVMBool LLVMHasPersonalityFn(LLVMValueRef Fn) {
1805   return unwrap<Function>(Fn)->hasPersonalityFn();
1806 }
1807 
1808 LLVMValueRef LLVMGetPersonalityFn(LLVMValueRef Fn) {
1809   return wrap(unwrap<Function>(Fn)->getPersonalityFn());
1810 }
1811 
1812 void LLVMSetPersonalityFn(LLVMValueRef Fn, LLVMValueRef PersonalityFn) {
1813   unwrap<Function>(Fn)->setPersonalityFn(unwrap<Constant>(PersonalityFn));
1814 }
1815 
1816 unsigned LLVMGetIntrinsicID(LLVMValueRef Fn) {
1817   if (Function *F = dyn_cast<Function>(unwrap(Fn)))
1818     return F->getIntrinsicID();
1819   return 0;
1820 }
1821 
1822 unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn) {
1823   return unwrap<Function>(Fn)->getCallingConv();
1824 }
1825 
1826 void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC) {
1827   return unwrap<Function>(Fn)->setCallingConv(
1828     static_cast<CallingConv::ID>(CC));
1829 }
1830 
1831 const char *LLVMGetGC(LLVMValueRef Fn) {
1832   Function *F = unwrap<Function>(Fn);
1833   return F->hasGC()? F->getGC().c_str() : nullptr;
1834 }
1835 
1836 void LLVMSetGC(LLVMValueRef Fn, const char *GC) {
1837   Function *F = unwrap<Function>(Fn);
1838   if (GC)
1839     F->setGC(GC);
1840   else
1841     F->clearGC();
1842 }
1843 
1844 void LLVMAddAttributeAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
1845                              LLVMAttributeRef A) {
1846   unwrap<Function>(F)->addAttribute(Idx, unwrap(A));
1847 }
1848 
1849 unsigned LLVMGetAttributeCountAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx) {
1850   auto *ASN = AttributeSetNode::get(unwrap<Function>(F)->getAttributes(), Idx);
1851   if (!ASN)
1852     return 0;
1853   return ASN->getNumAttributes();
1854 }
1855 
1856 void LLVMGetAttributesAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
1857                               LLVMAttributeRef *Attrs) {
1858   auto *ASN = AttributeSetNode::get(unwrap<Function>(F)->getAttributes(), Idx);
1859   if (!ASN)
1860     return;
1861   for (auto A: make_range(ASN->begin(), ASN->end()))
1862     *Attrs++ = wrap(A);
1863 }
1864 
1865 LLVMAttributeRef LLVMGetEnumAttributeAtIndex(LLVMValueRef F,
1866                                              LLVMAttributeIndex Idx,
1867                                              unsigned KindID) {
1868   return wrap(unwrap<Function>(F)->getAttribute(Idx,
1869                                                 (Attribute::AttrKind)KindID));
1870 }
1871 
1872 LLVMAttributeRef LLVMGetStringAttributeAtIndex(LLVMValueRef F,
1873                                                LLVMAttributeIndex Idx,
1874                                                const char *K, unsigned KLen) {
1875   return wrap(unwrap<Function>(F)->getAttribute(Idx, StringRef(K, KLen)));
1876 }
1877 
1878 void LLVMRemoveEnumAttributeAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
1879                                     unsigned KindID) {
1880   unwrap<Function>(F)->removeAttribute(Idx, (Attribute::AttrKind)KindID);
1881 }
1882 
1883 void LLVMRemoveStringAttributeAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
1884                                       const char *K, unsigned KLen) {
1885   unwrap<Function>(F)->removeAttribute(Idx, StringRef(K, KLen));
1886 }
1887 
1888 void LLVMAddTargetDependentFunctionAttr(LLVMValueRef Fn, const char *A,
1889                                         const char *V) {
1890   Function *Func = unwrap<Function>(Fn);
1891   AttributeSet::AttrIndex Idx =
1892     AttributeSet::AttrIndex(AttributeSet::FunctionIndex);
1893   AttrBuilder B;
1894 
1895   B.addAttribute(A, V);
1896   AttributeSet Set = AttributeSet::get(Func->getContext(), Idx, B);
1897   Func->addAttributes(Idx, Set);
1898 }
1899 
1900 /*--.. Operations on parameters ............................................--*/
1901 
1902 unsigned LLVMCountParams(LLVMValueRef FnRef) {
1903   // This function is strictly redundant to
1904   //   LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
1905   return unwrap<Function>(FnRef)->arg_size();
1906 }
1907 
1908 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) {
1909   Function *Fn = unwrap<Function>(FnRef);
1910   for (Function::arg_iterator I = Fn->arg_begin(),
1911                               E = Fn->arg_end(); I != E; I++)
1912     *ParamRefs++ = wrap(&*I);
1913 }
1914 
1915 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) {
1916   Function *Fn = unwrap<Function>(FnRef);
1917   return wrap(&Fn->arg_begin()[index]);
1918 }
1919 
1920 LLVMValueRef LLVMGetParamParent(LLVMValueRef V) {
1921   return wrap(unwrap<Argument>(V)->getParent());
1922 }
1923 
1924 LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn) {
1925   Function *Func = unwrap<Function>(Fn);
1926   Function::arg_iterator I = Func->arg_begin();
1927   if (I == Func->arg_end())
1928     return nullptr;
1929   return wrap(&*I);
1930 }
1931 
1932 LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn) {
1933   Function *Func = unwrap<Function>(Fn);
1934   Function::arg_iterator I = Func->arg_end();
1935   if (I == Func->arg_begin())
1936     return nullptr;
1937   return wrap(&*--I);
1938 }
1939 
1940 LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg) {
1941   Argument *A = unwrap<Argument>(Arg);
1942   Function *Fn = A->getParent();
1943   if (A->getArgNo() + 1 >= Fn->arg_size())
1944     return nullptr;
1945   return wrap(&Fn->arg_begin()[A->getArgNo() + 1]);
1946 }
1947 
1948 LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg) {
1949   Argument *A = unwrap<Argument>(Arg);
1950   if (A->getArgNo() == 0)
1951     return nullptr;
1952   return wrap(&A->getParent()->arg_begin()[A->getArgNo() - 1]);
1953 }
1954 
1955 void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align) {
1956   Argument *A = unwrap<Argument>(Arg);
1957   AttrBuilder B;
1958   B.addAlignmentAttr(align);
1959   A->addAttr(AttributeSet::get(A->getContext(),A->getArgNo() + 1, B));
1960 }
1961 
1962 /*--.. Operations on basic blocks ..........................................--*/
1963 
1964 LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB) {
1965   return wrap(static_cast<Value*>(unwrap(BB)));
1966 }
1967 
1968 LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val) {
1969   return isa<BasicBlock>(unwrap(Val));
1970 }
1971 
1972 LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val) {
1973   return wrap(unwrap<BasicBlock>(Val));
1974 }
1975 
1976 const char *LLVMGetBasicBlockName(LLVMBasicBlockRef BB) {
1977   return unwrap(BB)->getName().data();
1978 }
1979 
1980 LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB) {
1981   return wrap(unwrap(BB)->getParent());
1982 }
1983 
1984 LLVMValueRef LLVMGetBasicBlockTerminator(LLVMBasicBlockRef BB) {
1985   return wrap(unwrap(BB)->getTerminator());
1986 }
1987 
1988 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) {
1989   return unwrap<Function>(FnRef)->size();
1990 }
1991 
1992 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){
1993   Function *Fn = unwrap<Function>(FnRef);
1994   for (BasicBlock &BB : *Fn)
1995     *BasicBlocksRefs++ = wrap(&BB);
1996 }
1997 
1998 LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn) {
1999   return wrap(&unwrap<Function>(Fn)->getEntryBlock());
2000 }
2001 
2002 LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn) {
2003   Function *Func = unwrap<Function>(Fn);
2004   Function::iterator I = Func->begin();
2005   if (I == Func->end())
2006     return nullptr;
2007   return wrap(&*I);
2008 }
2009 
2010 LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn) {
2011   Function *Func = unwrap<Function>(Fn);
2012   Function::iterator I = Func->end();
2013   if (I == Func->begin())
2014     return nullptr;
2015   return wrap(&*--I);
2016 }
2017 
2018 LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB) {
2019   BasicBlock *Block = unwrap(BB);
2020   Function::iterator I(Block);
2021   if (++I == Block->getParent()->end())
2022     return nullptr;
2023   return wrap(&*I);
2024 }
2025 
2026 LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB) {
2027   BasicBlock *Block = unwrap(BB);
2028   Function::iterator I(Block);
2029   if (I == Block->getParent()->begin())
2030     return nullptr;
2031   return wrap(&*--I);
2032 }
2033 
2034 LLVMBasicBlockRef LLVMAppendBasicBlockInContext(LLVMContextRef C,
2035                                                 LLVMValueRef FnRef,
2036                                                 const char *Name) {
2037   return wrap(BasicBlock::Create(*unwrap(C), Name, unwrap<Function>(FnRef)));
2038 }
2039 
2040 LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef FnRef, const char *Name) {
2041   return LLVMAppendBasicBlockInContext(LLVMGetGlobalContext(), FnRef, Name);
2042 }
2043 
2044 LLVMBasicBlockRef LLVMInsertBasicBlockInContext(LLVMContextRef C,
2045                                                 LLVMBasicBlockRef BBRef,
2046                                                 const char *Name) {
2047   BasicBlock *BB = unwrap(BBRef);
2048   return wrap(BasicBlock::Create(*unwrap(C), Name, BB->getParent(), BB));
2049 }
2050 
2051 LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef BBRef,
2052                                        const char *Name) {
2053   return LLVMInsertBasicBlockInContext(LLVMGetGlobalContext(), BBRef, Name);
2054 }
2055 
2056 void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef) {
2057   unwrap(BBRef)->eraseFromParent();
2058 }
2059 
2060 void LLVMRemoveBasicBlockFromParent(LLVMBasicBlockRef BBRef) {
2061   unwrap(BBRef)->removeFromParent();
2062 }
2063 
2064 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
2065   unwrap(BB)->moveBefore(unwrap(MovePos));
2066 }
2067 
2068 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
2069   unwrap(BB)->moveAfter(unwrap(MovePos));
2070 }
2071 
2072 /*--.. Operations on instructions ..........................................--*/
2073 
2074 LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst) {
2075   return wrap(unwrap<Instruction>(Inst)->getParent());
2076 }
2077 
2078 LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB) {
2079   BasicBlock *Block = unwrap(BB);
2080   BasicBlock::iterator I = Block->begin();
2081   if (I == Block->end())
2082     return nullptr;
2083   return wrap(&*I);
2084 }
2085 
2086 LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB) {
2087   BasicBlock *Block = unwrap(BB);
2088   BasicBlock::iterator I = Block->end();
2089   if (I == Block->begin())
2090     return nullptr;
2091   return wrap(&*--I);
2092 }
2093 
2094 LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst) {
2095   Instruction *Instr = unwrap<Instruction>(Inst);
2096   BasicBlock::iterator I(Instr);
2097   if (++I == Instr->getParent()->end())
2098     return nullptr;
2099   return wrap(&*I);
2100 }
2101 
2102 LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst) {
2103   Instruction *Instr = unwrap<Instruction>(Inst);
2104   BasicBlock::iterator I(Instr);
2105   if (I == Instr->getParent()->begin())
2106     return nullptr;
2107   return wrap(&*--I);
2108 }
2109 
2110 void LLVMInstructionRemoveFromParent(LLVMValueRef Inst) {
2111   unwrap<Instruction>(Inst)->removeFromParent();
2112 }
2113 
2114 void LLVMInstructionEraseFromParent(LLVMValueRef Inst) {
2115   unwrap<Instruction>(Inst)->eraseFromParent();
2116 }
2117 
2118 LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst) {
2119   if (ICmpInst *I = dyn_cast<ICmpInst>(unwrap(Inst)))
2120     return (LLVMIntPredicate)I->getPredicate();
2121   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
2122     if (CE->getOpcode() == Instruction::ICmp)
2123       return (LLVMIntPredicate)CE->getPredicate();
2124   return (LLVMIntPredicate)0;
2125 }
2126 
2127 LLVMRealPredicate LLVMGetFCmpPredicate(LLVMValueRef Inst) {
2128   if (FCmpInst *I = dyn_cast<FCmpInst>(unwrap(Inst)))
2129     return (LLVMRealPredicate)I->getPredicate();
2130   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
2131     if (CE->getOpcode() == Instruction::FCmp)
2132       return (LLVMRealPredicate)CE->getPredicate();
2133   return (LLVMRealPredicate)0;
2134 }
2135 
2136 LLVMOpcode LLVMGetInstructionOpcode(LLVMValueRef Inst) {
2137   if (Instruction *C = dyn_cast<Instruction>(unwrap(Inst)))
2138     return map_to_llvmopcode(C->getOpcode());
2139   return (LLVMOpcode)0;
2140 }
2141 
2142 LLVMValueRef LLVMInstructionClone(LLVMValueRef Inst) {
2143   if (Instruction *C = dyn_cast<Instruction>(unwrap(Inst)))
2144     return wrap(C->clone());
2145   return nullptr;
2146 }
2147 
2148 /*--.. Call and invoke instructions ........................................--*/
2149 
2150 unsigned LLVMGetNumArgOperands(LLVMValueRef Instr) {
2151   return CallSite(unwrap<Instruction>(Instr)).getNumArgOperands();
2152 }
2153 
2154 unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) {
2155   return CallSite(unwrap<Instruction>(Instr)).getCallingConv();
2156 }
2157 
2158 void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) {
2159   return CallSite(unwrap<Instruction>(Instr))
2160     .setCallingConv(static_cast<CallingConv::ID>(CC));
2161 }
2162 
2163 void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
2164                                 unsigned align) {
2165   CallSite Call = CallSite(unwrap<Instruction>(Instr));
2166   AttrBuilder B;
2167   B.addAlignmentAttr(align);
2168   Call.setAttributes(Call.getAttributes()
2169                        .addAttributes(Call->getContext(), index,
2170                                       AttributeSet::get(Call->getContext(),
2171                                                         index, B)));
2172 }
2173 
2174 void LLVMAddCallSiteAttribute(LLVMValueRef C, LLVMAttributeIndex Idx,
2175                               LLVMAttributeRef A) {
2176   CallSite(unwrap<Instruction>(C)).addAttribute(Idx, unwrap(A));
2177 }
2178 
2179 unsigned LLVMGetCallSiteAttributeCount(LLVMValueRef C,
2180                                        LLVMAttributeIndex Idx) {
2181   auto CS = CallSite(unwrap<Instruction>(C));
2182   auto *ASN = AttributeSetNode::get(CS.getAttributes(), Idx);
2183   if (!ASN)
2184     return 0;
2185   return ASN->getNumAttributes();
2186 }
2187 
2188 void LLVMGetCallSiteAttributes(LLVMValueRef C, LLVMAttributeIndex Idx,
2189                                LLVMAttributeRef *Attrs) {
2190   auto CS = CallSite(unwrap<Instruction>(C));
2191   auto *ASN = AttributeSetNode::get(CS.getAttributes(), Idx);
2192   if (!ASN)
2193     return;
2194   for (auto A: make_range(ASN->begin(), ASN->end()))
2195     *Attrs++ = wrap(A);
2196 }
2197 
2198 LLVMAttributeRef LLVMGetCallSiteEnumAttribute(LLVMValueRef C,
2199                                               LLVMAttributeIndex Idx,
2200                                               unsigned KindID) {
2201   return wrap(CallSite(unwrap<Instruction>(C))
2202     .getAttribute(Idx, (Attribute::AttrKind)KindID));
2203 }
2204 
2205 LLVMAttributeRef LLVMGetCallSiteStringAttribute(LLVMValueRef C,
2206                                                 LLVMAttributeIndex Idx,
2207                                                 const char *K, unsigned KLen) {
2208   return wrap(CallSite(unwrap<Instruction>(C))
2209     .getAttribute(Idx, StringRef(K, KLen)));
2210 }
2211 
2212 void LLVMRemoveCallSiteEnumAttribute(LLVMValueRef C, LLVMAttributeIndex Idx,
2213                                      unsigned KindID) {
2214   CallSite(unwrap<Instruction>(C))
2215     .removeAttribute(Idx, (Attribute::AttrKind)KindID);
2216 }
2217 
2218 void LLVMRemoveCallSiteStringAttribute(LLVMValueRef C, LLVMAttributeIndex Idx,
2219                                        const char *K, unsigned KLen) {
2220   CallSite(unwrap<Instruction>(C)).removeAttribute(Idx, StringRef(K, KLen));
2221 }
2222 
2223 LLVMValueRef LLVMGetCalledValue(LLVMValueRef Instr) {
2224   return wrap(CallSite(unwrap<Instruction>(Instr)).getCalledValue());
2225 }
2226 
2227 /*--.. Operations on call instructions (only) ..............................--*/
2228 
2229 LLVMBool LLVMIsTailCall(LLVMValueRef Call) {
2230   return unwrap<CallInst>(Call)->isTailCall();
2231 }
2232 
2233 void LLVMSetTailCall(LLVMValueRef Call, LLVMBool isTailCall) {
2234   unwrap<CallInst>(Call)->setTailCall(isTailCall);
2235 }
2236 
2237 /*--.. Operations on invoke instructions (only) ............................--*/
2238 
2239 LLVMBasicBlockRef LLVMGetNormalDest(LLVMValueRef Invoke) {
2240   return wrap(unwrap<InvokeInst>(Invoke)->getNormalDest());
2241 }
2242 
2243 LLVMBasicBlockRef LLVMGetUnwindDest(LLVMValueRef Invoke) {
2244   return wrap(unwrap<InvokeInst>(Invoke)->getUnwindDest());
2245 }
2246 
2247 void LLVMSetNormalDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) {
2248   unwrap<InvokeInst>(Invoke)->setNormalDest(unwrap(B));
2249 }
2250 
2251 void LLVMSetUnwindDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) {
2252   unwrap<InvokeInst>(Invoke)->setUnwindDest(unwrap(B));
2253 }
2254 
2255 /*--.. Operations on terminators ...........................................--*/
2256 
2257 unsigned LLVMGetNumSuccessors(LLVMValueRef Term) {
2258   return unwrap<TerminatorInst>(Term)->getNumSuccessors();
2259 }
2260 
2261 LLVMBasicBlockRef LLVMGetSuccessor(LLVMValueRef Term, unsigned i) {
2262   return wrap(unwrap<TerminatorInst>(Term)->getSuccessor(i));
2263 }
2264 
2265 void LLVMSetSuccessor(LLVMValueRef Term, unsigned i, LLVMBasicBlockRef block) {
2266   return unwrap<TerminatorInst>(Term)->setSuccessor(i,unwrap(block));
2267 }
2268 
2269 /*--.. Operations on branch instructions (only) ............................--*/
2270 
2271 LLVMBool LLVMIsConditional(LLVMValueRef Branch) {
2272   return unwrap<BranchInst>(Branch)->isConditional();
2273 }
2274 
2275 LLVMValueRef LLVMGetCondition(LLVMValueRef Branch) {
2276   return wrap(unwrap<BranchInst>(Branch)->getCondition());
2277 }
2278 
2279 void LLVMSetCondition(LLVMValueRef Branch, LLVMValueRef Cond) {
2280   return unwrap<BranchInst>(Branch)->setCondition(unwrap(Cond));
2281 }
2282 
2283 /*--.. Operations on switch instructions (only) ............................--*/
2284 
2285 LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) {
2286   return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
2287 }
2288 
2289 /*--.. Operations on alloca instructions (only) ............................--*/
2290 
2291 LLVMTypeRef LLVMGetAllocatedType(LLVMValueRef Alloca) {
2292   return wrap(unwrap<AllocaInst>(Alloca)->getAllocatedType());
2293 }
2294 
2295 /*--.. Operations on gep instructions (only) ...............................--*/
2296 
2297 LLVMBool LLVMIsInBounds(LLVMValueRef GEP) {
2298   return unwrap<GetElementPtrInst>(GEP)->isInBounds();
2299 }
2300 
2301 void LLVMSetIsInBounds(LLVMValueRef GEP, LLVMBool InBounds) {
2302   return unwrap<GetElementPtrInst>(GEP)->setIsInBounds(InBounds);
2303 }
2304 
2305 /*--.. Operations on phi nodes .............................................--*/
2306 
2307 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
2308                      LLVMBasicBlockRef *IncomingBlocks, unsigned Count) {
2309   PHINode *PhiVal = unwrap<PHINode>(PhiNode);
2310   for (unsigned I = 0; I != Count; ++I)
2311     PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I]));
2312 }
2313 
2314 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
2315   return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
2316 }
2317 
2318 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
2319   return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
2320 }
2321 
2322 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
2323   return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));
2324 }
2325 
2326 /*--.. Operations on extractvalue and insertvalue nodes ....................--*/
2327 
2328 unsigned LLVMGetNumIndices(LLVMValueRef Inst) {
2329   auto *I = unwrap(Inst);
2330   if (auto *GEP = dyn_cast<GetElementPtrInst>(I))
2331     return GEP->getNumIndices();
2332   if (auto *EV = dyn_cast<ExtractValueInst>(I))
2333     return EV->getNumIndices();
2334   if (auto *IV = dyn_cast<InsertValueInst>(I))
2335     return IV->getNumIndices();
2336   llvm_unreachable(
2337     "LLVMGetNumIndices applies only to extractvalue and insertvalue!");
2338 }
2339 
2340 const unsigned *LLVMGetIndices(LLVMValueRef Inst) {
2341   auto *I = unwrap(Inst);
2342   if (auto *EV = dyn_cast<ExtractValueInst>(I))
2343     return EV->getIndices().data();
2344   if (auto *IV = dyn_cast<InsertValueInst>(I))
2345     return IV->getIndices().data();
2346   llvm_unreachable(
2347     "LLVMGetIndices applies only to extractvalue and insertvalue!");
2348 }
2349 
2350 
2351 /*===-- Instruction builders ----------------------------------------------===*/
2352 
2353 LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C) {
2354   return wrap(new IRBuilder<>(*unwrap(C)));
2355 }
2356 
2357 LLVMBuilderRef LLVMCreateBuilder(void) {
2358   return LLVMCreateBuilderInContext(LLVMGetGlobalContext());
2359 }
2360 
2361 void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
2362                          LLVMValueRef Instr) {
2363   BasicBlock *BB = unwrap(Block);
2364   auto I = Instr ? unwrap<Instruction>(Instr)->getIterator() : BB->end();
2365   unwrap(Builder)->SetInsertPoint(BB, I);
2366 }
2367 
2368 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) {
2369   Instruction *I = unwrap<Instruction>(Instr);
2370   unwrap(Builder)->SetInsertPoint(I->getParent(), I->getIterator());
2371 }
2372 
2373 void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block) {
2374   BasicBlock *BB = unwrap(Block);
2375   unwrap(Builder)->SetInsertPoint(BB);
2376 }
2377 
2378 LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder) {
2379    return wrap(unwrap(Builder)->GetInsertBlock());
2380 }
2381 
2382 void LLVMClearInsertionPosition(LLVMBuilderRef Builder) {
2383   unwrap(Builder)->ClearInsertionPoint();
2384 }
2385 
2386 void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr) {
2387   unwrap(Builder)->Insert(unwrap<Instruction>(Instr));
2388 }
2389 
2390 void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr,
2391                                    const char *Name) {
2392   unwrap(Builder)->Insert(unwrap<Instruction>(Instr), Name);
2393 }
2394 
2395 void LLVMDisposeBuilder(LLVMBuilderRef Builder) {
2396   delete unwrap(Builder);
2397 }
2398 
2399 /*--.. Metadata builders ...................................................--*/
2400 
2401 void LLVMSetCurrentDebugLocation(LLVMBuilderRef Builder, LLVMValueRef L) {
2402   MDNode *Loc =
2403       L ? cast<MDNode>(unwrap<MetadataAsValue>(L)->getMetadata()) : nullptr;
2404   unwrap(Builder)->SetCurrentDebugLocation(DebugLoc(Loc));
2405 }
2406 
2407 LLVMValueRef LLVMGetCurrentDebugLocation(LLVMBuilderRef Builder) {
2408   LLVMContext &Context = unwrap(Builder)->getContext();
2409   return wrap(MetadataAsValue::get(
2410       Context, unwrap(Builder)->getCurrentDebugLocation().getAsMDNode()));
2411 }
2412 
2413 void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst) {
2414   unwrap(Builder)->SetInstDebugLocation(unwrap<Instruction>(Inst));
2415 }
2416 
2417 
2418 /*--.. Instruction builders ................................................--*/
2419 
2420 LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef B) {
2421   return wrap(unwrap(B)->CreateRetVoid());
2422 }
2423 
2424 LLVMValueRef LLVMBuildRet(LLVMBuilderRef B, LLVMValueRef V) {
2425   return wrap(unwrap(B)->CreateRet(unwrap(V)));
2426 }
2427 
2428 LLVMValueRef LLVMBuildAggregateRet(LLVMBuilderRef B, LLVMValueRef *RetVals,
2429                                    unsigned N) {
2430   return wrap(unwrap(B)->CreateAggregateRet(unwrap(RetVals), N));
2431 }
2432 
2433 LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) {
2434   return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
2435 }
2436 
2437 LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If,
2438                              LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
2439   return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
2440 }
2441 
2442 LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V,
2443                              LLVMBasicBlockRef Else, unsigned NumCases) {
2444   return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
2445 }
2446 
2447 LLVMValueRef LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr,
2448                                  unsigned NumDests) {
2449   return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
2450 }
2451 
2452 LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn,
2453                              LLVMValueRef *Args, unsigned NumArgs,
2454                              LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
2455                              const char *Name) {
2456   return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
2457                                       makeArrayRef(unwrap(Args), NumArgs),
2458                                       Name));
2459 }
2460 
2461 LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty,
2462                                  LLVMValueRef PersFn, unsigned NumClauses,
2463                                  const char *Name) {
2464   // The personality used to live on the landingpad instruction, but now it
2465   // lives on the parent function. For compatibility, take the provided
2466   // personality and put it on the parent function.
2467   if (PersFn)
2468     unwrap(B)->GetInsertBlock()->getParent()->setPersonalityFn(
2469         cast<Function>(unwrap(PersFn)));
2470   return wrap(unwrap(B)->CreateLandingPad(unwrap(Ty), NumClauses, Name));
2471 }
2472 
2473 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) {
2474   return wrap(unwrap(B)->CreateResume(unwrap(Exn)));
2475 }
2476 
2477 LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef B) {
2478   return wrap(unwrap(B)->CreateUnreachable());
2479 }
2480 
2481 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
2482                  LLVMBasicBlockRef Dest) {
2483   unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
2484 }
2485 
2486 void LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest) {
2487   unwrap<IndirectBrInst>(IndirectBr)->addDestination(unwrap(Dest));
2488 }
2489 
2490 unsigned LLVMGetNumClauses(LLVMValueRef LandingPad) {
2491   return unwrap<LandingPadInst>(LandingPad)->getNumClauses();
2492 }
2493 
2494 LLVMValueRef LLVMGetClause(LLVMValueRef LandingPad, unsigned Idx) {
2495   return wrap(unwrap<LandingPadInst>(LandingPad)->getClause(Idx));
2496 }
2497 
2498 void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal) {
2499   unwrap<LandingPadInst>(LandingPad)->
2500     addClause(cast<Constant>(unwrap(ClauseVal)));
2501 }
2502 
2503 LLVMBool LLVMIsCleanup(LLVMValueRef LandingPad) {
2504   return unwrap<LandingPadInst>(LandingPad)->isCleanup();
2505 }
2506 
2507 void LLVMSetCleanup(LLVMValueRef LandingPad, LLVMBool Val) {
2508   unwrap<LandingPadInst>(LandingPad)->setCleanup(Val);
2509 }
2510 
2511 /*--.. Arithmetic ..........................................................--*/
2512 
2513 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2514                           const char *Name) {
2515   return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
2516 }
2517 
2518 LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2519                           const char *Name) {
2520   return wrap(unwrap(B)->CreateNSWAdd(unwrap(LHS), unwrap(RHS), Name));
2521 }
2522 
2523 LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2524                           const char *Name) {
2525   return wrap(unwrap(B)->CreateNUWAdd(unwrap(LHS), unwrap(RHS), Name));
2526 }
2527 
2528 LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2529                           const char *Name) {
2530   return wrap(unwrap(B)->CreateFAdd(unwrap(LHS), unwrap(RHS), Name));
2531 }
2532 
2533 LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2534                           const char *Name) {
2535   return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwrap(RHS), Name));
2536 }
2537 
2538 LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2539                           const char *Name) {
2540   return wrap(unwrap(B)->CreateNSWSub(unwrap(LHS), unwrap(RHS), Name));
2541 }
2542 
2543 LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2544                           const char *Name) {
2545   return wrap(unwrap(B)->CreateNUWSub(unwrap(LHS), unwrap(RHS), Name));
2546 }
2547 
2548 LLVMValueRef LLVMBuildFSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2549                           const char *Name) {
2550   return wrap(unwrap(B)->CreateFSub(unwrap(LHS), unwrap(RHS), Name));
2551 }
2552 
2553 LLVMValueRef LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2554                           const char *Name) {
2555   return wrap(unwrap(B)->CreateMul(unwrap(LHS), unwrap(RHS), Name));
2556 }
2557 
2558 LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2559                           const char *Name) {
2560   return wrap(unwrap(B)->CreateNSWMul(unwrap(LHS), unwrap(RHS), Name));
2561 }
2562 
2563 LLVMValueRef LLVMBuildNUWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2564                           const char *Name) {
2565   return wrap(unwrap(B)->CreateNUWMul(unwrap(LHS), unwrap(RHS), Name));
2566 }
2567 
2568 LLVMValueRef LLVMBuildFMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2569                           const char *Name) {
2570   return wrap(unwrap(B)->CreateFMul(unwrap(LHS), unwrap(RHS), Name));
2571 }
2572 
2573 LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2574                            const char *Name) {
2575   return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
2576 }
2577 
2578 LLVMValueRef LLVMBuildExactUDiv(LLVMBuilderRef B, LLVMValueRef LHS,
2579                                 LLVMValueRef RHS, const char *Name) {
2580   return wrap(unwrap(B)->CreateExactUDiv(unwrap(LHS), unwrap(RHS), Name));
2581 }
2582 
2583 LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2584                            const char *Name) {
2585   return wrap(unwrap(B)->CreateSDiv(unwrap(LHS), unwrap(RHS), Name));
2586 }
2587 
2588 LLVMValueRef LLVMBuildExactSDiv(LLVMBuilderRef B, LLVMValueRef LHS,
2589                                 LLVMValueRef RHS, const char *Name) {
2590   return wrap(unwrap(B)->CreateExactSDiv(unwrap(LHS), unwrap(RHS), Name));
2591 }
2592 
2593 LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2594                            const char *Name) {
2595   return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
2596 }
2597 
2598 LLVMValueRef LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2599                            const char *Name) {
2600   return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
2601 }
2602 
2603 LLVMValueRef LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2604                            const char *Name) {
2605   return wrap(unwrap(B)->CreateSRem(unwrap(LHS), unwrap(RHS), Name));
2606 }
2607 
2608 LLVMValueRef LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2609                            const char *Name) {
2610   return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name));
2611 }
2612 
2613 LLVMValueRef LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2614                           const char *Name) {
2615   return wrap(unwrap(B)->CreateShl(unwrap(LHS), unwrap(RHS), Name));
2616 }
2617 
2618 LLVMValueRef LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2619                            const char *Name) {
2620   return wrap(unwrap(B)->CreateLShr(unwrap(LHS), unwrap(RHS), Name));
2621 }
2622 
2623 LLVMValueRef LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2624                            const char *Name) {
2625   return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
2626 }
2627 
2628 LLVMValueRef LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2629                           const char *Name) {
2630   return wrap(unwrap(B)->CreateAnd(unwrap(LHS), unwrap(RHS), Name));
2631 }
2632 
2633 LLVMValueRef LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2634                          const char *Name) {
2635   return wrap(unwrap(B)->CreateOr(unwrap(LHS), unwrap(RHS), Name));
2636 }
2637 
2638 LLVMValueRef LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
2639                           const char *Name) {
2640   return wrap(unwrap(B)->CreateXor(unwrap(LHS), unwrap(RHS), Name));
2641 }
2642 
2643 LLVMValueRef LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op,
2644                             LLVMValueRef LHS, LLVMValueRef RHS,
2645                             const char *Name) {
2646   return wrap(unwrap(B)->CreateBinOp(Instruction::BinaryOps(map_from_llvmopcode(Op)), unwrap(LHS),
2647                                      unwrap(RHS), Name));
2648 }
2649 
2650 LLVMValueRef LLVMBuildNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
2651   return wrap(unwrap(B)->CreateNeg(unwrap(V), Name));
2652 }
2653 
2654 LLVMValueRef LLVMBuildNSWNeg(LLVMBuilderRef B, LLVMValueRef V,
2655                              const char *Name) {
2656   return wrap(unwrap(B)->CreateNSWNeg(unwrap(V), Name));
2657 }
2658 
2659 LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B, LLVMValueRef V,
2660                              const char *Name) {
2661   return wrap(unwrap(B)->CreateNUWNeg(unwrap(V), Name));
2662 }
2663 
2664 LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
2665   return wrap(unwrap(B)->CreateFNeg(unwrap(V), Name));
2666 }
2667 
2668 LLVMValueRef LLVMBuildNot(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
2669   return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
2670 }
2671 
2672 /*--.. Memory ..............................................................--*/
2673 
2674 LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
2675                              const char *Name) {
2676   Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
2677   Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
2678   AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2679   Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
2680                                                ITy, unwrap(Ty), AllocSize,
2681                                                nullptr, nullptr, "");
2682   return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
2683 }
2684 
2685 LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
2686                                   LLVMValueRef Val, const char *Name) {
2687   Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
2688   Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
2689   AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2690   Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
2691                                                ITy, unwrap(Ty), AllocSize,
2692                                                unwrap(Val), nullptr, "");
2693   return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
2694 }
2695 
2696 LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
2697                              const char *Name) {
2698   return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), nullptr, Name));
2699 }
2700 
2701 LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
2702                                   LLVMValueRef Val, const char *Name) {
2703   return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name));
2704 }
2705 
2706 LLVMValueRef LLVMBuildFree(LLVMBuilderRef B, LLVMValueRef PointerVal) {
2707   return wrap(unwrap(B)->Insert(
2708      CallInst::CreateFree(unwrap(PointerVal), unwrap(B)->GetInsertBlock())));
2709 }
2710 
2711 LLVMValueRef LLVMBuildLoad(LLVMBuilderRef B, LLVMValueRef PointerVal,
2712                            const char *Name) {
2713   return wrap(unwrap(B)->CreateLoad(unwrap(PointerVal), Name));
2714 }
2715 
2716 LLVMValueRef LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val,
2717                             LLVMValueRef PointerVal) {
2718   return wrap(unwrap(B)->CreateStore(unwrap(Val), unwrap(PointerVal)));
2719 }
2720 
2721 static AtomicOrdering mapFromLLVMOrdering(LLVMAtomicOrdering Ordering) {
2722   switch (Ordering) {
2723     case LLVMAtomicOrderingNotAtomic: return AtomicOrdering::NotAtomic;
2724     case LLVMAtomicOrderingUnordered: return AtomicOrdering::Unordered;
2725     case LLVMAtomicOrderingMonotonic: return AtomicOrdering::Monotonic;
2726     case LLVMAtomicOrderingAcquire: return AtomicOrdering::Acquire;
2727     case LLVMAtomicOrderingRelease: return AtomicOrdering::Release;
2728     case LLVMAtomicOrderingAcquireRelease:
2729       return AtomicOrdering::AcquireRelease;
2730     case LLVMAtomicOrderingSequentiallyConsistent:
2731       return AtomicOrdering::SequentiallyConsistent;
2732   }
2733 
2734   llvm_unreachable("Invalid LLVMAtomicOrdering value!");
2735 }
2736 
2737 static LLVMAtomicOrdering mapToLLVMOrdering(AtomicOrdering Ordering) {
2738   switch (Ordering) {
2739     case AtomicOrdering::NotAtomic: return LLVMAtomicOrderingNotAtomic;
2740     case AtomicOrdering::Unordered: return LLVMAtomicOrderingUnordered;
2741     case AtomicOrdering::Monotonic: return LLVMAtomicOrderingMonotonic;
2742     case AtomicOrdering::Acquire: return LLVMAtomicOrderingAcquire;
2743     case AtomicOrdering::Release: return LLVMAtomicOrderingRelease;
2744     case AtomicOrdering::AcquireRelease:
2745       return LLVMAtomicOrderingAcquireRelease;
2746     case AtomicOrdering::SequentiallyConsistent:
2747       return LLVMAtomicOrderingSequentiallyConsistent;
2748   }
2749 
2750   llvm_unreachable("Invalid AtomicOrdering value!");
2751 }
2752 
2753 LLVMValueRef LLVMBuildFence(LLVMBuilderRef B, LLVMAtomicOrdering Ordering,
2754                             LLVMBool isSingleThread, const char *Name) {
2755   return wrap(
2756     unwrap(B)->CreateFence(mapFromLLVMOrdering(Ordering),
2757                            isSingleThread ? SingleThread : CrossThread,
2758                            Name));
2759 }
2760 
2761 LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2762                           LLVMValueRef *Indices, unsigned NumIndices,
2763                           const char *Name) {
2764   ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
2765   return wrap(unwrap(B)->CreateGEP(nullptr, unwrap(Pointer), IdxList, Name));
2766 }
2767 
2768 LLVMValueRef LLVMBuildInBoundsGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2769                                   LLVMValueRef *Indices, unsigned NumIndices,
2770                                   const char *Name) {
2771   ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
2772   return wrap(
2773       unwrap(B)->CreateInBoundsGEP(nullptr, unwrap(Pointer), IdxList, Name));
2774 }
2775 
2776 LLVMValueRef LLVMBuildStructGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2777                                 unsigned Idx, const char *Name) {
2778   return wrap(unwrap(B)->CreateStructGEP(nullptr, unwrap(Pointer), Idx, Name));
2779 }
2780 
2781 LLVMValueRef LLVMBuildGlobalString(LLVMBuilderRef B, const char *Str,
2782                                    const char *Name) {
2783   return wrap(unwrap(B)->CreateGlobalString(Str, Name));
2784 }
2785 
2786 LLVMValueRef LLVMBuildGlobalStringPtr(LLVMBuilderRef B, const char *Str,
2787                                       const char *Name) {
2788   return wrap(unwrap(B)->CreateGlobalStringPtr(Str, Name));
2789 }
2790 
2791 LLVMBool LLVMGetVolatile(LLVMValueRef MemAccessInst) {
2792   Value *P = unwrap<Value>(MemAccessInst);
2793   if (LoadInst *LI = dyn_cast<LoadInst>(P))
2794     return LI->isVolatile();
2795   return cast<StoreInst>(P)->isVolatile();
2796 }
2797 
2798 void LLVMSetVolatile(LLVMValueRef MemAccessInst, LLVMBool isVolatile) {
2799   Value *P = unwrap<Value>(MemAccessInst);
2800   if (LoadInst *LI = dyn_cast<LoadInst>(P))
2801     return LI->setVolatile(isVolatile);
2802   return cast<StoreInst>(P)->setVolatile(isVolatile);
2803 }
2804 
2805 LLVMAtomicOrdering LLVMGetOrdering(LLVMValueRef MemAccessInst) {
2806   Value *P = unwrap<Value>(MemAccessInst);
2807   AtomicOrdering O;
2808   if (LoadInst *LI = dyn_cast<LoadInst>(P))
2809     O = LI->getOrdering();
2810   else
2811     O = cast<StoreInst>(P)->getOrdering();
2812   return mapToLLVMOrdering(O);
2813 }
2814 
2815 void LLVMSetOrdering(LLVMValueRef MemAccessInst, LLVMAtomicOrdering Ordering) {
2816   Value *P = unwrap<Value>(MemAccessInst);
2817   AtomicOrdering O = mapFromLLVMOrdering(Ordering);
2818 
2819   if (LoadInst *LI = dyn_cast<LoadInst>(P))
2820     return LI->setOrdering(O);
2821   return cast<StoreInst>(P)->setOrdering(O);
2822 }
2823 
2824 /*--.. Casts ...............................................................--*/
2825 
2826 LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val,
2827                             LLVMTypeRef DestTy, const char *Name) {
2828   return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
2829 }
2830 
2831 LLVMValueRef LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val,
2832                            LLVMTypeRef DestTy, const char *Name) {
2833   return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
2834 }
2835 
2836 LLVMValueRef LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val,
2837                            LLVMTypeRef DestTy, const char *Name) {
2838   return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
2839 }
2840 
2841 LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val,
2842                              LLVMTypeRef DestTy, const char *Name) {
2843   return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
2844 }
2845 
2846 LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val,
2847                              LLVMTypeRef DestTy, const char *Name) {
2848   return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
2849 }
2850 
2851 LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val,
2852                              LLVMTypeRef DestTy, const char *Name) {
2853   return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
2854 }
2855 
2856 LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val,
2857                              LLVMTypeRef DestTy, const char *Name) {
2858   return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
2859 }
2860 
2861 LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val,
2862                               LLVMTypeRef DestTy, const char *Name) {
2863   return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
2864 }
2865 
2866 LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val,
2867                             LLVMTypeRef DestTy, const char *Name) {
2868   return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
2869 }
2870 
2871 LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val,
2872                                LLVMTypeRef DestTy, const char *Name) {
2873   return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
2874 }
2875 
2876 LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val,
2877                                LLVMTypeRef DestTy, const char *Name) {
2878   return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
2879 }
2880 
2881 LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2882                               LLVMTypeRef DestTy, const char *Name) {
2883   return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
2884 }
2885 
2886 LLVMValueRef LLVMBuildAddrSpaceCast(LLVMBuilderRef B, LLVMValueRef Val,
2887                                     LLVMTypeRef DestTy, const char *Name) {
2888   return wrap(unwrap(B)->CreateAddrSpaceCast(unwrap(Val), unwrap(DestTy), Name));
2889 }
2890 
2891 LLVMValueRef LLVMBuildZExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2892                                     LLVMTypeRef DestTy, const char *Name) {
2893   return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
2894                                              Name));
2895 }
2896 
2897 LLVMValueRef LLVMBuildSExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2898                                     LLVMTypeRef DestTy, const char *Name) {
2899   return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
2900                                              Name));
2901 }
2902 
2903 LLVMValueRef LLVMBuildTruncOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
2904                                      LLVMTypeRef DestTy, const char *Name) {
2905   return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
2906                                               Name));
2907 }
2908 
2909 LLVMValueRef LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val,
2910                            LLVMTypeRef DestTy, const char *Name) {
2911   return wrap(unwrap(B)->CreateCast(Instruction::CastOps(map_from_llvmopcode(Op)), unwrap(Val),
2912                                     unwrap(DestTy), Name));
2913 }
2914 
2915 LLVMValueRef LLVMBuildPointerCast(LLVMBuilderRef B, LLVMValueRef Val,
2916                                   LLVMTypeRef DestTy, const char *Name) {
2917   return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
2918 }
2919 
2920 LLVMValueRef LLVMBuildIntCast(LLVMBuilderRef B, LLVMValueRef Val,
2921                               LLVMTypeRef DestTy, const char *Name) {
2922   return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
2923                                        /*isSigned*/true, Name));
2924 }
2925 
2926 LLVMValueRef LLVMBuildFPCast(LLVMBuilderRef B, LLVMValueRef Val,
2927                              LLVMTypeRef DestTy, const char *Name) {
2928   return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));
2929 }
2930 
2931 /*--.. Comparisons .........................................................--*/
2932 
2933 LLVMValueRef LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op,
2934                            LLVMValueRef LHS, LLVMValueRef RHS,
2935                            const char *Name) {
2936   return wrap(unwrap(B)->CreateICmp(static_cast<ICmpInst::Predicate>(Op),
2937                                     unwrap(LHS), unwrap(RHS), Name));
2938 }
2939 
2940 LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op,
2941                            LLVMValueRef LHS, LLVMValueRef RHS,
2942                            const char *Name) {
2943   return wrap(unwrap(B)->CreateFCmp(static_cast<FCmpInst::Predicate>(Op),
2944                                     unwrap(LHS), unwrap(RHS), Name));
2945 }
2946 
2947 /*--.. Miscellaneous instructions ..........................................--*/
2948 
2949 LLVMValueRef LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) {
2950   return wrap(unwrap(B)->CreatePHI(unwrap(Ty), 0, Name));
2951 }
2952 
2953 LLVMValueRef LLVMBuildCall(LLVMBuilderRef B, LLVMValueRef Fn,
2954                            LLVMValueRef *Args, unsigned NumArgs,
2955                            const char *Name) {
2956   return wrap(unwrap(B)->CreateCall(unwrap(Fn),
2957                                     makeArrayRef(unwrap(Args), NumArgs),
2958                                     Name));
2959 }
2960 
2961 LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If,
2962                              LLVMValueRef Then, LLVMValueRef Else,
2963                              const char *Name) {
2964   return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
2965                                       Name));
2966 }
2967 
2968 LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
2969                             LLVMTypeRef Ty, const char *Name) {
2970   return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
2971 }
2972 
2973 LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef B, LLVMValueRef VecVal,
2974                                       LLVMValueRef Index, const char *Name) {
2975   return wrap(unwrap(B)->CreateExtractElement(unwrap(VecVal), unwrap(Index),
2976                                               Name));
2977 }
2978 
2979 LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef B, LLVMValueRef VecVal,
2980                                     LLVMValueRef EltVal, LLVMValueRef Index,
2981                                     const char *Name) {
2982   return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal),
2983                                              unwrap(Index), Name));
2984 }
2985 
2986 LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef B, LLVMValueRef V1,
2987                                     LLVMValueRef V2, LLVMValueRef Mask,
2988                                     const char *Name) {
2989   return wrap(unwrap(B)->CreateShuffleVector(unwrap(V1), unwrap(V2),
2990                                              unwrap(Mask), Name));
2991 }
2992 
2993 LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef B, LLVMValueRef AggVal,
2994                                    unsigned Index, const char *Name) {
2995   return wrap(unwrap(B)->CreateExtractValue(unwrap(AggVal), Index, Name));
2996 }
2997 
2998 LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef B, LLVMValueRef AggVal,
2999                                   LLVMValueRef EltVal, unsigned Index,
3000                                   const char *Name) {
3001   return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal),
3002                                            Index, Name));
3003 }
3004 
3005 LLVMValueRef LLVMBuildIsNull(LLVMBuilderRef B, LLVMValueRef Val,
3006                              const char *Name) {
3007   return wrap(unwrap(B)->CreateIsNull(unwrap(Val), Name));
3008 }
3009 
3010 LLVMValueRef LLVMBuildIsNotNull(LLVMBuilderRef B, LLVMValueRef Val,
3011                                 const char *Name) {
3012   return wrap(unwrap(B)->CreateIsNotNull(unwrap(Val), Name));
3013 }
3014 
3015 LLVMValueRef LLVMBuildPtrDiff(LLVMBuilderRef B, LLVMValueRef LHS,
3016                               LLVMValueRef RHS, const char *Name) {
3017   return wrap(unwrap(B)->CreatePtrDiff(unwrap(LHS), unwrap(RHS), Name));
3018 }
3019 
3020 LLVMValueRef LLVMBuildAtomicRMW(LLVMBuilderRef B,LLVMAtomicRMWBinOp op,
3021                                LLVMValueRef PTR, LLVMValueRef Val,
3022                                LLVMAtomicOrdering ordering,
3023                                LLVMBool singleThread) {
3024   AtomicRMWInst::BinOp intop;
3025   switch (op) {
3026     case LLVMAtomicRMWBinOpXchg: intop = AtomicRMWInst::Xchg; break;
3027     case LLVMAtomicRMWBinOpAdd: intop = AtomicRMWInst::Add; break;
3028     case LLVMAtomicRMWBinOpSub: intop = AtomicRMWInst::Sub; break;
3029     case LLVMAtomicRMWBinOpAnd: intop = AtomicRMWInst::And; break;
3030     case LLVMAtomicRMWBinOpNand: intop = AtomicRMWInst::Nand; break;
3031     case LLVMAtomicRMWBinOpOr: intop = AtomicRMWInst::Or; break;
3032     case LLVMAtomicRMWBinOpXor: intop = AtomicRMWInst::Xor; break;
3033     case LLVMAtomicRMWBinOpMax: intop = AtomicRMWInst::Max; break;
3034     case LLVMAtomicRMWBinOpMin: intop = AtomicRMWInst::Min; break;
3035     case LLVMAtomicRMWBinOpUMax: intop = AtomicRMWInst::UMax; break;
3036     case LLVMAtomicRMWBinOpUMin: intop = AtomicRMWInst::UMin; break;
3037   }
3038   return wrap(unwrap(B)->CreateAtomicRMW(intop, unwrap(PTR), unwrap(Val),
3039     mapFromLLVMOrdering(ordering), singleThread ? SingleThread : CrossThread));
3040 }
3041 
3042 LLVMValueRef LLVMBuildAtomicCmpXchg(LLVMBuilderRef B, LLVMValueRef Ptr,
3043                                     LLVMValueRef Cmp, LLVMValueRef New,
3044                                     LLVMAtomicOrdering SuccessOrdering,
3045                                     LLVMAtomicOrdering FailureOrdering,
3046                                     LLVMBool singleThread) {
3047 
3048   return wrap(unwrap(B)->CreateAtomicCmpXchg(unwrap(Ptr), unwrap(Cmp),
3049                 unwrap(New), mapFromLLVMOrdering(SuccessOrdering),
3050                 mapFromLLVMOrdering(FailureOrdering),
3051                 singleThread ? SingleThread : CrossThread));
3052 }
3053 
3054 
3055 LLVMBool LLVMIsAtomicSingleThread(LLVMValueRef AtomicInst) {
3056   Value *P = unwrap<Value>(AtomicInst);
3057 
3058   if (AtomicRMWInst *I = dyn_cast<AtomicRMWInst>(P))
3059     return I->getSynchScope() == SingleThread;
3060   return cast<AtomicCmpXchgInst>(P)->getSynchScope() == SingleThread;
3061 }
3062 
3063 void LLVMSetAtomicSingleThread(LLVMValueRef AtomicInst, LLVMBool NewValue) {
3064   Value *P = unwrap<Value>(AtomicInst);
3065   SynchronizationScope Sync = NewValue ? SingleThread : CrossThread;
3066 
3067   if (AtomicRMWInst *I = dyn_cast<AtomicRMWInst>(P))
3068     return I->setSynchScope(Sync);
3069   return cast<AtomicCmpXchgInst>(P)->setSynchScope(Sync);
3070 }
3071 
3072 LLVMAtomicOrdering LLVMGetCmpXchgSuccessOrdering(LLVMValueRef CmpXchgInst)  {
3073   Value *P = unwrap<Value>(CmpXchgInst);
3074   return mapToLLVMOrdering(cast<AtomicCmpXchgInst>(P)->getSuccessOrdering());
3075 }
3076 
3077 void LLVMSetCmpXchgSuccessOrdering(LLVMValueRef CmpXchgInst,
3078                                    LLVMAtomicOrdering Ordering) {
3079   Value *P = unwrap<Value>(CmpXchgInst);
3080   AtomicOrdering O = mapFromLLVMOrdering(Ordering);
3081 
3082   return cast<AtomicCmpXchgInst>(P)->setSuccessOrdering(O);
3083 }
3084 
3085 LLVMAtomicOrdering LLVMGetCmpXchgFailureOrdering(LLVMValueRef CmpXchgInst)  {
3086   Value *P = unwrap<Value>(CmpXchgInst);
3087   return mapToLLVMOrdering(cast<AtomicCmpXchgInst>(P)->getFailureOrdering());
3088 }
3089 
3090 void LLVMSetCmpXchgFailureOrdering(LLVMValueRef CmpXchgInst,
3091                                    LLVMAtomicOrdering Ordering) {
3092   Value *P = unwrap<Value>(CmpXchgInst);
3093   AtomicOrdering O = mapFromLLVMOrdering(Ordering);
3094 
3095   return cast<AtomicCmpXchgInst>(P)->setFailureOrdering(O);
3096 }
3097 
3098 /*===-- Module providers --------------------------------------------------===*/
3099 
3100 LLVMModuleProviderRef
3101 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) {
3102   return reinterpret_cast<LLVMModuleProviderRef>(M);
3103 }
3104 
3105 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) {
3106   delete unwrap(MP);
3107 }
3108 
3109 
3110 /*===-- Memory buffers ----------------------------------------------------===*/
3111 
3112 LLVMBool LLVMCreateMemoryBufferWithContentsOfFile(
3113     const char *Path,
3114     LLVMMemoryBufferRef *OutMemBuf,
3115     char **OutMessage) {
3116 
3117   ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = MemoryBuffer::getFile(Path);
3118   if (std::error_code EC = MBOrErr.getError()) {
3119     *OutMessage = strdup(EC.message().c_str());
3120     return 1;
3121   }
3122   *OutMemBuf = wrap(MBOrErr.get().release());
3123   return 0;
3124 }
3125 
3126 LLVMBool LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
3127                                          char **OutMessage) {
3128   ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = MemoryBuffer::getSTDIN();
3129   if (std::error_code EC = MBOrErr.getError()) {
3130     *OutMessage = strdup(EC.message().c_str());
3131     return 1;
3132   }
3133   *OutMemBuf = wrap(MBOrErr.get().release());
3134   return 0;
3135 }
3136 
3137 LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRange(
3138     const char *InputData,
3139     size_t InputDataLength,
3140     const char *BufferName,
3141     LLVMBool RequiresNullTerminator) {
3142 
3143   return wrap(MemoryBuffer::getMemBuffer(StringRef(InputData, InputDataLength),
3144                                          StringRef(BufferName),
3145                                          RequiresNullTerminator).release());
3146 }
3147 
3148 LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRangeCopy(
3149     const char *InputData,
3150     size_t InputDataLength,
3151     const char *BufferName) {
3152 
3153   return wrap(
3154       MemoryBuffer::getMemBufferCopy(StringRef(InputData, InputDataLength),
3155                                      StringRef(BufferName)).release());
3156 }
3157 
3158 const char *LLVMGetBufferStart(LLVMMemoryBufferRef MemBuf) {
3159   return unwrap(MemBuf)->getBufferStart();
3160 }
3161 
3162 size_t LLVMGetBufferSize(LLVMMemoryBufferRef MemBuf) {
3163   return unwrap(MemBuf)->getBufferSize();
3164 }
3165 
3166 void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf) {
3167   delete unwrap(MemBuf);
3168 }
3169 
3170 /*===-- Pass Registry -----------------------------------------------------===*/
3171 
3172 LLVMPassRegistryRef LLVMGetGlobalPassRegistry(void) {
3173   return wrap(PassRegistry::getPassRegistry());
3174 }
3175 
3176 /*===-- Pass Manager ------------------------------------------------------===*/
3177 
3178 LLVMPassManagerRef LLVMCreatePassManager() {
3179   return wrap(new legacy::PassManager());
3180 }
3181 
3182 LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) {
3183   return wrap(new legacy::FunctionPassManager(unwrap(M)));
3184 }
3185 
3186 LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) {
3187   return LLVMCreateFunctionPassManagerForModule(
3188                                             reinterpret_cast<LLVMModuleRef>(P));
3189 }
3190 
3191 LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) {
3192   return unwrap<legacy::PassManager>(PM)->run(*unwrap(M));
3193 }
3194 
3195 LLVMBool LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) {
3196   return unwrap<legacy::FunctionPassManager>(FPM)->doInitialization();
3197 }
3198 
3199 LLVMBool LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) {
3200   return unwrap<legacy::FunctionPassManager>(FPM)->run(*unwrap<Function>(F));
3201 }
3202 
3203 LLVMBool LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) {
3204   return unwrap<legacy::FunctionPassManager>(FPM)->doFinalization();
3205 }
3206 
3207 void LLVMDisposePassManager(LLVMPassManagerRef PM) {
3208   delete unwrap(PM);
3209 }
3210 
3211 /*===-- Threading ------------------------------------------------------===*/
3212 
3213 LLVMBool LLVMStartMultithreaded() {
3214   return LLVMIsMultithreaded();
3215 }
3216 
3217 void LLVMStopMultithreaded() {
3218 }
3219 
3220 LLVMBool LLVMIsMultithreaded() {
3221   return llvm_is_multithreaded();
3222 }
3223