xref: /llvm-project-15.0.7/llvm/lib/IR/Core.cpp (revision 30b6c51f)
1 //===-- Core.cpp ----------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the common infrastructure (including the C bindings)
10 // for libLLVMCore.a, which implements the LLVM intermediate representation.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm-c/Core.h"
15 #include "llvm/IR/Attributes.h"
16 #include "llvm/IR/BasicBlock.h"
17 #include "llvm/IR/Constants.h"
18 #include "llvm/IR/DebugInfoMetadata.h"
19 #include "llvm/IR/DerivedTypes.h"
20 #include "llvm/IR/DiagnosticInfo.h"
21 #include "llvm/IR/DiagnosticPrinter.h"
22 #include "llvm/IR/GlobalAlias.h"
23 #include "llvm/IR/GlobalVariable.h"
24 #include "llvm/IR/IRBuilder.h"
25 #include "llvm/IR/InlineAsm.h"
26 #include "llvm/IR/IntrinsicInst.h"
27 #include "llvm/IR/LLVMContext.h"
28 #include "llvm/IR/LegacyPassManager.h"
29 #include "llvm/IR/Module.h"
30 #include "llvm/InitializePasses.h"
31 #include "llvm/PassRegistry.h"
32 #include "llvm/Support/Debug.h"
33 #include "llvm/Support/ErrorHandling.h"
34 #include "llvm/Support/FileSystem.h"
35 #include "llvm/Support/ManagedStatic.h"
36 #include "llvm/Support/MemoryBuffer.h"
37 #include "llvm/Support/Threading.h"
38 #include "llvm/Support/raw_ostream.h"
39 #include <cassert>
40 #include <cstdlib>
41 #include <cstring>
42 #include <system_error>
43 
44 using namespace llvm;
45 
46 #define DEBUG_TYPE "ir"
47 
48 void llvm::initializeCore(PassRegistry &Registry) {
49   initializeDominatorTreeWrapperPassPass(Registry);
50   initializePrintModulePassWrapperPass(Registry);
51   initializePrintFunctionPassWrapperPass(Registry);
52   initializeSafepointIRVerifierPass(Registry);
53   initializeVerifierLegacyPassPass(Registry);
54 }
55 
56 void LLVMInitializeCore(LLVMPassRegistryRef R) {
57   initializeCore(*unwrap(R));
58 }
59 
60 void LLVMShutdown() {
61   llvm_shutdown();
62 }
63 
64 /*===-- Error handling ----------------------------------------------------===*/
65 
66 char *LLVMCreateMessage(const char *Message) {
67   return strdup(Message);
68 }
69 
70 void LLVMDisposeMessage(char *Message) {
71   free(Message);
72 }
73 
74 
75 /*===-- Operations on contexts --------------------------------------------===*/
76 
77 static ManagedStatic<LLVMContext> GlobalContext;
78 
79 LLVMContextRef LLVMContextCreate() {
80   return wrap(new LLVMContext());
81 }
82 
83 LLVMContextRef LLVMGetGlobalContext() { return wrap(&*GlobalContext); }
84 
85 void LLVMContextSetDiagnosticHandler(LLVMContextRef C,
86                                      LLVMDiagnosticHandler Handler,
87                                      void *DiagnosticContext) {
88   unwrap(C)->setDiagnosticHandlerCallBack(
89       LLVM_EXTENSION reinterpret_cast<DiagnosticHandler::DiagnosticHandlerTy>(
90           Handler),
91       DiagnosticContext);
92 }
93 
94 LLVMDiagnosticHandler LLVMContextGetDiagnosticHandler(LLVMContextRef C) {
95   return LLVM_EXTENSION reinterpret_cast<LLVMDiagnosticHandler>(
96       unwrap(C)->getDiagnosticHandlerCallBack());
97 }
98 
99 void *LLVMContextGetDiagnosticContext(LLVMContextRef C) {
100   return unwrap(C)->getDiagnosticContext();
101 }
102 
103 void LLVMContextSetYieldCallback(LLVMContextRef C, LLVMYieldCallback Callback,
104                                  void *OpaqueHandle) {
105   auto YieldCallback =
106     LLVM_EXTENSION reinterpret_cast<LLVMContext::YieldCallbackTy>(Callback);
107   unwrap(C)->setYieldCallback(YieldCallback, OpaqueHandle);
108 }
109 
110 LLVMBool LLVMContextShouldDiscardValueNames(LLVMContextRef C) {
111   return unwrap(C)->shouldDiscardValueNames();
112 }
113 
114 void LLVMContextSetDiscardValueNames(LLVMContextRef C, LLVMBool Discard) {
115   unwrap(C)->setDiscardValueNames(Discard);
116 }
117 
118 void LLVMContextSetOpaquePointers(LLVMContextRef C, LLVMBool OpaquePointers) {
119   unwrap(C)->setOpaquePointers(OpaquePointers);
120 }
121 
122 void LLVMContextDispose(LLVMContextRef C) {
123   delete unwrap(C);
124 }
125 
126 unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char *Name,
127                                   unsigned SLen) {
128   return unwrap(C)->getMDKindID(StringRef(Name, SLen));
129 }
130 
131 unsigned LLVMGetMDKindID(const char *Name, unsigned SLen) {
132   return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen);
133 }
134 
135 unsigned LLVMGetEnumAttributeKindForName(const char *Name, size_t SLen) {
136   return Attribute::getAttrKindFromName(StringRef(Name, SLen));
137 }
138 
139 unsigned LLVMGetLastEnumAttributeKind(void) {
140   return Attribute::AttrKind::EndAttrKinds;
141 }
142 
143 LLVMAttributeRef LLVMCreateEnumAttribute(LLVMContextRef C, unsigned KindID,
144                                          uint64_t Val) {
145   auto &Ctx = *unwrap(C);
146   auto AttrKind = (Attribute::AttrKind)KindID;
147 
148   if (AttrKind == Attribute::AttrKind::ByVal) {
149     // After r362128, byval attributes need to have a type attribute. Provide a
150     // NULL one until a proper API is added for this.
151     return wrap(Attribute::getWithByValType(Ctx, nullptr));
152   }
153 
154   if (AttrKind == Attribute::AttrKind::StructRet) {
155     // Same as byval.
156     return wrap(Attribute::getWithStructRetType(Ctx, nullptr));
157   }
158 
159   return wrap(Attribute::get(Ctx, AttrKind, Val));
160 }
161 
162 unsigned LLVMGetEnumAttributeKind(LLVMAttributeRef A) {
163   return unwrap(A).getKindAsEnum();
164 }
165 
166 uint64_t LLVMGetEnumAttributeValue(LLVMAttributeRef A) {
167   auto Attr = unwrap(A);
168   if (Attr.isEnumAttribute())
169     return 0;
170   return Attr.getValueAsInt();
171 }
172 
173 LLVMAttributeRef LLVMCreateTypeAttribute(LLVMContextRef C, unsigned KindID,
174                                          LLVMTypeRef type_ref) {
175   auto &Ctx = *unwrap(C);
176   auto AttrKind = (Attribute::AttrKind)KindID;
177   return wrap(Attribute::get(Ctx, AttrKind, unwrap(type_ref)));
178 }
179 
180 LLVMTypeRef LLVMGetTypeAttributeValue(LLVMAttributeRef A) {
181   auto Attr = unwrap(A);
182   return wrap(Attr.getValueAsType());
183 }
184 
185 LLVMAttributeRef LLVMCreateStringAttribute(LLVMContextRef C,
186                                            const char *K, unsigned KLength,
187                                            const char *V, unsigned VLength) {
188   return wrap(Attribute::get(*unwrap(C), StringRef(K, KLength),
189                              StringRef(V, VLength)));
190 }
191 
192 const char *LLVMGetStringAttributeKind(LLVMAttributeRef A,
193                                        unsigned *Length) {
194   auto S = unwrap(A).getKindAsString();
195   *Length = S.size();
196   return S.data();
197 }
198 
199 const char *LLVMGetStringAttributeValue(LLVMAttributeRef A,
200                                         unsigned *Length) {
201   auto S = unwrap(A).getValueAsString();
202   *Length = S.size();
203   return S.data();
204 }
205 
206 LLVMBool LLVMIsEnumAttribute(LLVMAttributeRef A) {
207   auto Attr = unwrap(A);
208   return Attr.isEnumAttribute() || Attr.isIntAttribute();
209 }
210 
211 LLVMBool LLVMIsStringAttribute(LLVMAttributeRef A) {
212   return unwrap(A).isStringAttribute();
213 }
214 
215 LLVMBool LLVMIsTypeAttribute(LLVMAttributeRef A) {
216   return unwrap(A).isTypeAttribute();
217 }
218 
219 char *LLVMGetDiagInfoDescription(LLVMDiagnosticInfoRef DI) {
220   std::string MsgStorage;
221   raw_string_ostream Stream(MsgStorage);
222   DiagnosticPrinterRawOStream DP(Stream);
223 
224   unwrap(DI)->print(DP);
225   Stream.flush();
226 
227   return LLVMCreateMessage(MsgStorage.c_str());
228 }
229 
230 LLVMDiagnosticSeverity LLVMGetDiagInfoSeverity(LLVMDiagnosticInfoRef DI) {
231     LLVMDiagnosticSeverity severity;
232 
233     switch(unwrap(DI)->getSeverity()) {
234     default:
235       severity = LLVMDSError;
236       break;
237     case DS_Warning:
238       severity = LLVMDSWarning;
239       break;
240     case DS_Remark:
241       severity = LLVMDSRemark;
242       break;
243     case DS_Note:
244       severity = LLVMDSNote;
245       break;
246     }
247 
248     return severity;
249 }
250 
251 /*===-- Operations on modules ---------------------------------------------===*/
252 
253 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
254   return wrap(new Module(ModuleID, *GlobalContext));
255 }
256 
257 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
258                                                 LLVMContextRef C) {
259   return wrap(new Module(ModuleID, *unwrap(C)));
260 }
261 
262 void LLVMDisposeModule(LLVMModuleRef M) {
263   delete unwrap(M);
264 }
265 
266 const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len) {
267   auto &Str = unwrap(M)->getModuleIdentifier();
268   *Len = Str.length();
269   return Str.c_str();
270 }
271 
272 void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len) {
273   unwrap(M)->setModuleIdentifier(StringRef(Ident, Len));
274 }
275 
276 const char *LLVMGetSourceFileName(LLVMModuleRef M, size_t *Len) {
277   auto &Str = unwrap(M)->getSourceFileName();
278   *Len = Str.length();
279   return Str.c_str();
280 }
281 
282 void LLVMSetSourceFileName(LLVMModuleRef M, const char *Name, size_t Len) {
283   unwrap(M)->setSourceFileName(StringRef(Name, Len));
284 }
285 
286 /*--.. Data layout .........................................................--*/
287 const char *LLVMGetDataLayoutStr(LLVMModuleRef M) {
288   return unwrap(M)->getDataLayoutStr().c_str();
289 }
290 
291 const char *LLVMGetDataLayout(LLVMModuleRef M) {
292   return LLVMGetDataLayoutStr(M);
293 }
294 
295 void LLVMSetDataLayout(LLVMModuleRef M, const char *DataLayoutStr) {
296   unwrap(M)->setDataLayout(DataLayoutStr);
297 }
298 
299 /*--.. Target triple .......................................................--*/
300 const char * LLVMGetTarget(LLVMModuleRef M) {
301   return unwrap(M)->getTargetTriple().c_str();
302 }
303 
304 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
305   unwrap(M)->setTargetTriple(Triple);
306 }
307 
308 /*--.. Module flags ........................................................--*/
309 struct LLVMOpaqueModuleFlagEntry {
310   LLVMModuleFlagBehavior Behavior;
311   const char *Key;
312   size_t KeyLen;
313   LLVMMetadataRef Metadata;
314 };
315 
316 static Module::ModFlagBehavior
317 map_to_llvmModFlagBehavior(LLVMModuleFlagBehavior Behavior) {
318   switch (Behavior) {
319   case LLVMModuleFlagBehaviorError:
320     return Module::ModFlagBehavior::Error;
321   case LLVMModuleFlagBehaviorWarning:
322     return Module::ModFlagBehavior::Warning;
323   case LLVMModuleFlagBehaviorRequire:
324     return Module::ModFlagBehavior::Require;
325   case LLVMModuleFlagBehaviorOverride:
326     return Module::ModFlagBehavior::Override;
327   case LLVMModuleFlagBehaviorAppend:
328     return Module::ModFlagBehavior::Append;
329   case LLVMModuleFlagBehaviorAppendUnique:
330     return Module::ModFlagBehavior::AppendUnique;
331   }
332   llvm_unreachable("Unknown LLVMModuleFlagBehavior");
333 }
334 
335 static LLVMModuleFlagBehavior
336 map_from_llvmModFlagBehavior(Module::ModFlagBehavior Behavior) {
337   switch (Behavior) {
338   case Module::ModFlagBehavior::Error:
339     return LLVMModuleFlagBehaviorError;
340   case Module::ModFlagBehavior::Warning:
341     return LLVMModuleFlagBehaviorWarning;
342   case Module::ModFlagBehavior::Require:
343     return LLVMModuleFlagBehaviorRequire;
344   case Module::ModFlagBehavior::Override:
345     return LLVMModuleFlagBehaviorOverride;
346   case Module::ModFlagBehavior::Append:
347     return LLVMModuleFlagBehaviorAppend;
348   case Module::ModFlagBehavior::AppendUnique:
349     return LLVMModuleFlagBehaviorAppendUnique;
350   default:
351     llvm_unreachable("Unhandled Flag Behavior");
352   }
353 }
354 
355 LLVMModuleFlagEntry *LLVMCopyModuleFlagsMetadata(LLVMModuleRef M, size_t *Len) {
356   SmallVector<Module::ModuleFlagEntry, 8> MFEs;
357   unwrap(M)->getModuleFlagsMetadata(MFEs);
358 
359   LLVMOpaqueModuleFlagEntry *Result = static_cast<LLVMOpaqueModuleFlagEntry *>(
360       safe_malloc(MFEs.size() * sizeof(LLVMOpaqueModuleFlagEntry)));
361   for (unsigned i = 0; i < MFEs.size(); ++i) {
362     const auto &ModuleFlag = MFEs[i];
363     Result[i].Behavior = map_from_llvmModFlagBehavior(ModuleFlag.Behavior);
364     Result[i].Key = ModuleFlag.Key->getString().data();
365     Result[i].KeyLen = ModuleFlag.Key->getString().size();
366     Result[i].Metadata = wrap(ModuleFlag.Val);
367   }
368   *Len = MFEs.size();
369   return Result;
370 }
371 
372 void LLVMDisposeModuleFlagsMetadata(LLVMModuleFlagEntry *Entries) {
373   free(Entries);
374 }
375 
376 LLVMModuleFlagBehavior
377 LLVMModuleFlagEntriesGetFlagBehavior(LLVMModuleFlagEntry *Entries,
378                                      unsigned Index) {
379   LLVMOpaqueModuleFlagEntry MFE =
380       static_cast<LLVMOpaqueModuleFlagEntry>(Entries[Index]);
381   return MFE.Behavior;
382 }
383 
384 const char *LLVMModuleFlagEntriesGetKey(LLVMModuleFlagEntry *Entries,
385                                         unsigned Index, size_t *Len) {
386   LLVMOpaqueModuleFlagEntry MFE =
387       static_cast<LLVMOpaqueModuleFlagEntry>(Entries[Index]);
388   *Len = MFE.KeyLen;
389   return MFE.Key;
390 }
391 
392 LLVMMetadataRef LLVMModuleFlagEntriesGetMetadata(LLVMModuleFlagEntry *Entries,
393                                                  unsigned Index) {
394   LLVMOpaqueModuleFlagEntry MFE =
395       static_cast<LLVMOpaqueModuleFlagEntry>(Entries[Index]);
396   return MFE.Metadata;
397 }
398 
399 LLVMMetadataRef LLVMGetModuleFlag(LLVMModuleRef M,
400                                   const char *Key, size_t KeyLen) {
401   return wrap(unwrap(M)->getModuleFlag({Key, KeyLen}));
402 }
403 
404 void LLVMAddModuleFlag(LLVMModuleRef M, LLVMModuleFlagBehavior Behavior,
405                        const char *Key, size_t KeyLen,
406                        LLVMMetadataRef Val) {
407   unwrap(M)->addModuleFlag(map_to_llvmModFlagBehavior(Behavior),
408                            {Key, KeyLen}, unwrap(Val));
409 }
410 
411 /*--.. Printing modules ....................................................--*/
412 
413 void LLVMDumpModule(LLVMModuleRef M) {
414   unwrap(M)->print(errs(), nullptr,
415                    /*ShouldPreserveUseListOrder=*/false, /*IsForDebug=*/true);
416 }
417 
418 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename,
419                                char **ErrorMessage) {
420   std::error_code EC;
421   raw_fd_ostream dest(Filename, EC, sys::fs::OF_TextWithCRLF);
422   if (EC) {
423     *ErrorMessage = strdup(EC.message().c_str());
424     return true;
425   }
426 
427   unwrap(M)->print(dest, nullptr);
428 
429   dest.close();
430 
431   if (dest.has_error()) {
432     std::string E = "Error printing to file: " + dest.error().message();
433     *ErrorMessage = strdup(E.c_str());
434     return true;
435   }
436 
437   return false;
438 }
439 
440 char *LLVMPrintModuleToString(LLVMModuleRef M) {
441   std::string buf;
442   raw_string_ostream os(buf);
443 
444   unwrap(M)->print(os, nullptr);
445   os.flush();
446 
447   return strdup(buf.c_str());
448 }
449 
450 /*--.. Operations on inline assembler ......................................--*/
451 void LLVMSetModuleInlineAsm2(LLVMModuleRef M, const char *Asm, size_t Len) {
452   unwrap(M)->setModuleInlineAsm(StringRef(Asm, Len));
453 }
454 
455 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) {
456   unwrap(M)->setModuleInlineAsm(StringRef(Asm));
457 }
458 
459 void LLVMAppendModuleInlineAsm(LLVMModuleRef M, const char *Asm, size_t Len) {
460   unwrap(M)->appendModuleInlineAsm(StringRef(Asm, Len));
461 }
462 
463 const char *LLVMGetModuleInlineAsm(LLVMModuleRef M, size_t *Len) {
464   auto &Str = unwrap(M)->getModuleInlineAsm();
465   *Len = Str.length();
466   return Str.c_str();
467 }
468 
469 LLVMValueRef LLVMGetInlineAsm(LLVMTypeRef Ty, char *AsmString,
470                               size_t AsmStringSize, char *Constraints,
471                               size_t ConstraintsSize, LLVMBool HasSideEffects,
472                               LLVMBool IsAlignStack,
473                               LLVMInlineAsmDialect Dialect, LLVMBool CanThrow) {
474   InlineAsm::AsmDialect AD;
475   switch (Dialect) {
476   case LLVMInlineAsmDialectATT:
477     AD = InlineAsm::AD_ATT;
478     break;
479   case LLVMInlineAsmDialectIntel:
480     AD = InlineAsm::AD_Intel;
481     break;
482   }
483   return wrap(InlineAsm::get(unwrap<FunctionType>(Ty),
484                              StringRef(AsmString, AsmStringSize),
485                              StringRef(Constraints, ConstraintsSize),
486                              HasSideEffects, IsAlignStack, AD, CanThrow));
487 }
488 
489 /*--.. Operations on module contexts ......................................--*/
490 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) {
491   return wrap(&unwrap(M)->getContext());
492 }
493 
494 
495 /*===-- Operations on types -----------------------------------------------===*/
496 
497 /*--.. Operations on all types (mostly) ....................................--*/
498 
499 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) {
500   switch (unwrap(Ty)->getTypeID()) {
501   case Type::VoidTyID:
502     return LLVMVoidTypeKind;
503   case Type::HalfTyID:
504     return LLVMHalfTypeKind;
505   case Type::BFloatTyID:
506     return LLVMBFloatTypeKind;
507   case Type::FloatTyID:
508     return LLVMFloatTypeKind;
509   case Type::DoubleTyID:
510     return LLVMDoubleTypeKind;
511   case Type::X86_FP80TyID:
512     return LLVMX86_FP80TypeKind;
513   case Type::FP128TyID:
514     return LLVMFP128TypeKind;
515   case Type::PPC_FP128TyID:
516     return LLVMPPC_FP128TypeKind;
517   case Type::LabelTyID:
518     return LLVMLabelTypeKind;
519   case Type::MetadataTyID:
520     return LLVMMetadataTypeKind;
521   case Type::IntegerTyID:
522     return LLVMIntegerTypeKind;
523   case Type::FunctionTyID:
524     return LLVMFunctionTypeKind;
525   case Type::StructTyID:
526     return LLVMStructTypeKind;
527   case Type::ArrayTyID:
528     return LLVMArrayTypeKind;
529   case Type::PointerTyID:
530     return LLVMPointerTypeKind;
531   case Type::FixedVectorTyID:
532     return LLVMVectorTypeKind;
533   case Type::X86_MMXTyID:
534     return LLVMX86_MMXTypeKind;
535   case Type::X86_AMXTyID:
536     return LLVMX86_AMXTypeKind;
537   case Type::TokenTyID:
538     return LLVMTokenTypeKind;
539   case Type::ScalableVectorTyID:
540     return LLVMScalableVectorTypeKind;
541   case Type::DXILPointerTyID:
542     llvm_unreachable("DXIL pointers are unsupported via the C API");
543   }
544   llvm_unreachable("Unhandled TypeID.");
545 }
546 
547 LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty)
548 {
549     return unwrap(Ty)->isSized();
550 }
551 
552 LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty) {
553   return wrap(&unwrap(Ty)->getContext());
554 }
555 
556 void LLVMDumpType(LLVMTypeRef Ty) {
557   return unwrap(Ty)->print(errs(), /*IsForDebug=*/true);
558 }
559 
560 char *LLVMPrintTypeToString(LLVMTypeRef Ty) {
561   std::string buf;
562   raw_string_ostream os(buf);
563 
564   if (unwrap(Ty))
565     unwrap(Ty)->print(os);
566   else
567     os << "Printing <null> Type";
568 
569   os.flush();
570 
571   return strdup(buf.c_str());
572 }
573 
574 /*--.. Operations on integer types .........................................--*/
575 
576 LLVMTypeRef LLVMInt1TypeInContext(LLVMContextRef C)  {
577   return (LLVMTypeRef) Type::getInt1Ty(*unwrap(C));
578 }
579 LLVMTypeRef LLVMInt8TypeInContext(LLVMContextRef C)  {
580   return (LLVMTypeRef) Type::getInt8Ty(*unwrap(C));
581 }
582 LLVMTypeRef LLVMInt16TypeInContext(LLVMContextRef C) {
583   return (LLVMTypeRef) Type::getInt16Ty(*unwrap(C));
584 }
585 LLVMTypeRef LLVMInt32TypeInContext(LLVMContextRef C) {
586   return (LLVMTypeRef) Type::getInt32Ty(*unwrap(C));
587 }
588 LLVMTypeRef LLVMInt64TypeInContext(LLVMContextRef C) {
589   return (LLVMTypeRef) Type::getInt64Ty(*unwrap(C));
590 }
591 LLVMTypeRef LLVMInt128TypeInContext(LLVMContextRef C) {
592   return (LLVMTypeRef) Type::getInt128Ty(*unwrap(C));
593 }
594 LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits) {
595   return wrap(IntegerType::get(*unwrap(C), NumBits));
596 }
597 
598 LLVMTypeRef LLVMInt1Type(void)  {
599   return LLVMInt1TypeInContext(LLVMGetGlobalContext());
600 }
601 LLVMTypeRef LLVMInt8Type(void)  {
602   return LLVMInt8TypeInContext(LLVMGetGlobalContext());
603 }
604 LLVMTypeRef LLVMInt16Type(void) {
605   return LLVMInt16TypeInContext(LLVMGetGlobalContext());
606 }
607 LLVMTypeRef LLVMInt32Type(void) {
608   return LLVMInt32TypeInContext(LLVMGetGlobalContext());
609 }
610 LLVMTypeRef LLVMInt64Type(void) {
611   return LLVMInt64TypeInContext(LLVMGetGlobalContext());
612 }
613 LLVMTypeRef LLVMInt128Type(void) {
614   return LLVMInt128TypeInContext(LLVMGetGlobalContext());
615 }
616 LLVMTypeRef LLVMIntType(unsigned NumBits) {
617   return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits);
618 }
619 
620 unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
621   return unwrap<IntegerType>(IntegerTy)->getBitWidth();
622 }
623 
624 /*--.. Operations on real types ............................................--*/
625 
626 LLVMTypeRef LLVMHalfTypeInContext(LLVMContextRef C) {
627   return (LLVMTypeRef) Type::getHalfTy(*unwrap(C));
628 }
629 LLVMTypeRef LLVMBFloatTypeInContext(LLVMContextRef C) {
630   return (LLVMTypeRef) Type::getBFloatTy(*unwrap(C));
631 }
632 LLVMTypeRef LLVMFloatTypeInContext(LLVMContextRef C) {
633   return (LLVMTypeRef) Type::getFloatTy(*unwrap(C));
634 }
635 LLVMTypeRef LLVMDoubleTypeInContext(LLVMContextRef C) {
636   return (LLVMTypeRef) Type::getDoubleTy(*unwrap(C));
637 }
638 LLVMTypeRef LLVMX86FP80TypeInContext(LLVMContextRef C) {
639   return (LLVMTypeRef) Type::getX86_FP80Ty(*unwrap(C));
640 }
641 LLVMTypeRef LLVMFP128TypeInContext(LLVMContextRef C) {
642   return (LLVMTypeRef) Type::getFP128Ty(*unwrap(C));
643 }
644 LLVMTypeRef LLVMPPCFP128TypeInContext(LLVMContextRef C) {
645   return (LLVMTypeRef) Type::getPPC_FP128Ty(*unwrap(C));
646 }
647 LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C) {
648   return (LLVMTypeRef) Type::getX86_MMXTy(*unwrap(C));
649 }
650 LLVMTypeRef LLVMX86AMXTypeInContext(LLVMContextRef C) {
651   return (LLVMTypeRef) Type::getX86_AMXTy(*unwrap(C));
652 }
653 
654 LLVMTypeRef LLVMHalfType(void) {
655   return LLVMHalfTypeInContext(LLVMGetGlobalContext());
656 }
657 LLVMTypeRef LLVMBFloatType(void) {
658   return LLVMBFloatTypeInContext(LLVMGetGlobalContext());
659 }
660 LLVMTypeRef LLVMFloatType(void) {
661   return LLVMFloatTypeInContext(LLVMGetGlobalContext());
662 }
663 LLVMTypeRef LLVMDoubleType(void) {
664   return LLVMDoubleTypeInContext(LLVMGetGlobalContext());
665 }
666 LLVMTypeRef LLVMX86FP80Type(void) {
667   return LLVMX86FP80TypeInContext(LLVMGetGlobalContext());
668 }
669 LLVMTypeRef LLVMFP128Type(void) {
670   return LLVMFP128TypeInContext(LLVMGetGlobalContext());
671 }
672 LLVMTypeRef LLVMPPCFP128Type(void) {
673   return LLVMPPCFP128TypeInContext(LLVMGetGlobalContext());
674 }
675 LLVMTypeRef LLVMX86MMXType(void) {
676   return LLVMX86MMXTypeInContext(LLVMGetGlobalContext());
677 }
678 LLVMTypeRef LLVMX86AMXType(void) {
679   return LLVMX86AMXTypeInContext(LLVMGetGlobalContext());
680 }
681 
682 /*--.. Operations on function types ........................................--*/
683 
684 LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
685                              LLVMTypeRef *ParamTypes, unsigned ParamCount,
686                              LLVMBool IsVarArg) {
687   ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
688   return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
689 }
690 
691 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
692   return unwrap<FunctionType>(FunctionTy)->isVarArg();
693 }
694 
695 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
696   return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
697 }
698 
699 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
700   return unwrap<FunctionType>(FunctionTy)->getNumParams();
701 }
702 
703 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
704   FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
705   for (Type *T : Ty->params())
706     *Dest++ = wrap(T);
707 }
708 
709 /*--.. Operations on struct types ..........................................--*/
710 
711 LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
712                            unsigned ElementCount, LLVMBool Packed) {
713   ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
714   return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
715 }
716 
717 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
718                            unsigned ElementCount, LLVMBool Packed) {
719   return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
720                                  ElementCount, Packed);
721 }
722 
723 LLVMTypeRef LLVMStructCreateNamed(LLVMContextRef C, const char *Name)
724 {
725   return wrap(StructType::create(*unwrap(C), Name));
726 }
727 
728 const char *LLVMGetStructName(LLVMTypeRef Ty)
729 {
730   StructType *Type = unwrap<StructType>(Ty);
731   if (!Type->hasName())
732     return nullptr;
733   return Type->getName().data();
734 }
735 
736 void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
737                        unsigned ElementCount, LLVMBool Packed) {
738   ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
739   unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
740 }
741 
742 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) {
743   return unwrap<StructType>(StructTy)->getNumElements();
744 }
745 
746 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
747   StructType *Ty = unwrap<StructType>(StructTy);
748   for (Type *T : Ty->elements())
749     *Dest++ = wrap(T);
750 }
751 
752 LLVMTypeRef LLVMStructGetTypeAtIndex(LLVMTypeRef StructTy, unsigned i) {
753   StructType *Ty = unwrap<StructType>(StructTy);
754   return wrap(Ty->getTypeAtIndex(i));
755 }
756 
757 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) {
758   return unwrap<StructType>(StructTy)->isPacked();
759 }
760 
761 LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy) {
762   return unwrap<StructType>(StructTy)->isOpaque();
763 }
764 
765 LLVMBool LLVMIsLiteralStruct(LLVMTypeRef StructTy) {
766   return unwrap<StructType>(StructTy)->isLiteral();
767 }
768 
769 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) {
770   return wrap(StructType::getTypeByName(unwrap(M)->getContext(), Name));
771 }
772 
773 LLVMTypeRef LLVMGetTypeByName2(LLVMContextRef C, const char *Name) {
774   return wrap(StructType::getTypeByName(*unwrap(C), Name));
775 }
776 
777 /*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
778 
779 void LLVMGetSubtypes(LLVMTypeRef Tp, LLVMTypeRef *Arr) {
780     int i = 0;
781     for (auto *T : unwrap(Tp)->subtypes()) {
782         Arr[i] = wrap(T);
783         i++;
784     }
785 }
786 
787 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
788   return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
789 }
790 
791 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) {
792   return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
793 }
794 
795 LLVMBool LLVMPointerTypeIsOpaque(LLVMTypeRef Ty) {
796   return unwrap(Ty)->isOpaquePointerTy();
797 }
798 
799 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
800   return wrap(FixedVectorType::get(unwrap(ElementType), ElementCount));
801 }
802 
803 LLVMTypeRef LLVMScalableVectorType(LLVMTypeRef ElementType,
804                                    unsigned ElementCount) {
805   return wrap(ScalableVectorType::get(unwrap(ElementType), ElementCount));
806 }
807 
808 LLVMTypeRef LLVMGetElementType(LLVMTypeRef WrappedTy) {
809   auto *Ty = unwrap<Type>(WrappedTy);
810   if (auto *PTy = dyn_cast<PointerType>(Ty))
811     return wrap(PTy->getNonOpaquePointerElementType());
812   if (auto *ATy = dyn_cast<ArrayType>(Ty))
813     return wrap(ATy->getElementType());
814   return wrap(cast<VectorType>(Ty)->getElementType());
815 }
816 
817 unsigned LLVMGetNumContainedTypes(LLVMTypeRef Tp) {
818     return unwrap(Tp)->getNumContainedTypes();
819 }
820 
821 unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy) {
822   return unwrap<ArrayType>(ArrayTy)->getNumElements();
823 }
824 
825 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) {
826   return unwrap<PointerType>(PointerTy)->getAddressSpace();
827 }
828 
829 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
830   return unwrap<VectorType>(VectorTy)->getElementCount().getKnownMinValue();
831 }
832 
833 /*--.. Operations on other types ...........................................--*/
834 
835 LLVMTypeRef LLVMPointerTypeInContext(LLVMContextRef C, unsigned AddressSpace) {
836   return wrap(PointerType::get(*unwrap(C), AddressSpace));
837 }
838 
839 LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C)  {
840   return wrap(Type::getVoidTy(*unwrap(C)));
841 }
842 LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C) {
843   return wrap(Type::getLabelTy(*unwrap(C)));
844 }
845 LLVMTypeRef LLVMTokenTypeInContext(LLVMContextRef C) {
846   return wrap(Type::getTokenTy(*unwrap(C)));
847 }
848 LLVMTypeRef LLVMMetadataTypeInContext(LLVMContextRef C) {
849   return wrap(Type::getMetadataTy(*unwrap(C)));
850 }
851 
852 LLVMTypeRef LLVMVoidType(void)  {
853   return LLVMVoidTypeInContext(LLVMGetGlobalContext());
854 }
855 LLVMTypeRef LLVMLabelType(void) {
856   return LLVMLabelTypeInContext(LLVMGetGlobalContext());
857 }
858 
859 /*===-- Operations on values ----------------------------------------------===*/
860 
861 /*--.. Operations on all values ............................................--*/
862 
863 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
864   return wrap(unwrap(Val)->getType());
865 }
866 
867 LLVMValueKind LLVMGetValueKind(LLVMValueRef Val) {
868     switch(unwrap(Val)->getValueID()) {
869 #define LLVM_C_API 1
870 #define HANDLE_VALUE(Name) \
871   case Value::Name##Val: \
872     return LLVM##Name##ValueKind;
873 #include "llvm/IR/Value.def"
874   default:
875     return LLVMInstructionValueKind;
876   }
877 }
878 
879 const char *LLVMGetValueName2(LLVMValueRef Val, size_t *Length) {
880   auto *V = unwrap(Val);
881   *Length = V->getName().size();
882   return V->getName().data();
883 }
884 
885 void LLVMSetValueName2(LLVMValueRef Val, const char *Name, size_t NameLen) {
886   unwrap(Val)->setName(StringRef(Name, NameLen));
887 }
888 
889 const char *LLVMGetValueName(LLVMValueRef Val) {
890   return unwrap(Val)->getName().data();
891 }
892 
893 void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
894   unwrap(Val)->setName(Name);
895 }
896 
897 void LLVMDumpValue(LLVMValueRef Val) {
898   unwrap(Val)->print(errs(), /*IsForDebug=*/true);
899 }
900 
901 char* LLVMPrintValueToString(LLVMValueRef Val) {
902   std::string buf;
903   raw_string_ostream os(buf);
904 
905   if (unwrap(Val))
906     unwrap(Val)->print(os);
907   else
908     os << "Printing <null> Value";
909 
910   os.flush();
911 
912   return strdup(buf.c_str());
913 }
914 
915 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal) {
916   unwrap(OldVal)->replaceAllUsesWith(unwrap(NewVal));
917 }
918 
919 int LLVMHasMetadata(LLVMValueRef Inst) {
920   return unwrap<Instruction>(Inst)->hasMetadata();
921 }
922 
923 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
924   auto *I = unwrap<Instruction>(Inst);
925   assert(I && "Expected instruction");
926   if (auto *MD = I->getMetadata(KindID))
927     return wrap(MetadataAsValue::get(I->getContext(), MD));
928   return nullptr;
929 }
930 
931 // MetadataAsValue uses a canonical format which strips the actual MDNode for
932 // MDNode with just a single constant value, storing just a ConstantAsMetadata
933 // This undoes this canonicalization, reconstructing the MDNode.
934 static MDNode *extractMDNode(MetadataAsValue *MAV) {
935   Metadata *MD = MAV->getMetadata();
936   assert((isa<MDNode>(MD) || isa<ConstantAsMetadata>(MD)) &&
937       "Expected a metadata node or a canonicalized constant");
938 
939   if (MDNode *N = dyn_cast<MDNode>(MD))
940     return N;
941 
942   return MDNode::get(MAV->getContext(), MD);
943 }
944 
945 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef Val) {
946   MDNode *N = Val ? extractMDNode(unwrap<MetadataAsValue>(Val)) : nullptr;
947 
948   unwrap<Instruction>(Inst)->setMetadata(KindID, N);
949 }
950 
951 struct LLVMOpaqueValueMetadataEntry {
952   unsigned Kind;
953   LLVMMetadataRef Metadata;
954 };
955 
956 using MetadataEntries = SmallVectorImpl<std::pair<unsigned, MDNode *>>;
957 static LLVMValueMetadataEntry *
958 llvm_getMetadata(size_t *NumEntries,
959                  llvm::function_ref<void(MetadataEntries &)> AccessMD) {
960   SmallVector<std::pair<unsigned, MDNode *>, 8> MVEs;
961   AccessMD(MVEs);
962 
963   LLVMOpaqueValueMetadataEntry *Result =
964   static_cast<LLVMOpaqueValueMetadataEntry *>(
965                                               safe_malloc(MVEs.size() * sizeof(LLVMOpaqueValueMetadataEntry)));
966   for (unsigned i = 0; i < MVEs.size(); ++i) {
967     const auto &ModuleFlag = MVEs[i];
968     Result[i].Kind = ModuleFlag.first;
969     Result[i].Metadata = wrap(ModuleFlag.second);
970   }
971   *NumEntries = MVEs.size();
972   return Result;
973 }
974 
975 LLVMValueMetadataEntry *
976 LLVMInstructionGetAllMetadataOtherThanDebugLoc(LLVMValueRef Value,
977                                                size_t *NumEntries) {
978   return llvm_getMetadata(NumEntries, [&Value](MetadataEntries &Entries) {
979     Entries.clear();
980     unwrap<Instruction>(Value)->getAllMetadata(Entries);
981   });
982 }
983 
984 /*--.. Conversion functions ................................................--*/
985 
986 #define LLVM_DEFINE_VALUE_CAST(name)                                       \
987   LLVMValueRef LLVMIsA##name(LLVMValueRef Val) {                           \
988     return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
989   }
990 
991 LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DEFINE_VALUE_CAST)
992 
993 LLVMValueRef LLVMIsAMDNode(LLVMValueRef Val) {
994   if (auto *MD = dyn_cast_or_null<MetadataAsValue>(unwrap(Val)))
995     if (isa<MDNode>(MD->getMetadata()) ||
996         isa<ValueAsMetadata>(MD->getMetadata()))
997       return Val;
998   return nullptr;
999 }
1000 
1001 LLVMValueRef LLVMIsAMDString(LLVMValueRef Val) {
1002   if (auto *MD = dyn_cast_or_null<MetadataAsValue>(unwrap(Val)))
1003     if (isa<MDString>(MD->getMetadata()))
1004       return Val;
1005   return nullptr;
1006 }
1007 
1008 /*--.. Operations on Uses ..................................................--*/
1009 LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val) {
1010   Value *V = unwrap(Val);
1011   Value::use_iterator I = V->use_begin();
1012   if (I == V->use_end())
1013     return nullptr;
1014   return wrap(&*I);
1015 }
1016 
1017 LLVMUseRef LLVMGetNextUse(LLVMUseRef U) {
1018   Use *Next = unwrap(U)->getNext();
1019   if (Next)
1020     return wrap(Next);
1021   return nullptr;
1022 }
1023 
1024 LLVMValueRef LLVMGetUser(LLVMUseRef U) {
1025   return wrap(unwrap(U)->getUser());
1026 }
1027 
1028 LLVMValueRef LLVMGetUsedValue(LLVMUseRef U) {
1029   return wrap(unwrap(U)->get());
1030 }
1031 
1032 /*--.. Operations on Users .................................................--*/
1033 
1034 static LLVMValueRef getMDNodeOperandImpl(LLVMContext &Context, const MDNode *N,
1035                                          unsigned Index) {
1036   Metadata *Op = N->getOperand(Index);
1037   if (!Op)
1038     return nullptr;
1039   if (auto *C = dyn_cast<ConstantAsMetadata>(Op))
1040     return wrap(C->getValue());
1041   return wrap(MetadataAsValue::get(Context, Op));
1042 }
1043 
1044 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index) {
1045   Value *V = unwrap(Val);
1046   if (auto *MD = dyn_cast<MetadataAsValue>(V)) {
1047     if (auto *L = dyn_cast<ValueAsMetadata>(MD->getMetadata())) {
1048       assert(Index == 0 && "Function-local metadata can only have one operand");
1049       return wrap(L->getValue());
1050     }
1051     return getMDNodeOperandImpl(V->getContext(),
1052                                 cast<MDNode>(MD->getMetadata()), Index);
1053   }
1054 
1055   return wrap(cast<User>(V)->getOperand(Index));
1056 }
1057 
1058 LLVMUseRef LLVMGetOperandUse(LLVMValueRef Val, unsigned Index) {
1059   Value *V = unwrap(Val);
1060   return wrap(&cast<User>(V)->getOperandUse(Index));
1061 }
1062 
1063 void LLVMSetOperand(LLVMValueRef Val, unsigned Index, LLVMValueRef Op) {
1064   unwrap<User>(Val)->setOperand(Index, unwrap(Op));
1065 }
1066 
1067 int LLVMGetNumOperands(LLVMValueRef Val) {
1068   Value *V = unwrap(Val);
1069   if (isa<MetadataAsValue>(V))
1070     return LLVMGetMDNodeNumOperands(Val);
1071 
1072   return cast<User>(V)->getNumOperands();
1073 }
1074 
1075 /*--.. Operations on constants of any type .................................--*/
1076 
1077 LLVMValueRef LLVMConstNull(LLVMTypeRef Ty) {
1078   return wrap(Constant::getNullValue(unwrap(Ty)));
1079 }
1080 
1081 LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty) {
1082   return wrap(Constant::getAllOnesValue(unwrap(Ty)));
1083 }
1084 
1085 LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty) {
1086   return wrap(UndefValue::get(unwrap(Ty)));
1087 }
1088 
1089 LLVMValueRef LLVMGetPoison(LLVMTypeRef Ty) {
1090   return wrap(PoisonValue::get(unwrap(Ty)));
1091 }
1092 
1093 LLVMBool LLVMIsConstant(LLVMValueRef Ty) {
1094   return isa<Constant>(unwrap(Ty));
1095 }
1096 
1097 LLVMBool LLVMIsNull(LLVMValueRef Val) {
1098   if (Constant *C = dyn_cast<Constant>(unwrap(Val)))
1099     return C->isNullValue();
1100   return false;
1101 }
1102 
1103 LLVMBool LLVMIsUndef(LLVMValueRef Val) {
1104   return isa<UndefValue>(unwrap(Val));
1105 }
1106 
1107 LLVMBool LLVMIsPoison(LLVMValueRef Val) {
1108   return isa<PoisonValue>(unwrap(Val));
1109 }
1110 
1111 LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty) {
1112   return wrap(ConstantPointerNull::get(unwrap<PointerType>(Ty)));
1113 }
1114 
1115 /*--.. Operations on metadata nodes ........................................--*/
1116 
1117 LLVMMetadataRef LLVMMDStringInContext2(LLVMContextRef C, const char *Str,
1118                                        size_t SLen) {
1119   return wrap(MDString::get(*unwrap(C), StringRef(Str, SLen)));
1120 }
1121 
1122 LLVMMetadataRef LLVMMDNodeInContext2(LLVMContextRef C, LLVMMetadataRef *MDs,
1123                                      size_t Count) {
1124   return wrap(MDNode::get(*unwrap(C), ArrayRef<Metadata*>(unwrap(MDs), Count)));
1125 }
1126 
1127 LLVMValueRef LLVMMDStringInContext(LLVMContextRef C, const char *Str,
1128                                    unsigned SLen) {
1129   LLVMContext &Context = *unwrap(C);
1130   return wrap(MetadataAsValue::get(
1131       Context, MDString::get(Context, StringRef(Str, SLen))));
1132 }
1133 
1134 LLVMValueRef LLVMMDString(const char *Str, unsigned SLen) {
1135   return LLVMMDStringInContext(LLVMGetGlobalContext(), Str, SLen);
1136 }
1137 
1138 LLVMValueRef LLVMMDNodeInContext(LLVMContextRef C, LLVMValueRef *Vals,
1139                                  unsigned Count) {
1140   LLVMContext &Context = *unwrap(C);
1141   SmallVector<Metadata *, 8> MDs;
1142   for (auto *OV : makeArrayRef(Vals, Count)) {
1143     Value *V = unwrap(OV);
1144     Metadata *MD;
1145     if (!V)
1146       MD = nullptr;
1147     else if (auto *C = dyn_cast<Constant>(V))
1148       MD = ConstantAsMetadata::get(C);
1149     else if (auto *MDV = dyn_cast<MetadataAsValue>(V)) {
1150       MD = MDV->getMetadata();
1151       assert(!isa<LocalAsMetadata>(MD) && "Unexpected function-local metadata "
1152                                           "outside of direct argument to call");
1153     } else {
1154       // This is function-local metadata.  Pretend to make an MDNode.
1155       assert(Count == 1 &&
1156              "Expected only one operand to function-local metadata");
1157       return wrap(MetadataAsValue::get(Context, LocalAsMetadata::get(V)));
1158     }
1159 
1160     MDs.push_back(MD);
1161   }
1162   return wrap(MetadataAsValue::get(Context, MDNode::get(Context, MDs)));
1163 }
1164 
1165 LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count) {
1166   return LLVMMDNodeInContext(LLVMGetGlobalContext(), Vals, Count);
1167 }
1168 
1169 LLVMValueRef LLVMMetadataAsValue(LLVMContextRef C, LLVMMetadataRef MD) {
1170   return wrap(MetadataAsValue::get(*unwrap(C), unwrap(MD)));
1171 }
1172 
1173 LLVMMetadataRef LLVMValueAsMetadata(LLVMValueRef Val) {
1174   auto *V = unwrap(Val);
1175   if (auto *C = dyn_cast<Constant>(V))
1176     return wrap(ConstantAsMetadata::get(C));
1177   if (auto *MAV = dyn_cast<MetadataAsValue>(V))
1178     return wrap(MAV->getMetadata());
1179   return wrap(ValueAsMetadata::get(V));
1180 }
1181 
1182 const char *LLVMGetMDString(LLVMValueRef V, unsigned *Length) {
1183   if (const auto *MD = dyn_cast<MetadataAsValue>(unwrap(V)))
1184     if (const MDString *S = dyn_cast<MDString>(MD->getMetadata())) {
1185       *Length = S->getString().size();
1186       return S->getString().data();
1187     }
1188   *Length = 0;
1189   return nullptr;
1190 }
1191 
1192 unsigned LLVMGetMDNodeNumOperands(LLVMValueRef V) {
1193   auto *MD = cast<MetadataAsValue>(unwrap(V));
1194   if (isa<ValueAsMetadata>(MD->getMetadata()))
1195     return 1;
1196   return cast<MDNode>(MD->getMetadata())->getNumOperands();
1197 }
1198 
1199 LLVMNamedMDNodeRef LLVMGetFirstNamedMetadata(LLVMModuleRef M) {
1200   Module *Mod = unwrap(M);
1201   Module::named_metadata_iterator I = Mod->named_metadata_begin();
1202   if (I == Mod->named_metadata_end())
1203     return nullptr;
1204   return wrap(&*I);
1205 }
1206 
1207 LLVMNamedMDNodeRef LLVMGetLastNamedMetadata(LLVMModuleRef M) {
1208   Module *Mod = unwrap(M);
1209   Module::named_metadata_iterator I = Mod->named_metadata_end();
1210   if (I == Mod->named_metadata_begin())
1211     return nullptr;
1212   return wrap(&*--I);
1213 }
1214 
1215 LLVMNamedMDNodeRef LLVMGetNextNamedMetadata(LLVMNamedMDNodeRef NMD) {
1216   NamedMDNode *NamedNode = unwrap<NamedMDNode>(NMD);
1217   Module::named_metadata_iterator I(NamedNode);
1218   if (++I == NamedNode->getParent()->named_metadata_end())
1219     return nullptr;
1220   return wrap(&*I);
1221 }
1222 
1223 LLVMNamedMDNodeRef LLVMGetPreviousNamedMetadata(LLVMNamedMDNodeRef NMD) {
1224   NamedMDNode *NamedNode = unwrap<NamedMDNode>(NMD);
1225   Module::named_metadata_iterator I(NamedNode);
1226   if (I == NamedNode->getParent()->named_metadata_begin())
1227     return nullptr;
1228   return wrap(&*--I);
1229 }
1230 
1231 LLVMNamedMDNodeRef LLVMGetNamedMetadata(LLVMModuleRef M,
1232                                         const char *Name, size_t NameLen) {
1233   return wrap(unwrap(M)->getNamedMetadata(StringRef(Name, NameLen)));
1234 }
1235 
1236 LLVMNamedMDNodeRef LLVMGetOrInsertNamedMetadata(LLVMModuleRef M,
1237                                                 const char *Name, size_t NameLen) {
1238   return wrap(unwrap(M)->getOrInsertNamedMetadata({Name, NameLen}));
1239 }
1240 
1241 const char *LLVMGetNamedMetadataName(LLVMNamedMDNodeRef NMD, size_t *NameLen) {
1242   NamedMDNode *NamedNode = unwrap<NamedMDNode>(NMD);
1243   *NameLen = NamedNode->getName().size();
1244   return NamedNode->getName().data();
1245 }
1246 
1247 void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest) {
1248   auto *MD = cast<MetadataAsValue>(unwrap(V));
1249   if (auto *MDV = dyn_cast<ValueAsMetadata>(MD->getMetadata())) {
1250     *Dest = wrap(MDV->getValue());
1251     return;
1252   }
1253   const auto *N = cast<MDNode>(MD->getMetadata());
1254   const unsigned numOperands = N->getNumOperands();
1255   LLVMContext &Context = unwrap(V)->getContext();
1256   for (unsigned i = 0; i < numOperands; i++)
1257     Dest[i] = getMDNodeOperandImpl(Context, N, i);
1258 }
1259 
1260 unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char *Name) {
1261   if (NamedMDNode *N = unwrap(M)->getNamedMetadata(Name)) {
1262     return N->getNumOperands();
1263   }
1264   return 0;
1265 }
1266 
1267 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char *Name,
1268                                   LLVMValueRef *Dest) {
1269   NamedMDNode *N = unwrap(M)->getNamedMetadata(Name);
1270   if (!N)
1271     return;
1272   LLVMContext &Context = unwrap(M)->getContext();
1273   for (unsigned i=0;i<N->getNumOperands();i++)
1274     Dest[i] = wrap(MetadataAsValue::get(Context, N->getOperand(i)));
1275 }
1276 
1277 void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char *Name,
1278                                  LLVMValueRef Val) {
1279   NamedMDNode *N = unwrap(M)->getOrInsertNamedMetadata(Name);
1280   if (!N)
1281     return;
1282   if (!Val)
1283     return;
1284   N->addOperand(extractMDNode(unwrap<MetadataAsValue>(Val)));
1285 }
1286 
1287 const char *LLVMGetDebugLocDirectory(LLVMValueRef Val, unsigned *Length) {
1288   if (!Length) return nullptr;
1289   StringRef S;
1290   if (const auto *I = dyn_cast<Instruction>(unwrap(Val))) {
1291     if (const auto &DL = I->getDebugLoc()) {
1292       S = DL->getDirectory();
1293     }
1294   } else if (const auto *GV = dyn_cast<GlobalVariable>(unwrap(Val))) {
1295     SmallVector<DIGlobalVariableExpression *, 1> GVEs;
1296     GV->getDebugInfo(GVEs);
1297     if (GVEs.size())
1298       if (const DIGlobalVariable *DGV = GVEs[0]->getVariable())
1299         S = DGV->getDirectory();
1300   } else if (const auto *F = dyn_cast<Function>(unwrap(Val))) {
1301     if (const DISubprogram *DSP = F->getSubprogram())
1302       S = DSP->getDirectory();
1303   } else {
1304     assert(0 && "Expected Instruction, GlobalVariable or Function");
1305     return nullptr;
1306   }
1307   *Length = S.size();
1308   return S.data();
1309 }
1310 
1311 const char *LLVMGetDebugLocFilename(LLVMValueRef Val, unsigned *Length) {
1312   if (!Length) return nullptr;
1313   StringRef S;
1314   if (const auto *I = dyn_cast<Instruction>(unwrap(Val))) {
1315     if (const auto &DL = I->getDebugLoc()) {
1316       S = DL->getFilename();
1317     }
1318   } else if (const auto *GV = dyn_cast<GlobalVariable>(unwrap(Val))) {
1319     SmallVector<DIGlobalVariableExpression *, 1> GVEs;
1320     GV->getDebugInfo(GVEs);
1321     if (GVEs.size())
1322       if (const DIGlobalVariable *DGV = GVEs[0]->getVariable())
1323         S = DGV->getFilename();
1324   } else if (const auto *F = dyn_cast<Function>(unwrap(Val))) {
1325     if (const DISubprogram *DSP = F->getSubprogram())
1326       S = DSP->getFilename();
1327   } else {
1328     assert(0 && "Expected Instruction, GlobalVariable or Function");
1329     return nullptr;
1330   }
1331   *Length = S.size();
1332   return S.data();
1333 }
1334 
1335 unsigned LLVMGetDebugLocLine(LLVMValueRef Val) {
1336   unsigned L = 0;
1337   if (const auto *I = dyn_cast<Instruction>(unwrap(Val))) {
1338     if (const auto &DL = I->getDebugLoc()) {
1339       L = DL->getLine();
1340     }
1341   } else if (const auto *GV = dyn_cast<GlobalVariable>(unwrap(Val))) {
1342     SmallVector<DIGlobalVariableExpression *, 1> GVEs;
1343     GV->getDebugInfo(GVEs);
1344     if (GVEs.size())
1345       if (const DIGlobalVariable *DGV = GVEs[0]->getVariable())
1346         L = DGV->getLine();
1347   } else if (const auto *F = dyn_cast<Function>(unwrap(Val))) {
1348     if (const DISubprogram *DSP = F->getSubprogram())
1349       L = DSP->getLine();
1350   } else {
1351     assert(0 && "Expected Instruction, GlobalVariable or Function");
1352     return -1;
1353   }
1354   return L;
1355 }
1356 
1357 unsigned LLVMGetDebugLocColumn(LLVMValueRef Val) {
1358   unsigned C = 0;
1359   if (const auto *I = dyn_cast<Instruction>(unwrap(Val)))
1360     if (const auto &DL = I->getDebugLoc())
1361       C = DL->getColumn();
1362   return C;
1363 }
1364 
1365 /*--.. Operations on scalar constants ......................................--*/
1366 
1367 LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
1368                           LLVMBool SignExtend) {
1369   return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
1370 }
1371 
1372 LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
1373                                               unsigned NumWords,
1374                                               const uint64_t Words[]) {
1375     IntegerType *Ty = unwrap<IntegerType>(IntTy);
1376     return wrap(ConstantInt::get(Ty->getContext(),
1377                                  APInt(Ty->getBitWidth(),
1378                                        makeArrayRef(Words, NumWords))));
1379 }
1380 
1381 LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char Str[],
1382                                   uint8_t Radix) {
1383   return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str),
1384                                Radix));
1385 }
1386 
1387 LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char Str[],
1388                                          unsigned SLen, uint8_t Radix) {
1389   return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str, SLen),
1390                                Radix));
1391 }
1392 
1393 LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) {
1394   return wrap(ConstantFP::get(unwrap(RealTy), N));
1395 }
1396 
1397 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) {
1398   return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Text)));
1399 }
1400 
1401 LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char Str[],
1402                                           unsigned SLen) {
1403   return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Str, SLen)));
1404 }
1405 
1406 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
1407   return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
1408 }
1409 
1410 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
1411   return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
1412 }
1413 
1414 double LLVMConstRealGetDouble(LLVMValueRef ConstantVal, LLVMBool *LosesInfo) {
1415   ConstantFP *cFP = unwrap<ConstantFP>(ConstantVal) ;
1416   Type *Ty = cFP->getType();
1417 
1418   if (Ty->isHalfTy() || Ty->isBFloatTy() || Ty->isFloatTy() ||
1419       Ty->isDoubleTy()) {
1420     *LosesInfo = false;
1421     return cFP->getValueAPF().convertToDouble();
1422   }
1423 
1424   bool APFLosesInfo;
1425   APFloat APF = cFP->getValueAPF();
1426   APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &APFLosesInfo);
1427   *LosesInfo = APFLosesInfo;
1428   return APF.convertToDouble();
1429 }
1430 
1431 /*--.. Operations on composite constants ...................................--*/
1432 
1433 LLVMValueRef LLVMConstStringInContext(LLVMContextRef C, const char *Str,
1434                                       unsigned Length,
1435                                       LLVMBool DontNullTerminate) {
1436   /* Inverted the sense of AddNull because ', 0)' is a
1437      better mnemonic for null termination than ', 1)'. */
1438   return wrap(ConstantDataArray::getString(*unwrap(C), StringRef(Str, Length),
1439                                            DontNullTerminate == 0));
1440 }
1441 
1442 LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
1443                              LLVMBool DontNullTerminate) {
1444   return LLVMConstStringInContext(LLVMGetGlobalContext(), Str, Length,
1445                                   DontNullTerminate);
1446 }
1447 
1448 LLVMValueRef LLVMGetAggregateElement(LLVMValueRef C, unsigned Idx) {
1449   return wrap(unwrap<Constant>(C)->getAggregateElement(Idx));
1450 }
1451 
1452 LLVMValueRef LLVMGetElementAsConstant(LLVMValueRef C, unsigned idx) {
1453   return wrap(unwrap<ConstantDataSequential>(C)->getElementAsConstant(idx));
1454 }
1455 
1456 LLVMBool LLVMIsConstantString(LLVMValueRef C) {
1457   return unwrap<ConstantDataSequential>(C)->isString();
1458 }
1459 
1460 const char *LLVMGetAsString(LLVMValueRef C, size_t *Length) {
1461   StringRef Str = unwrap<ConstantDataSequential>(C)->getAsString();
1462   *Length = Str.size();
1463   return Str.data();
1464 }
1465 
1466 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
1467                             LLVMValueRef *ConstantVals, unsigned Length) {
1468   ArrayRef<Constant*> V(unwrap<Constant>(ConstantVals, Length), Length);
1469   return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length), V));
1470 }
1471 
1472 LLVMValueRef LLVMConstStructInContext(LLVMContextRef C,
1473                                       LLVMValueRef *ConstantVals,
1474                                       unsigned Count, LLVMBool Packed) {
1475   Constant **Elements = unwrap<Constant>(ConstantVals, Count);
1476   return wrap(ConstantStruct::getAnon(*unwrap(C), makeArrayRef(Elements, Count),
1477                                       Packed != 0));
1478 }
1479 
1480 LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
1481                              LLVMBool Packed) {
1482   return LLVMConstStructInContext(LLVMGetGlobalContext(), ConstantVals, Count,
1483                                   Packed);
1484 }
1485 
1486 LLVMValueRef LLVMConstNamedStruct(LLVMTypeRef StructTy,
1487                                   LLVMValueRef *ConstantVals,
1488                                   unsigned Count) {
1489   Constant **Elements = unwrap<Constant>(ConstantVals, Count);
1490   StructType *Ty = cast<StructType>(unwrap(StructTy));
1491 
1492   return wrap(ConstantStruct::get(Ty, makeArrayRef(Elements, Count)));
1493 }
1494 
1495 LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size) {
1496   return wrap(ConstantVector::get(makeArrayRef(
1497                             unwrap<Constant>(ScalarConstantVals, Size), Size)));
1498 }
1499 
1500 /*-- Opcode mapping */
1501 
1502 static LLVMOpcode map_to_llvmopcode(int opcode)
1503 {
1504     switch (opcode) {
1505       default: llvm_unreachable("Unhandled Opcode.");
1506 #define HANDLE_INST(num, opc, clas) case num: return LLVM##opc;
1507 #include "llvm/IR/Instruction.def"
1508 #undef HANDLE_INST
1509     }
1510 }
1511 
1512 static int map_from_llvmopcode(LLVMOpcode code)
1513 {
1514     switch (code) {
1515 #define HANDLE_INST(num, opc, clas) case LLVM##opc: return num;
1516 #include "llvm/IR/Instruction.def"
1517 #undef HANDLE_INST
1518     }
1519     llvm_unreachable("Unhandled Opcode.");
1520 }
1521 
1522 /*--.. Constant expressions ................................................--*/
1523 
1524 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
1525   return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode());
1526 }
1527 
1528 LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty) {
1529   return wrap(ConstantExpr::getAlignOf(unwrap(Ty)));
1530 }
1531 
1532 LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty) {
1533   return wrap(ConstantExpr::getSizeOf(unwrap(Ty)));
1534 }
1535 
1536 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
1537   return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
1538 }
1539 
1540 LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal) {
1541   return wrap(ConstantExpr::getNSWNeg(unwrap<Constant>(ConstantVal)));
1542 }
1543 
1544 LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal) {
1545   return wrap(ConstantExpr::getNUWNeg(unwrap<Constant>(ConstantVal)));
1546 }
1547 
1548 
1549 LLVMValueRef LLVMConstFNeg(LLVMValueRef ConstantVal) {
1550   return wrap(ConstantExpr::getFNeg(unwrap<Constant>(ConstantVal)));
1551 }
1552 
1553 LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal) {
1554   return wrap(ConstantExpr::getNot(unwrap<Constant>(ConstantVal)));
1555 }
1556 
1557 LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1558   return wrap(ConstantExpr::getAdd(unwrap<Constant>(LHSConstant),
1559                                    unwrap<Constant>(RHSConstant)));
1560 }
1561 
1562 LLVMValueRef LLVMConstNSWAdd(LLVMValueRef LHSConstant,
1563                              LLVMValueRef RHSConstant) {
1564   return wrap(ConstantExpr::getNSWAdd(unwrap<Constant>(LHSConstant),
1565                                       unwrap<Constant>(RHSConstant)));
1566 }
1567 
1568 LLVMValueRef LLVMConstNUWAdd(LLVMValueRef LHSConstant,
1569                              LLVMValueRef RHSConstant) {
1570   return wrap(ConstantExpr::getNUWAdd(unwrap<Constant>(LHSConstant),
1571                                       unwrap<Constant>(RHSConstant)));
1572 }
1573 
1574 LLVMValueRef LLVMConstFAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1575   return wrap(ConstantExpr::getFAdd(unwrap<Constant>(LHSConstant),
1576                                     unwrap<Constant>(RHSConstant)));
1577 }
1578 
1579 LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1580   return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant),
1581                                    unwrap<Constant>(RHSConstant)));
1582 }
1583 
1584 LLVMValueRef LLVMConstNSWSub(LLVMValueRef LHSConstant,
1585                              LLVMValueRef RHSConstant) {
1586   return wrap(ConstantExpr::getNSWSub(unwrap<Constant>(LHSConstant),
1587                                       unwrap<Constant>(RHSConstant)));
1588 }
1589 
1590 LLVMValueRef LLVMConstNUWSub(LLVMValueRef LHSConstant,
1591                              LLVMValueRef RHSConstant) {
1592   return wrap(ConstantExpr::getNUWSub(unwrap<Constant>(LHSConstant),
1593                                       unwrap<Constant>(RHSConstant)));
1594 }
1595 
1596 LLVMValueRef LLVMConstFSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1597   return wrap(ConstantExpr::getFSub(unwrap<Constant>(LHSConstant),
1598                                     unwrap<Constant>(RHSConstant)));
1599 }
1600 
1601 LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1602   return wrap(ConstantExpr::getMul(unwrap<Constant>(LHSConstant),
1603                                    unwrap<Constant>(RHSConstant)));
1604 }
1605 
1606 LLVMValueRef LLVMConstNSWMul(LLVMValueRef LHSConstant,
1607                              LLVMValueRef RHSConstant) {
1608   return wrap(ConstantExpr::getNSWMul(unwrap<Constant>(LHSConstant),
1609                                       unwrap<Constant>(RHSConstant)));
1610 }
1611 
1612 LLVMValueRef LLVMConstNUWMul(LLVMValueRef LHSConstant,
1613                              LLVMValueRef RHSConstant) {
1614   return wrap(ConstantExpr::getNUWMul(unwrap<Constant>(LHSConstant),
1615                                       unwrap<Constant>(RHSConstant)));
1616 }
1617 
1618 LLVMValueRef LLVMConstFMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1619   return wrap(ConstantExpr::getFMul(unwrap<Constant>(LHSConstant),
1620                                     unwrap<Constant>(RHSConstant)));
1621 }
1622 
1623 LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1624   return wrap(ConstantExpr::getFDiv(unwrap<Constant>(LHSConstant),
1625                                     unwrap<Constant>(RHSConstant)));
1626 }
1627 
1628 LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1629   return wrap(ConstantExpr::getFRem(unwrap<Constant>(LHSConstant),
1630                                     unwrap<Constant>(RHSConstant)));
1631 }
1632 
1633 LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1634   return wrap(ConstantExpr::getAnd(unwrap<Constant>(LHSConstant),
1635                                    unwrap<Constant>(RHSConstant)));
1636 }
1637 
1638 LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1639   return wrap(ConstantExpr::getOr(unwrap<Constant>(LHSConstant),
1640                                   unwrap<Constant>(RHSConstant)));
1641 }
1642 
1643 LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1644   return wrap(ConstantExpr::getXor(unwrap<Constant>(LHSConstant),
1645                                    unwrap<Constant>(RHSConstant)));
1646 }
1647 
1648 LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
1649                            LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1650   return wrap(ConstantExpr::getICmp(Predicate,
1651                                     unwrap<Constant>(LHSConstant),
1652                                     unwrap<Constant>(RHSConstant)));
1653 }
1654 
1655 LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
1656                            LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1657   return wrap(ConstantExpr::getFCmp(Predicate,
1658                                     unwrap<Constant>(LHSConstant),
1659                                     unwrap<Constant>(RHSConstant)));
1660 }
1661 
1662 LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1663   return wrap(ConstantExpr::getShl(unwrap<Constant>(LHSConstant),
1664                                    unwrap<Constant>(RHSConstant)));
1665 }
1666 
1667 LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1668   return wrap(ConstantExpr::getLShr(unwrap<Constant>(LHSConstant),
1669                                     unwrap<Constant>(RHSConstant)));
1670 }
1671 
1672 LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
1673   return wrap(ConstantExpr::getAShr(unwrap<Constant>(LHSConstant),
1674                                     unwrap<Constant>(RHSConstant)));
1675 }
1676 
1677 LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
1678                           LLVMValueRef *ConstantIndices, unsigned NumIndices) {
1679   ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
1680                                NumIndices);
1681   Constant *Val = unwrap<Constant>(ConstantVal);
1682   Type *Ty = Val->getType()->getScalarType()->getNonOpaquePointerElementType();
1683   return wrap(ConstantExpr::getGetElementPtr(Ty, Val, IdxList));
1684 }
1685 
1686 LLVMValueRef LLVMConstGEP2(LLVMTypeRef Ty, LLVMValueRef ConstantVal,
1687                            LLVMValueRef *ConstantIndices, unsigned NumIndices) {
1688   ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
1689                                NumIndices);
1690   Constant *Val = unwrap<Constant>(ConstantVal);
1691   return wrap(ConstantExpr::getGetElementPtr(unwrap(Ty), Val, IdxList));
1692 }
1693 
1694 LLVMValueRef LLVMConstInBoundsGEP(LLVMValueRef ConstantVal,
1695                                   LLVMValueRef *ConstantIndices,
1696                                   unsigned NumIndices) {
1697   ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
1698                                NumIndices);
1699   Constant *Val = unwrap<Constant>(ConstantVal);
1700   Type *Ty = Val->getType()->getScalarType()->getNonOpaquePointerElementType();
1701   return wrap(ConstantExpr::getInBoundsGetElementPtr(Ty, Val, IdxList));
1702 }
1703 
1704 LLVMValueRef LLVMConstInBoundsGEP2(LLVMTypeRef Ty, LLVMValueRef ConstantVal,
1705                                    LLVMValueRef *ConstantIndices,
1706                                    unsigned NumIndices) {
1707   ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
1708                                NumIndices);
1709   Constant *Val = unwrap<Constant>(ConstantVal);
1710   return wrap(ConstantExpr::getInBoundsGetElementPtr(unwrap(Ty), Val, IdxList));
1711 }
1712 
1713 LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1714   return wrap(ConstantExpr::getTrunc(unwrap<Constant>(ConstantVal),
1715                                      unwrap(ToType)));
1716 }
1717 
1718 LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1719   return wrap(ConstantExpr::getSExt(unwrap<Constant>(ConstantVal),
1720                                     unwrap(ToType)));
1721 }
1722 
1723 LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1724   return wrap(ConstantExpr::getZExt(unwrap<Constant>(ConstantVal),
1725                                     unwrap(ToType)));
1726 }
1727 
1728 LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1729   return wrap(ConstantExpr::getFPTrunc(unwrap<Constant>(ConstantVal),
1730                                        unwrap(ToType)));
1731 }
1732 
1733 LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1734   return wrap(ConstantExpr::getFPExtend(unwrap<Constant>(ConstantVal),
1735                                         unwrap(ToType)));
1736 }
1737 
1738 LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1739   return wrap(ConstantExpr::getUIToFP(unwrap<Constant>(ConstantVal),
1740                                       unwrap(ToType)));
1741 }
1742 
1743 LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1744   return wrap(ConstantExpr::getSIToFP(unwrap<Constant>(ConstantVal),
1745                                       unwrap(ToType)));
1746 }
1747 
1748 LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1749   return wrap(ConstantExpr::getFPToUI(unwrap<Constant>(ConstantVal),
1750                                       unwrap(ToType)));
1751 }
1752 
1753 LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1754   return wrap(ConstantExpr::getFPToSI(unwrap<Constant>(ConstantVal),
1755                                       unwrap(ToType)));
1756 }
1757 
1758 LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1759   return wrap(ConstantExpr::getPtrToInt(unwrap<Constant>(ConstantVal),
1760                                         unwrap(ToType)));
1761 }
1762 
1763 LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1764   return wrap(ConstantExpr::getIntToPtr(unwrap<Constant>(ConstantVal),
1765                                         unwrap(ToType)));
1766 }
1767 
1768 LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1769   return wrap(ConstantExpr::getBitCast(unwrap<Constant>(ConstantVal),
1770                                        unwrap(ToType)));
1771 }
1772 
1773 LLVMValueRef LLVMConstAddrSpaceCast(LLVMValueRef ConstantVal,
1774                                     LLVMTypeRef ToType) {
1775   return wrap(ConstantExpr::getAddrSpaceCast(unwrap<Constant>(ConstantVal),
1776                                              unwrap(ToType)));
1777 }
1778 
1779 LLVMValueRef LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal,
1780                                     LLVMTypeRef ToType) {
1781   return wrap(ConstantExpr::getZExtOrBitCast(unwrap<Constant>(ConstantVal),
1782                                              unwrap(ToType)));
1783 }
1784 
1785 LLVMValueRef LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal,
1786                                     LLVMTypeRef ToType) {
1787   return wrap(ConstantExpr::getSExtOrBitCast(unwrap<Constant>(ConstantVal),
1788                                              unwrap(ToType)));
1789 }
1790 
1791 LLVMValueRef LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal,
1792                                      LLVMTypeRef ToType) {
1793   return wrap(ConstantExpr::getTruncOrBitCast(unwrap<Constant>(ConstantVal),
1794                                               unwrap(ToType)));
1795 }
1796 
1797 LLVMValueRef LLVMConstPointerCast(LLVMValueRef ConstantVal,
1798                                   LLVMTypeRef ToType) {
1799   return wrap(ConstantExpr::getPointerCast(unwrap<Constant>(ConstantVal),
1800                                            unwrap(ToType)));
1801 }
1802 
1803 LLVMValueRef LLVMConstIntCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType,
1804                               LLVMBool isSigned) {
1805   return wrap(ConstantExpr::getIntegerCast(unwrap<Constant>(ConstantVal),
1806                                            unwrap(ToType), isSigned));
1807 }
1808 
1809 LLVMValueRef LLVMConstFPCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
1810   return wrap(ConstantExpr::getFPCast(unwrap<Constant>(ConstantVal),
1811                                       unwrap(ToType)));
1812 }
1813 
1814 LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
1815                              LLVMValueRef ConstantIfTrue,
1816                              LLVMValueRef ConstantIfFalse) {
1817   return wrap(ConstantExpr::getSelect(unwrap<Constant>(ConstantCondition),
1818                                       unwrap<Constant>(ConstantIfTrue),
1819                                       unwrap<Constant>(ConstantIfFalse)));
1820 }
1821 
1822 LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
1823                                      LLVMValueRef IndexConstant) {
1824   return wrap(ConstantExpr::getExtractElement(unwrap<Constant>(VectorConstant),
1825                                               unwrap<Constant>(IndexConstant)));
1826 }
1827 
1828 LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
1829                                     LLVMValueRef ElementValueConstant,
1830                                     LLVMValueRef IndexConstant) {
1831   return wrap(ConstantExpr::getInsertElement(unwrap<Constant>(VectorConstant),
1832                                          unwrap<Constant>(ElementValueConstant),
1833                                              unwrap<Constant>(IndexConstant)));
1834 }
1835 
1836 LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
1837                                     LLVMValueRef VectorBConstant,
1838                                     LLVMValueRef MaskConstant) {
1839   SmallVector<int, 16> IntMask;
1840   ShuffleVectorInst::getShuffleMask(unwrap<Constant>(MaskConstant), IntMask);
1841   return wrap(ConstantExpr::getShuffleVector(unwrap<Constant>(VectorAConstant),
1842                                              unwrap<Constant>(VectorBConstant),
1843                                              IntMask));
1844 }
1845 
1846 LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString,
1847                                 const char *Constraints,
1848                                 LLVMBool HasSideEffects,
1849                                 LLVMBool IsAlignStack) {
1850   return wrap(InlineAsm::get(dyn_cast<FunctionType>(unwrap(Ty)), AsmString,
1851                              Constraints, HasSideEffects, IsAlignStack));
1852 }
1853 
1854 LLVMValueRef LLVMBlockAddress(LLVMValueRef F, LLVMBasicBlockRef BB) {
1855   return wrap(BlockAddress::get(unwrap<Function>(F), unwrap(BB)));
1856 }
1857 
1858 /*--.. Operations on global variables, functions, and aliases (globals) ....--*/
1859 
1860 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) {
1861   return wrap(unwrap<GlobalValue>(Global)->getParent());
1862 }
1863 
1864 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) {
1865   return unwrap<GlobalValue>(Global)->isDeclaration();
1866 }
1867 
1868 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) {
1869   switch (unwrap<GlobalValue>(Global)->getLinkage()) {
1870   case GlobalValue::ExternalLinkage:
1871     return LLVMExternalLinkage;
1872   case GlobalValue::AvailableExternallyLinkage:
1873     return LLVMAvailableExternallyLinkage;
1874   case GlobalValue::LinkOnceAnyLinkage:
1875     return LLVMLinkOnceAnyLinkage;
1876   case GlobalValue::LinkOnceODRLinkage:
1877     return LLVMLinkOnceODRLinkage;
1878   case GlobalValue::WeakAnyLinkage:
1879     return LLVMWeakAnyLinkage;
1880   case GlobalValue::WeakODRLinkage:
1881     return LLVMWeakODRLinkage;
1882   case GlobalValue::AppendingLinkage:
1883     return LLVMAppendingLinkage;
1884   case GlobalValue::InternalLinkage:
1885     return LLVMInternalLinkage;
1886   case GlobalValue::PrivateLinkage:
1887     return LLVMPrivateLinkage;
1888   case GlobalValue::ExternalWeakLinkage:
1889     return LLVMExternalWeakLinkage;
1890   case GlobalValue::CommonLinkage:
1891     return LLVMCommonLinkage;
1892   }
1893 
1894   llvm_unreachable("Invalid GlobalValue linkage!");
1895 }
1896 
1897 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) {
1898   GlobalValue *GV = unwrap<GlobalValue>(Global);
1899 
1900   switch (Linkage) {
1901   case LLVMExternalLinkage:
1902     GV->setLinkage(GlobalValue::ExternalLinkage);
1903     break;
1904   case LLVMAvailableExternallyLinkage:
1905     GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
1906     break;
1907   case LLVMLinkOnceAnyLinkage:
1908     GV->setLinkage(GlobalValue::LinkOnceAnyLinkage);
1909     break;
1910   case LLVMLinkOnceODRLinkage:
1911     GV->setLinkage(GlobalValue::LinkOnceODRLinkage);
1912     break;
1913   case LLVMLinkOnceODRAutoHideLinkage:
1914     LLVM_DEBUG(
1915         errs() << "LLVMSetLinkage(): LLVMLinkOnceODRAutoHideLinkage is no "
1916                   "longer supported.");
1917     break;
1918   case LLVMWeakAnyLinkage:
1919     GV->setLinkage(GlobalValue::WeakAnyLinkage);
1920     break;
1921   case LLVMWeakODRLinkage:
1922     GV->setLinkage(GlobalValue::WeakODRLinkage);
1923     break;
1924   case LLVMAppendingLinkage:
1925     GV->setLinkage(GlobalValue::AppendingLinkage);
1926     break;
1927   case LLVMInternalLinkage:
1928     GV->setLinkage(GlobalValue::InternalLinkage);
1929     break;
1930   case LLVMPrivateLinkage:
1931     GV->setLinkage(GlobalValue::PrivateLinkage);
1932     break;
1933   case LLVMLinkerPrivateLinkage:
1934     GV->setLinkage(GlobalValue::PrivateLinkage);
1935     break;
1936   case LLVMLinkerPrivateWeakLinkage:
1937     GV->setLinkage(GlobalValue::PrivateLinkage);
1938     break;
1939   case LLVMDLLImportLinkage:
1940     LLVM_DEBUG(
1941         errs()
1942         << "LLVMSetLinkage(): LLVMDLLImportLinkage is no longer supported.");
1943     break;
1944   case LLVMDLLExportLinkage:
1945     LLVM_DEBUG(
1946         errs()
1947         << "LLVMSetLinkage(): LLVMDLLExportLinkage is no longer supported.");
1948     break;
1949   case LLVMExternalWeakLinkage:
1950     GV->setLinkage(GlobalValue::ExternalWeakLinkage);
1951     break;
1952   case LLVMGhostLinkage:
1953     LLVM_DEBUG(
1954         errs() << "LLVMSetLinkage(): LLVMGhostLinkage is no longer supported.");
1955     break;
1956   case LLVMCommonLinkage:
1957     GV->setLinkage(GlobalValue::CommonLinkage);
1958     break;
1959   }
1960 }
1961 
1962 const char *LLVMGetSection(LLVMValueRef Global) {
1963   // Using .data() is safe because of how GlobalObject::setSection is
1964   // implemented.
1965   return unwrap<GlobalValue>(Global)->getSection().data();
1966 }
1967 
1968 void LLVMSetSection(LLVMValueRef Global, const char *Section) {
1969   unwrap<GlobalObject>(Global)->setSection(Section);
1970 }
1971 
1972 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) {
1973   return static_cast<LLVMVisibility>(
1974     unwrap<GlobalValue>(Global)->getVisibility());
1975 }
1976 
1977 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) {
1978   unwrap<GlobalValue>(Global)
1979     ->setVisibility(static_cast<GlobalValue::VisibilityTypes>(Viz));
1980 }
1981 
1982 LLVMDLLStorageClass LLVMGetDLLStorageClass(LLVMValueRef Global) {
1983   return static_cast<LLVMDLLStorageClass>(
1984       unwrap<GlobalValue>(Global)->getDLLStorageClass());
1985 }
1986 
1987 void LLVMSetDLLStorageClass(LLVMValueRef Global, LLVMDLLStorageClass Class) {
1988   unwrap<GlobalValue>(Global)->setDLLStorageClass(
1989       static_cast<GlobalValue::DLLStorageClassTypes>(Class));
1990 }
1991 
1992 LLVMUnnamedAddr LLVMGetUnnamedAddress(LLVMValueRef Global) {
1993   switch (unwrap<GlobalValue>(Global)->getUnnamedAddr()) {
1994   case GlobalVariable::UnnamedAddr::None:
1995     return LLVMNoUnnamedAddr;
1996   case GlobalVariable::UnnamedAddr::Local:
1997     return LLVMLocalUnnamedAddr;
1998   case GlobalVariable::UnnamedAddr::Global:
1999     return LLVMGlobalUnnamedAddr;
2000   }
2001   llvm_unreachable("Unknown UnnamedAddr kind!");
2002 }
2003 
2004 void LLVMSetUnnamedAddress(LLVMValueRef Global, LLVMUnnamedAddr UnnamedAddr) {
2005   GlobalValue *GV = unwrap<GlobalValue>(Global);
2006 
2007   switch (UnnamedAddr) {
2008   case LLVMNoUnnamedAddr:
2009     return GV->setUnnamedAddr(GlobalVariable::UnnamedAddr::None);
2010   case LLVMLocalUnnamedAddr:
2011     return GV->setUnnamedAddr(GlobalVariable::UnnamedAddr::Local);
2012   case LLVMGlobalUnnamedAddr:
2013     return GV->setUnnamedAddr(GlobalVariable::UnnamedAddr::Global);
2014   }
2015 }
2016 
2017 LLVMBool LLVMHasUnnamedAddr(LLVMValueRef Global) {
2018   return unwrap<GlobalValue>(Global)->hasGlobalUnnamedAddr();
2019 }
2020 
2021 void LLVMSetUnnamedAddr(LLVMValueRef Global, LLVMBool HasUnnamedAddr) {
2022   unwrap<GlobalValue>(Global)->setUnnamedAddr(
2023       HasUnnamedAddr ? GlobalValue::UnnamedAddr::Global
2024                      : GlobalValue::UnnamedAddr::None);
2025 }
2026 
2027 LLVMTypeRef LLVMGlobalGetValueType(LLVMValueRef Global) {
2028   return wrap(unwrap<GlobalValue>(Global)->getValueType());
2029 }
2030 
2031 /*--.. Operations on global variables, load and store instructions .........--*/
2032 
2033 unsigned LLVMGetAlignment(LLVMValueRef V) {
2034   Value *P = unwrap<Value>(V);
2035   if (GlobalObject *GV = dyn_cast<GlobalObject>(P))
2036     return GV->getAlign() ? GV->getAlign()->value() : 0;
2037   if (AllocaInst *AI = dyn_cast<AllocaInst>(P))
2038     return AI->getAlign().value();
2039   if (LoadInst *LI = dyn_cast<LoadInst>(P))
2040     return LI->getAlign().value();
2041   if (StoreInst *SI = dyn_cast<StoreInst>(P))
2042     return SI->getAlign().value();
2043   if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(P))
2044     return RMWI->getAlign().value();
2045   if (AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(P))
2046     return CXI->getAlign().value();
2047 
2048   llvm_unreachable(
2049       "only GlobalValue, AllocaInst, LoadInst, StoreInst, AtomicRMWInst, "
2050       "and AtomicCmpXchgInst have alignment");
2051 }
2052 
2053 void LLVMSetAlignment(LLVMValueRef V, unsigned Bytes) {
2054   Value *P = unwrap<Value>(V);
2055   if (GlobalObject *GV = dyn_cast<GlobalObject>(P))
2056     GV->setAlignment(MaybeAlign(Bytes));
2057   else if (AllocaInst *AI = dyn_cast<AllocaInst>(P))
2058     AI->setAlignment(Align(Bytes));
2059   else if (LoadInst *LI = dyn_cast<LoadInst>(P))
2060     LI->setAlignment(Align(Bytes));
2061   else if (StoreInst *SI = dyn_cast<StoreInst>(P))
2062     SI->setAlignment(Align(Bytes));
2063   else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(P))
2064     RMWI->setAlignment(Align(Bytes));
2065   else if (AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(P))
2066     CXI->setAlignment(Align(Bytes));
2067   else
2068     llvm_unreachable(
2069         "only GlobalValue, AllocaInst, LoadInst, StoreInst, AtomicRMWInst, and "
2070         "and AtomicCmpXchgInst have alignment");
2071 }
2072 
2073 LLVMValueMetadataEntry *LLVMGlobalCopyAllMetadata(LLVMValueRef Value,
2074                                                   size_t *NumEntries) {
2075   return llvm_getMetadata(NumEntries, [&Value](MetadataEntries &Entries) {
2076     Entries.clear();
2077     if (Instruction *Instr = dyn_cast<Instruction>(unwrap(Value))) {
2078       Instr->getAllMetadata(Entries);
2079     } else {
2080       unwrap<GlobalObject>(Value)->getAllMetadata(Entries);
2081     }
2082   });
2083 }
2084 
2085 unsigned LLVMValueMetadataEntriesGetKind(LLVMValueMetadataEntry *Entries,
2086                                          unsigned Index) {
2087   LLVMOpaqueValueMetadataEntry MVE =
2088       static_cast<LLVMOpaqueValueMetadataEntry>(Entries[Index]);
2089   return MVE.Kind;
2090 }
2091 
2092 LLVMMetadataRef
2093 LLVMValueMetadataEntriesGetMetadata(LLVMValueMetadataEntry *Entries,
2094                                     unsigned Index) {
2095   LLVMOpaqueValueMetadataEntry MVE =
2096       static_cast<LLVMOpaqueValueMetadataEntry>(Entries[Index]);
2097   return MVE.Metadata;
2098 }
2099 
2100 void LLVMDisposeValueMetadataEntries(LLVMValueMetadataEntry *Entries) {
2101   free(Entries);
2102 }
2103 
2104 void LLVMGlobalSetMetadata(LLVMValueRef Global, unsigned Kind,
2105                            LLVMMetadataRef MD) {
2106   unwrap<GlobalObject>(Global)->setMetadata(Kind, unwrap<MDNode>(MD));
2107 }
2108 
2109 void LLVMGlobalEraseMetadata(LLVMValueRef Global, unsigned Kind) {
2110   unwrap<GlobalObject>(Global)->eraseMetadata(Kind);
2111 }
2112 
2113 void LLVMGlobalClearMetadata(LLVMValueRef Global) {
2114   unwrap<GlobalObject>(Global)->clearMetadata();
2115 }
2116 
2117 /*--.. Operations on global variables ......................................--*/
2118 
2119 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) {
2120   return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
2121                                  GlobalValue::ExternalLinkage, nullptr, Name));
2122 }
2123 
2124 LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty,
2125                                          const char *Name,
2126                                          unsigned AddressSpace) {
2127   return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
2128                                  GlobalValue::ExternalLinkage, nullptr, Name,
2129                                  nullptr, GlobalVariable::NotThreadLocal,
2130                                  AddressSpace));
2131 }
2132 
2133 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) {
2134   return wrap(unwrap(M)->getNamedGlobal(Name));
2135 }
2136 
2137 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) {
2138   Module *Mod = unwrap(M);
2139   Module::global_iterator I = Mod->global_begin();
2140   if (I == Mod->global_end())
2141     return nullptr;
2142   return wrap(&*I);
2143 }
2144 
2145 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) {
2146   Module *Mod = unwrap(M);
2147   Module::global_iterator I = Mod->global_end();
2148   if (I == Mod->global_begin())
2149     return nullptr;
2150   return wrap(&*--I);
2151 }
2152 
2153 LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar) {
2154   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
2155   Module::global_iterator I(GV);
2156   if (++I == GV->getParent()->global_end())
2157     return nullptr;
2158   return wrap(&*I);
2159 }
2160 
2161 LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar) {
2162   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
2163   Module::global_iterator I(GV);
2164   if (I == GV->getParent()->global_begin())
2165     return nullptr;
2166   return wrap(&*--I);
2167 }
2168 
2169 void LLVMDeleteGlobal(LLVMValueRef GlobalVar) {
2170   unwrap<GlobalVariable>(GlobalVar)->eraseFromParent();
2171 }
2172 
2173 LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar) {
2174   GlobalVariable* GV = unwrap<GlobalVariable>(GlobalVar);
2175   if ( !GV->hasInitializer() )
2176     return nullptr;
2177   return wrap(GV->getInitializer());
2178 }
2179 
2180 void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal) {
2181   unwrap<GlobalVariable>(GlobalVar)
2182     ->setInitializer(unwrap<Constant>(ConstantVal));
2183 }
2184 
2185 LLVMBool LLVMIsThreadLocal(LLVMValueRef GlobalVar) {
2186   return unwrap<GlobalVariable>(GlobalVar)->isThreadLocal();
2187 }
2188 
2189 void LLVMSetThreadLocal(LLVMValueRef GlobalVar, LLVMBool IsThreadLocal) {
2190   unwrap<GlobalVariable>(GlobalVar)->setThreadLocal(IsThreadLocal != 0);
2191 }
2192 
2193 LLVMBool LLVMIsGlobalConstant(LLVMValueRef GlobalVar) {
2194   return unwrap<GlobalVariable>(GlobalVar)->isConstant();
2195 }
2196 
2197 void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, LLVMBool IsConstant) {
2198   unwrap<GlobalVariable>(GlobalVar)->setConstant(IsConstant != 0);
2199 }
2200 
2201 LLVMThreadLocalMode LLVMGetThreadLocalMode(LLVMValueRef GlobalVar) {
2202   switch (unwrap<GlobalVariable>(GlobalVar)->getThreadLocalMode()) {
2203   case GlobalVariable::NotThreadLocal:
2204     return LLVMNotThreadLocal;
2205   case GlobalVariable::GeneralDynamicTLSModel:
2206     return LLVMGeneralDynamicTLSModel;
2207   case GlobalVariable::LocalDynamicTLSModel:
2208     return LLVMLocalDynamicTLSModel;
2209   case GlobalVariable::InitialExecTLSModel:
2210     return LLVMInitialExecTLSModel;
2211   case GlobalVariable::LocalExecTLSModel:
2212     return LLVMLocalExecTLSModel;
2213   }
2214 
2215   llvm_unreachable("Invalid GlobalVariable thread local mode");
2216 }
2217 
2218 void LLVMSetThreadLocalMode(LLVMValueRef GlobalVar, LLVMThreadLocalMode Mode) {
2219   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
2220 
2221   switch (Mode) {
2222   case LLVMNotThreadLocal:
2223     GV->setThreadLocalMode(GlobalVariable::NotThreadLocal);
2224     break;
2225   case LLVMGeneralDynamicTLSModel:
2226     GV->setThreadLocalMode(GlobalVariable::GeneralDynamicTLSModel);
2227     break;
2228   case LLVMLocalDynamicTLSModel:
2229     GV->setThreadLocalMode(GlobalVariable::LocalDynamicTLSModel);
2230     break;
2231   case LLVMInitialExecTLSModel:
2232     GV->setThreadLocalMode(GlobalVariable::InitialExecTLSModel);
2233     break;
2234   case LLVMLocalExecTLSModel:
2235     GV->setThreadLocalMode(GlobalVariable::LocalExecTLSModel);
2236     break;
2237   }
2238 }
2239 
2240 LLVMBool LLVMIsExternallyInitialized(LLVMValueRef GlobalVar) {
2241   return unwrap<GlobalVariable>(GlobalVar)->isExternallyInitialized();
2242 }
2243 
2244 void LLVMSetExternallyInitialized(LLVMValueRef GlobalVar, LLVMBool IsExtInit) {
2245   unwrap<GlobalVariable>(GlobalVar)->setExternallyInitialized(IsExtInit);
2246 }
2247 
2248 /*--.. Operations on aliases ......................................--*/
2249 
2250 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
2251                           const char *Name) {
2252   auto *PTy = cast<PointerType>(unwrap(Ty));
2253   return wrap(GlobalAlias::create(PTy->getNonOpaquePointerElementType(),
2254                                   PTy->getAddressSpace(),
2255                                   GlobalValue::ExternalLinkage, Name,
2256                                   unwrap<Constant>(Aliasee), unwrap(M)));
2257 }
2258 
2259 LLVMValueRef LLVMAddAlias2(LLVMModuleRef M, LLVMTypeRef ValueTy,
2260                            unsigned AddrSpace, LLVMValueRef Aliasee,
2261                            const char *Name) {
2262   return wrap(GlobalAlias::create(unwrap(ValueTy), AddrSpace,
2263                                   GlobalValue::ExternalLinkage, Name,
2264                                   unwrap<Constant>(Aliasee), unwrap(M)));
2265 }
2266 
2267 LLVMValueRef LLVMGetNamedGlobalAlias(LLVMModuleRef M,
2268                                      const char *Name, size_t NameLen) {
2269   return wrap(unwrap(M)->getNamedAlias(StringRef(Name, NameLen)));
2270 }
2271 
2272 LLVMValueRef LLVMGetFirstGlobalAlias(LLVMModuleRef M) {
2273   Module *Mod = unwrap(M);
2274   Module::alias_iterator I = Mod->alias_begin();
2275   if (I == Mod->alias_end())
2276     return nullptr;
2277   return wrap(&*I);
2278 }
2279 
2280 LLVMValueRef LLVMGetLastGlobalAlias(LLVMModuleRef M) {
2281   Module *Mod = unwrap(M);
2282   Module::alias_iterator I = Mod->alias_end();
2283   if (I == Mod->alias_begin())
2284     return nullptr;
2285   return wrap(&*--I);
2286 }
2287 
2288 LLVMValueRef LLVMGetNextGlobalAlias(LLVMValueRef GA) {
2289   GlobalAlias *Alias = unwrap<GlobalAlias>(GA);
2290   Module::alias_iterator I(Alias);
2291   if (++I == Alias->getParent()->alias_end())
2292     return nullptr;
2293   return wrap(&*I);
2294 }
2295 
2296 LLVMValueRef LLVMGetPreviousGlobalAlias(LLVMValueRef GA) {
2297   GlobalAlias *Alias = unwrap<GlobalAlias>(GA);
2298   Module::alias_iterator I(Alias);
2299   if (I == Alias->getParent()->alias_begin())
2300     return nullptr;
2301   return wrap(&*--I);
2302 }
2303 
2304 LLVMValueRef LLVMAliasGetAliasee(LLVMValueRef Alias) {
2305   return wrap(unwrap<GlobalAlias>(Alias)->getAliasee());
2306 }
2307 
2308 void LLVMAliasSetAliasee(LLVMValueRef Alias, LLVMValueRef Aliasee) {
2309   unwrap<GlobalAlias>(Alias)->setAliasee(unwrap<Constant>(Aliasee));
2310 }
2311 
2312 /*--.. Operations on functions .............................................--*/
2313 
2314 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
2315                              LLVMTypeRef FunctionTy) {
2316   return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
2317                                GlobalValue::ExternalLinkage, Name, unwrap(M)));
2318 }
2319 
2320 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) {
2321   return wrap(unwrap(M)->getFunction(Name));
2322 }
2323 
2324 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) {
2325   Module *Mod = unwrap(M);
2326   Module::iterator I = Mod->begin();
2327   if (I == Mod->end())
2328     return nullptr;
2329   return wrap(&*I);
2330 }
2331 
2332 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) {
2333   Module *Mod = unwrap(M);
2334   Module::iterator I = Mod->end();
2335   if (I == Mod->begin())
2336     return nullptr;
2337   return wrap(&*--I);
2338 }
2339 
2340 LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn) {
2341   Function *Func = unwrap<Function>(Fn);
2342   Module::iterator I(Func);
2343   if (++I == Func->getParent()->end())
2344     return nullptr;
2345   return wrap(&*I);
2346 }
2347 
2348 LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn) {
2349   Function *Func = unwrap<Function>(Fn);
2350   Module::iterator I(Func);
2351   if (I == Func->getParent()->begin())
2352     return nullptr;
2353   return wrap(&*--I);
2354 }
2355 
2356 void LLVMDeleteFunction(LLVMValueRef Fn) {
2357   unwrap<Function>(Fn)->eraseFromParent();
2358 }
2359 
2360 LLVMBool LLVMHasPersonalityFn(LLVMValueRef Fn) {
2361   return unwrap<Function>(Fn)->hasPersonalityFn();
2362 }
2363 
2364 LLVMValueRef LLVMGetPersonalityFn(LLVMValueRef Fn) {
2365   return wrap(unwrap<Function>(Fn)->getPersonalityFn());
2366 }
2367 
2368 void LLVMSetPersonalityFn(LLVMValueRef Fn, LLVMValueRef PersonalityFn) {
2369   unwrap<Function>(Fn)->setPersonalityFn(unwrap<Constant>(PersonalityFn));
2370 }
2371 
2372 unsigned LLVMGetIntrinsicID(LLVMValueRef Fn) {
2373   if (Function *F = dyn_cast<Function>(unwrap(Fn)))
2374     return F->getIntrinsicID();
2375   return 0;
2376 }
2377 
2378 static Intrinsic::ID llvm_map_to_intrinsic_id(unsigned ID) {
2379   assert(ID < llvm::Intrinsic::num_intrinsics && "Intrinsic ID out of range");
2380   return llvm::Intrinsic::ID(ID);
2381 }
2382 
2383 LLVMValueRef LLVMGetIntrinsicDeclaration(LLVMModuleRef Mod,
2384                                          unsigned ID,
2385                                          LLVMTypeRef *ParamTypes,
2386                                          size_t ParamCount) {
2387   ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
2388   auto IID = llvm_map_to_intrinsic_id(ID);
2389   return wrap(llvm::Intrinsic::getDeclaration(unwrap(Mod), IID, Tys));
2390 }
2391 
2392 const char *LLVMIntrinsicGetName(unsigned ID, size_t *NameLength) {
2393   auto IID = llvm_map_to_intrinsic_id(ID);
2394   auto Str = llvm::Intrinsic::getName(IID);
2395   *NameLength = Str.size();
2396   return Str.data();
2397 }
2398 
2399 LLVMTypeRef LLVMIntrinsicGetType(LLVMContextRef Ctx, unsigned ID,
2400                                  LLVMTypeRef *ParamTypes, size_t ParamCount) {
2401   auto IID = llvm_map_to_intrinsic_id(ID);
2402   ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
2403   return wrap(llvm::Intrinsic::getType(*unwrap(Ctx), IID, Tys));
2404 }
2405 
2406 const char *LLVMIntrinsicCopyOverloadedName(unsigned ID,
2407                                             LLVMTypeRef *ParamTypes,
2408                                             size_t ParamCount,
2409                                             size_t *NameLength) {
2410   auto IID = llvm_map_to_intrinsic_id(ID);
2411   ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
2412   auto Str = llvm::Intrinsic::getNameNoUnnamedTypes(IID, Tys);
2413   *NameLength = Str.length();
2414   return strdup(Str.c_str());
2415 }
2416 
2417 const char *LLVMIntrinsicCopyOverloadedName2(LLVMModuleRef Mod, unsigned ID,
2418                                              LLVMTypeRef *ParamTypes,
2419                                              size_t ParamCount,
2420                                              size_t *NameLength) {
2421   auto IID = llvm_map_to_intrinsic_id(ID);
2422   ArrayRef<Type *> Tys(unwrap(ParamTypes), ParamCount);
2423   auto Str = llvm::Intrinsic::getName(IID, Tys, unwrap(Mod));
2424   *NameLength = Str.length();
2425   return strdup(Str.c_str());
2426 }
2427 
2428 unsigned LLVMLookupIntrinsicID(const char *Name, size_t NameLen) {
2429   return Function::lookupIntrinsicID({Name, NameLen});
2430 }
2431 
2432 LLVMBool LLVMIntrinsicIsOverloaded(unsigned ID) {
2433   auto IID = llvm_map_to_intrinsic_id(ID);
2434   return llvm::Intrinsic::isOverloaded(IID);
2435 }
2436 
2437 unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn) {
2438   return unwrap<Function>(Fn)->getCallingConv();
2439 }
2440 
2441 void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC) {
2442   return unwrap<Function>(Fn)->setCallingConv(
2443     static_cast<CallingConv::ID>(CC));
2444 }
2445 
2446 const char *LLVMGetGC(LLVMValueRef Fn) {
2447   Function *F = unwrap<Function>(Fn);
2448   return F->hasGC()? F->getGC().c_str() : nullptr;
2449 }
2450 
2451 void LLVMSetGC(LLVMValueRef Fn, const char *GC) {
2452   Function *F = unwrap<Function>(Fn);
2453   if (GC)
2454     F->setGC(GC);
2455   else
2456     F->clearGC();
2457 }
2458 
2459 void LLVMAddAttributeAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
2460                              LLVMAttributeRef A) {
2461   unwrap<Function>(F)->addAttributeAtIndex(Idx, unwrap(A));
2462 }
2463 
2464 unsigned LLVMGetAttributeCountAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx) {
2465   auto AS = unwrap<Function>(F)->getAttributes().getAttributes(Idx);
2466   return AS.getNumAttributes();
2467 }
2468 
2469 void LLVMGetAttributesAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
2470                               LLVMAttributeRef *Attrs) {
2471   auto AS = unwrap<Function>(F)->getAttributes().getAttributes(Idx);
2472   for (auto A : AS)
2473     *Attrs++ = wrap(A);
2474 }
2475 
2476 LLVMAttributeRef LLVMGetEnumAttributeAtIndex(LLVMValueRef F,
2477                                              LLVMAttributeIndex Idx,
2478                                              unsigned KindID) {
2479   return wrap(unwrap<Function>(F)->getAttributeAtIndex(
2480       Idx, (Attribute::AttrKind)KindID));
2481 }
2482 
2483 LLVMAttributeRef LLVMGetStringAttributeAtIndex(LLVMValueRef F,
2484                                                LLVMAttributeIndex Idx,
2485                                                const char *K, unsigned KLen) {
2486   return wrap(
2487       unwrap<Function>(F)->getAttributeAtIndex(Idx, StringRef(K, KLen)));
2488 }
2489 
2490 void LLVMRemoveEnumAttributeAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
2491                                     unsigned KindID) {
2492   unwrap<Function>(F)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID);
2493 }
2494 
2495 void LLVMRemoveStringAttributeAtIndex(LLVMValueRef F, LLVMAttributeIndex Idx,
2496                                       const char *K, unsigned KLen) {
2497   unwrap<Function>(F)->removeAttributeAtIndex(Idx, StringRef(K, KLen));
2498 }
2499 
2500 void LLVMAddTargetDependentFunctionAttr(LLVMValueRef Fn, const char *A,
2501                                         const char *V) {
2502   Function *Func = unwrap<Function>(Fn);
2503   Attribute Attr = Attribute::get(Func->getContext(), A, V);
2504   Func->addFnAttr(Attr);
2505 }
2506 
2507 /*--.. Operations on parameters ............................................--*/
2508 
2509 unsigned LLVMCountParams(LLVMValueRef FnRef) {
2510   // This function is strictly redundant to
2511   //   LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
2512   return unwrap<Function>(FnRef)->arg_size();
2513 }
2514 
2515 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) {
2516   Function *Fn = unwrap<Function>(FnRef);
2517   for (Argument &A : Fn->args())
2518     *ParamRefs++ = wrap(&A);
2519 }
2520 
2521 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) {
2522   Function *Fn = unwrap<Function>(FnRef);
2523   return wrap(&Fn->arg_begin()[index]);
2524 }
2525 
2526 LLVMValueRef LLVMGetParamParent(LLVMValueRef V) {
2527   return wrap(unwrap<Argument>(V)->getParent());
2528 }
2529 
2530 LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn) {
2531   Function *Func = unwrap<Function>(Fn);
2532   Function::arg_iterator I = Func->arg_begin();
2533   if (I == Func->arg_end())
2534     return nullptr;
2535   return wrap(&*I);
2536 }
2537 
2538 LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn) {
2539   Function *Func = unwrap<Function>(Fn);
2540   Function::arg_iterator I = Func->arg_end();
2541   if (I == Func->arg_begin())
2542     return nullptr;
2543   return wrap(&*--I);
2544 }
2545 
2546 LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg) {
2547   Argument *A = unwrap<Argument>(Arg);
2548   Function *Fn = A->getParent();
2549   if (A->getArgNo() + 1 >= Fn->arg_size())
2550     return nullptr;
2551   return wrap(&Fn->arg_begin()[A->getArgNo() + 1]);
2552 }
2553 
2554 LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg) {
2555   Argument *A = unwrap<Argument>(Arg);
2556   if (A->getArgNo() == 0)
2557     return nullptr;
2558   return wrap(&A->getParent()->arg_begin()[A->getArgNo() - 1]);
2559 }
2560 
2561 void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align) {
2562   Argument *A = unwrap<Argument>(Arg);
2563   A->addAttr(Attribute::getWithAlignment(A->getContext(), Align(align)));
2564 }
2565 
2566 /*--.. Operations on ifuncs ................................................--*/
2567 
2568 LLVMValueRef LLVMAddGlobalIFunc(LLVMModuleRef M,
2569                                 const char *Name, size_t NameLen,
2570                                 LLVMTypeRef Ty, unsigned AddrSpace,
2571                                 LLVMValueRef Resolver) {
2572   return wrap(GlobalIFunc::create(unwrap(Ty), AddrSpace,
2573                                   GlobalValue::ExternalLinkage,
2574                                   StringRef(Name, NameLen),
2575                                   unwrap<Constant>(Resolver), unwrap(M)));
2576 }
2577 
2578 LLVMValueRef LLVMGetNamedGlobalIFunc(LLVMModuleRef M,
2579                                      const char *Name, size_t NameLen) {
2580   return wrap(unwrap(M)->getNamedIFunc(StringRef(Name, NameLen)));
2581 }
2582 
2583 LLVMValueRef LLVMGetFirstGlobalIFunc(LLVMModuleRef M) {
2584   Module *Mod = unwrap(M);
2585   Module::ifunc_iterator I = Mod->ifunc_begin();
2586   if (I == Mod->ifunc_end())
2587     return nullptr;
2588   return wrap(&*I);
2589 }
2590 
2591 LLVMValueRef LLVMGetLastGlobalIFunc(LLVMModuleRef M) {
2592   Module *Mod = unwrap(M);
2593   Module::ifunc_iterator I = Mod->ifunc_end();
2594   if (I == Mod->ifunc_begin())
2595     return nullptr;
2596   return wrap(&*--I);
2597 }
2598 
2599 LLVMValueRef LLVMGetNextGlobalIFunc(LLVMValueRef IFunc) {
2600   GlobalIFunc *GIF = unwrap<GlobalIFunc>(IFunc);
2601   Module::ifunc_iterator I(GIF);
2602   if (++I == GIF->getParent()->ifunc_end())
2603     return nullptr;
2604   return wrap(&*I);
2605 }
2606 
2607 LLVMValueRef LLVMGetPreviousGlobalIFunc(LLVMValueRef IFunc) {
2608   GlobalIFunc *GIF = unwrap<GlobalIFunc>(IFunc);
2609   Module::ifunc_iterator I(GIF);
2610   if (I == GIF->getParent()->ifunc_begin())
2611     return nullptr;
2612   return wrap(&*--I);
2613 }
2614 
2615 LLVMValueRef LLVMGetGlobalIFuncResolver(LLVMValueRef IFunc) {
2616   return wrap(unwrap<GlobalIFunc>(IFunc)->getResolver());
2617 }
2618 
2619 void LLVMSetGlobalIFuncResolver(LLVMValueRef IFunc, LLVMValueRef Resolver) {
2620   unwrap<GlobalIFunc>(IFunc)->setResolver(unwrap<Constant>(Resolver));
2621 }
2622 
2623 void LLVMEraseGlobalIFunc(LLVMValueRef IFunc) {
2624   unwrap<GlobalIFunc>(IFunc)->eraseFromParent();
2625 }
2626 
2627 void LLVMRemoveGlobalIFunc(LLVMValueRef IFunc) {
2628   unwrap<GlobalIFunc>(IFunc)->removeFromParent();
2629 }
2630 
2631 /*--.. Operations on basic blocks ..........................................--*/
2632 
2633 LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB) {
2634   return wrap(static_cast<Value*>(unwrap(BB)));
2635 }
2636 
2637 LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val) {
2638   return isa<BasicBlock>(unwrap(Val));
2639 }
2640 
2641 LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val) {
2642   return wrap(unwrap<BasicBlock>(Val));
2643 }
2644 
2645 const char *LLVMGetBasicBlockName(LLVMBasicBlockRef BB) {
2646   return unwrap(BB)->getName().data();
2647 }
2648 
2649 LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB) {
2650   return wrap(unwrap(BB)->getParent());
2651 }
2652 
2653 LLVMValueRef LLVMGetBasicBlockTerminator(LLVMBasicBlockRef BB) {
2654   return wrap(unwrap(BB)->getTerminator());
2655 }
2656 
2657 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) {
2658   return unwrap<Function>(FnRef)->size();
2659 }
2660 
2661 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){
2662   Function *Fn = unwrap<Function>(FnRef);
2663   for (BasicBlock &BB : *Fn)
2664     *BasicBlocksRefs++ = wrap(&BB);
2665 }
2666 
2667 LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn) {
2668   return wrap(&unwrap<Function>(Fn)->getEntryBlock());
2669 }
2670 
2671 LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn) {
2672   Function *Func = unwrap<Function>(Fn);
2673   Function::iterator I = Func->begin();
2674   if (I == Func->end())
2675     return nullptr;
2676   return wrap(&*I);
2677 }
2678 
2679 LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn) {
2680   Function *Func = unwrap<Function>(Fn);
2681   Function::iterator I = Func->end();
2682   if (I == Func->begin())
2683     return nullptr;
2684   return wrap(&*--I);
2685 }
2686 
2687 LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB) {
2688   BasicBlock *Block = unwrap(BB);
2689   Function::iterator I(Block);
2690   if (++I == Block->getParent()->end())
2691     return nullptr;
2692   return wrap(&*I);
2693 }
2694 
2695 LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB) {
2696   BasicBlock *Block = unwrap(BB);
2697   Function::iterator I(Block);
2698   if (I == Block->getParent()->begin())
2699     return nullptr;
2700   return wrap(&*--I);
2701 }
2702 
2703 LLVMBasicBlockRef LLVMCreateBasicBlockInContext(LLVMContextRef C,
2704                                                 const char *Name) {
2705   return wrap(llvm::BasicBlock::Create(*unwrap(C), Name));
2706 }
2707 
2708 void LLVMInsertExistingBasicBlockAfterInsertBlock(LLVMBuilderRef Builder,
2709                                                   LLVMBasicBlockRef BB) {
2710   BasicBlock *ToInsert = unwrap(BB);
2711   BasicBlock *CurBB = unwrap(Builder)->GetInsertBlock();
2712   assert(CurBB && "current insertion point is invalid!");
2713   CurBB->getParent()->getBasicBlockList().insertAfter(CurBB->getIterator(),
2714                                                       ToInsert);
2715 }
2716 
2717 void LLVMAppendExistingBasicBlock(LLVMValueRef Fn,
2718                                   LLVMBasicBlockRef BB) {
2719   unwrap<Function>(Fn)->getBasicBlockList().push_back(unwrap(BB));
2720 }
2721 
2722 LLVMBasicBlockRef LLVMAppendBasicBlockInContext(LLVMContextRef C,
2723                                                 LLVMValueRef FnRef,
2724                                                 const char *Name) {
2725   return wrap(BasicBlock::Create(*unwrap(C), Name, unwrap<Function>(FnRef)));
2726 }
2727 
2728 LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef FnRef, const char *Name) {
2729   return LLVMAppendBasicBlockInContext(LLVMGetGlobalContext(), FnRef, Name);
2730 }
2731 
2732 LLVMBasicBlockRef LLVMInsertBasicBlockInContext(LLVMContextRef C,
2733                                                 LLVMBasicBlockRef BBRef,
2734                                                 const char *Name) {
2735   BasicBlock *BB = unwrap(BBRef);
2736   return wrap(BasicBlock::Create(*unwrap(C), Name, BB->getParent(), BB));
2737 }
2738 
2739 LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef BBRef,
2740                                        const char *Name) {
2741   return LLVMInsertBasicBlockInContext(LLVMGetGlobalContext(), BBRef, Name);
2742 }
2743 
2744 void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef) {
2745   unwrap(BBRef)->eraseFromParent();
2746 }
2747 
2748 void LLVMRemoveBasicBlockFromParent(LLVMBasicBlockRef BBRef) {
2749   unwrap(BBRef)->removeFromParent();
2750 }
2751 
2752 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
2753   unwrap(BB)->moveBefore(unwrap(MovePos));
2754 }
2755 
2756 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
2757   unwrap(BB)->moveAfter(unwrap(MovePos));
2758 }
2759 
2760 /*--.. Operations on instructions ..........................................--*/
2761 
2762 LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst) {
2763   return wrap(unwrap<Instruction>(Inst)->getParent());
2764 }
2765 
2766 LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB) {
2767   BasicBlock *Block = unwrap(BB);
2768   BasicBlock::iterator I = Block->begin();
2769   if (I == Block->end())
2770     return nullptr;
2771   return wrap(&*I);
2772 }
2773 
2774 LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB) {
2775   BasicBlock *Block = unwrap(BB);
2776   BasicBlock::iterator I = Block->end();
2777   if (I == Block->begin())
2778     return nullptr;
2779   return wrap(&*--I);
2780 }
2781 
2782 LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst) {
2783   Instruction *Instr = unwrap<Instruction>(Inst);
2784   BasicBlock::iterator I(Instr);
2785   if (++I == Instr->getParent()->end())
2786     return nullptr;
2787   return wrap(&*I);
2788 }
2789 
2790 LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst) {
2791   Instruction *Instr = unwrap<Instruction>(Inst);
2792   BasicBlock::iterator I(Instr);
2793   if (I == Instr->getParent()->begin())
2794     return nullptr;
2795   return wrap(&*--I);
2796 }
2797 
2798 void LLVMInstructionRemoveFromParent(LLVMValueRef Inst) {
2799   unwrap<Instruction>(Inst)->removeFromParent();
2800 }
2801 
2802 void LLVMInstructionEraseFromParent(LLVMValueRef Inst) {
2803   unwrap<Instruction>(Inst)->eraseFromParent();
2804 }
2805 
2806 LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst) {
2807   if (ICmpInst *I = dyn_cast<ICmpInst>(unwrap(Inst)))
2808     return (LLVMIntPredicate)I->getPredicate();
2809   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
2810     if (CE->getOpcode() == Instruction::ICmp)
2811       return (LLVMIntPredicate)CE->getPredicate();
2812   return (LLVMIntPredicate)0;
2813 }
2814 
2815 LLVMRealPredicate LLVMGetFCmpPredicate(LLVMValueRef Inst) {
2816   if (FCmpInst *I = dyn_cast<FCmpInst>(unwrap(Inst)))
2817     return (LLVMRealPredicate)I->getPredicate();
2818   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
2819     if (CE->getOpcode() == Instruction::FCmp)
2820       return (LLVMRealPredicate)CE->getPredicate();
2821   return (LLVMRealPredicate)0;
2822 }
2823 
2824 LLVMOpcode LLVMGetInstructionOpcode(LLVMValueRef Inst) {
2825   if (Instruction *C = dyn_cast<Instruction>(unwrap(Inst)))
2826     return map_to_llvmopcode(C->getOpcode());
2827   return (LLVMOpcode)0;
2828 }
2829 
2830 LLVMValueRef LLVMInstructionClone(LLVMValueRef Inst) {
2831   if (Instruction *C = dyn_cast<Instruction>(unwrap(Inst)))
2832     return wrap(C->clone());
2833   return nullptr;
2834 }
2835 
2836 LLVMValueRef LLVMIsATerminatorInst(LLVMValueRef Inst) {
2837   Instruction *I = dyn_cast<Instruction>(unwrap(Inst));
2838   return (I && I->isTerminator()) ? wrap(I) : nullptr;
2839 }
2840 
2841 unsigned LLVMGetNumArgOperands(LLVMValueRef Instr) {
2842   if (FuncletPadInst *FPI = dyn_cast<FuncletPadInst>(unwrap(Instr))) {
2843     return FPI->getNumArgOperands();
2844   }
2845   return unwrap<CallBase>(Instr)->arg_size();
2846 }
2847 
2848 /*--.. Call and invoke instructions ........................................--*/
2849 
2850 unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) {
2851   return unwrap<CallBase>(Instr)->getCallingConv();
2852 }
2853 
2854 void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) {
2855   return unwrap<CallBase>(Instr)->setCallingConv(
2856       static_cast<CallingConv::ID>(CC));
2857 }
2858 
2859 void LLVMSetInstrParamAlignment(LLVMValueRef Instr, LLVMAttributeIndex Idx,
2860                                 unsigned align) {
2861   auto *Call = unwrap<CallBase>(Instr);
2862   Attribute AlignAttr =
2863       Attribute::getWithAlignment(Call->getContext(), Align(align));
2864   Call->addAttributeAtIndex(Idx, AlignAttr);
2865 }
2866 
2867 void LLVMAddCallSiteAttribute(LLVMValueRef C, LLVMAttributeIndex Idx,
2868                               LLVMAttributeRef A) {
2869   unwrap<CallBase>(C)->addAttributeAtIndex(Idx, unwrap(A));
2870 }
2871 
2872 unsigned LLVMGetCallSiteAttributeCount(LLVMValueRef C,
2873                                        LLVMAttributeIndex Idx) {
2874   auto *Call = unwrap<CallBase>(C);
2875   auto AS = Call->getAttributes().getAttributes(Idx);
2876   return AS.getNumAttributes();
2877 }
2878 
2879 void LLVMGetCallSiteAttributes(LLVMValueRef C, LLVMAttributeIndex Idx,
2880                                LLVMAttributeRef *Attrs) {
2881   auto *Call = unwrap<CallBase>(C);
2882   auto AS = Call->getAttributes().getAttributes(Idx);
2883   for (auto A : AS)
2884     *Attrs++ = wrap(A);
2885 }
2886 
2887 LLVMAttributeRef LLVMGetCallSiteEnumAttribute(LLVMValueRef C,
2888                                               LLVMAttributeIndex Idx,
2889                                               unsigned KindID) {
2890   return wrap(unwrap<CallBase>(C)->getAttributeAtIndex(
2891       Idx, (Attribute::AttrKind)KindID));
2892 }
2893 
2894 LLVMAttributeRef LLVMGetCallSiteStringAttribute(LLVMValueRef C,
2895                                                 LLVMAttributeIndex Idx,
2896                                                 const char *K, unsigned KLen) {
2897   return wrap(
2898       unwrap<CallBase>(C)->getAttributeAtIndex(Idx, StringRef(K, KLen)));
2899 }
2900 
2901 void LLVMRemoveCallSiteEnumAttribute(LLVMValueRef C, LLVMAttributeIndex Idx,
2902                                      unsigned KindID) {
2903   unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, (Attribute::AttrKind)KindID);
2904 }
2905 
2906 void LLVMRemoveCallSiteStringAttribute(LLVMValueRef C, LLVMAttributeIndex Idx,
2907                                        const char *K, unsigned KLen) {
2908   unwrap<CallBase>(C)->removeAttributeAtIndex(Idx, StringRef(K, KLen));
2909 }
2910 
2911 LLVMValueRef LLVMGetCalledValue(LLVMValueRef Instr) {
2912   return wrap(unwrap<CallBase>(Instr)->getCalledOperand());
2913 }
2914 
2915 LLVMTypeRef LLVMGetCalledFunctionType(LLVMValueRef Instr) {
2916   return wrap(unwrap<CallBase>(Instr)->getFunctionType());
2917 }
2918 
2919 /*--.. Operations on call instructions (only) ..............................--*/
2920 
2921 LLVMBool LLVMIsTailCall(LLVMValueRef Call) {
2922   return unwrap<CallInst>(Call)->isTailCall();
2923 }
2924 
2925 void LLVMSetTailCall(LLVMValueRef Call, LLVMBool isTailCall) {
2926   unwrap<CallInst>(Call)->setTailCall(isTailCall);
2927 }
2928 
2929 /*--.. Operations on invoke instructions (only) ............................--*/
2930 
2931 LLVMBasicBlockRef LLVMGetNormalDest(LLVMValueRef Invoke) {
2932   return wrap(unwrap<InvokeInst>(Invoke)->getNormalDest());
2933 }
2934 
2935 LLVMBasicBlockRef LLVMGetUnwindDest(LLVMValueRef Invoke) {
2936   if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) {
2937     return wrap(CRI->getUnwindDest());
2938   } else if (CatchSwitchInst *CSI = dyn_cast<CatchSwitchInst>(unwrap(Invoke))) {
2939     return wrap(CSI->getUnwindDest());
2940   }
2941   return wrap(unwrap<InvokeInst>(Invoke)->getUnwindDest());
2942 }
2943 
2944 void LLVMSetNormalDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) {
2945   unwrap<InvokeInst>(Invoke)->setNormalDest(unwrap(B));
2946 }
2947 
2948 void LLVMSetUnwindDest(LLVMValueRef Invoke, LLVMBasicBlockRef B) {
2949   if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) {
2950     return CRI->setUnwindDest(unwrap(B));
2951   } else if (CatchSwitchInst *CSI = dyn_cast<CatchSwitchInst>(unwrap(Invoke))) {
2952     return CSI->setUnwindDest(unwrap(B));
2953   }
2954   unwrap<InvokeInst>(Invoke)->setUnwindDest(unwrap(B));
2955 }
2956 
2957 /*--.. Operations on terminators ...........................................--*/
2958 
2959 unsigned LLVMGetNumSuccessors(LLVMValueRef Term) {
2960   return unwrap<Instruction>(Term)->getNumSuccessors();
2961 }
2962 
2963 LLVMBasicBlockRef LLVMGetSuccessor(LLVMValueRef Term, unsigned i) {
2964   return wrap(unwrap<Instruction>(Term)->getSuccessor(i));
2965 }
2966 
2967 void LLVMSetSuccessor(LLVMValueRef Term, unsigned i, LLVMBasicBlockRef block) {
2968   return unwrap<Instruction>(Term)->setSuccessor(i, unwrap(block));
2969 }
2970 
2971 /*--.. Operations on branch instructions (only) ............................--*/
2972 
2973 LLVMBool LLVMIsConditional(LLVMValueRef Branch) {
2974   return unwrap<BranchInst>(Branch)->isConditional();
2975 }
2976 
2977 LLVMValueRef LLVMGetCondition(LLVMValueRef Branch) {
2978   return wrap(unwrap<BranchInst>(Branch)->getCondition());
2979 }
2980 
2981 void LLVMSetCondition(LLVMValueRef Branch, LLVMValueRef Cond) {
2982   return unwrap<BranchInst>(Branch)->setCondition(unwrap(Cond));
2983 }
2984 
2985 /*--.. Operations on switch instructions (only) ............................--*/
2986 
2987 LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) {
2988   return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
2989 }
2990 
2991 /*--.. Operations on alloca instructions (only) ............................--*/
2992 
2993 LLVMTypeRef LLVMGetAllocatedType(LLVMValueRef Alloca) {
2994   return wrap(unwrap<AllocaInst>(Alloca)->getAllocatedType());
2995 }
2996 
2997 /*--.. Operations on gep instructions (only) ...............................--*/
2998 
2999 LLVMBool LLVMIsInBounds(LLVMValueRef GEP) {
3000   return unwrap<GEPOperator>(GEP)->isInBounds();
3001 }
3002 
3003 void LLVMSetIsInBounds(LLVMValueRef GEP, LLVMBool InBounds) {
3004   return unwrap<GetElementPtrInst>(GEP)->setIsInBounds(InBounds);
3005 }
3006 
3007 LLVMTypeRef LLVMGetGEPSourceElementType(LLVMValueRef GEP) {
3008   return wrap(unwrap<GEPOperator>(GEP)->getSourceElementType());
3009 }
3010 
3011 /*--.. Operations on phi nodes .............................................--*/
3012 
3013 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
3014                      LLVMBasicBlockRef *IncomingBlocks, unsigned Count) {
3015   PHINode *PhiVal = unwrap<PHINode>(PhiNode);
3016   for (unsigned I = 0; I != Count; ++I)
3017     PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I]));
3018 }
3019 
3020 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
3021   return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
3022 }
3023 
3024 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
3025   return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
3026 }
3027 
3028 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
3029   return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));
3030 }
3031 
3032 /*--.. Operations on extractvalue and insertvalue nodes ....................--*/
3033 
3034 unsigned LLVMGetNumIndices(LLVMValueRef Inst) {
3035   auto *I = unwrap(Inst);
3036   if (auto *GEP = dyn_cast<GEPOperator>(I))
3037     return GEP->getNumIndices();
3038   if (auto *EV = dyn_cast<ExtractValueInst>(I))
3039     return EV->getNumIndices();
3040   if (auto *IV = dyn_cast<InsertValueInst>(I))
3041     return IV->getNumIndices();
3042   llvm_unreachable(
3043     "LLVMGetNumIndices applies only to extractvalue and insertvalue!");
3044 }
3045 
3046 const unsigned *LLVMGetIndices(LLVMValueRef Inst) {
3047   auto *I = unwrap(Inst);
3048   if (auto *EV = dyn_cast<ExtractValueInst>(I))
3049     return EV->getIndices().data();
3050   if (auto *IV = dyn_cast<InsertValueInst>(I))
3051     return IV->getIndices().data();
3052   llvm_unreachable(
3053     "LLVMGetIndices applies only to extractvalue and insertvalue!");
3054 }
3055 
3056 
3057 /*===-- Instruction builders ----------------------------------------------===*/
3058 
3059 LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C) {
3060   return wrap(new IRBuilder<>(*unwrap(C)));
3061 }
3062 
3063 LLVMBuilderRef LLVMCreateBuilder(void) {
3064   return LLVMCreateBuilderInContext(LLVMGetGlobalContext());
3065 }
3066 
3067 void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
3068                          LLVMValueRef Instr) {
3069   BasicBlock *BB = unwrap(Block);
3070   auto I = Instr ? unwrap<Instruction>(Instr)->getIterator() : BB->end();
3071   unwrap(Builder)->SetInsertPoint(BB, I);
3072 }
3073 
3074 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) {
3075   Instruction *I = unwrap<Instruction>(Instr);
3076   unwrap(Builder)->SetInsertPoint(I->getParent(), I->getIterator());
3077 }
3078 
3079 void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block) {
3080   BasicBlock *BB = unwrap(Block);
3081   unwrap(Builder)->SetInsertPoint(BB);
3082 }
3083 
3084 LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder) {
3085    return wrap(unwrap(Builder)->GetInsertBlock());
3086 }
3087 
3088 void LLVMClearInsertionPosition(LLVMBuilderRef Builder) {
3089   unwrap(Builder)->ClearInsertionPoint();
3090 }
3091 
3092 void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr) {
3093   unwrap(Builder)->Insert(unwrap<Instruction>(Instr));
3094 }
3095 
3096 void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr,
3097                                    const char *Name) {
3098   unwrap(Builder)->Insert(unwrap<Instruction>(Instr), Name);
3099 }
3100 
3101 void LLVMDisposeBuilder(LLVMBuilderRef Builder) {
3102   delete unwrap(Builder);
3103 }
3104 
3105 /*--.. Metadata builders ...................................................--*/
3106 
3107 LLVMMetadataRef LLVMGetCurrentDebugLocation2(LLVMBuilderRef Builder) {
3108   return wrap(unwrap(Builder)->getCurrentDebugLocation().getAsMDNode());
3109 }
3110 
3111 void LLVMSetCurrentDebugLocation2(LLVMBuilderRef Builder, LLVMMetadataRef Loc) {
3112   if (Loc)
3113     unwrap(Builder)->SetCurrentDebugLocation(DebugLoc(unwrap<MDNode>(Loc)));
3114   else
3115     unwrap(Builder)->SetCurrentDebugLocation(DebugLoc());
3116 }
3117 
3118 void LLVMSetCurrentDebugLocation(LLVMBuilderRef Builder, LLVMValueRef L) {
3119   MDNode *Loc =
3120       L ? cast<MDNode>(unwrap<MetadataAsValue>(L)->getMetadata()) : nullptr;
3121   unwrap(Builder)->SetCurrentDebugLocation(DebugLoc(Loc));
3122 }
3123 
3124 LLVMValueRef LLVMGetCurrentDebugLocation(LLVMBuilderRef Builder) {
3125   LLVMContext &Context = unwrap(Builder)->getContext();
3126   return wrap(MetadataAsValue::get(
3127       Context, unwrap(Builder)->getCurrentDebugLocation().getAsMDNode()));
3128 }
3129 
3130 void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst) {
3131   unwrap(Builder)->SetInstDebugLocation(unwrap<Instruction>(Inst));
3132 }
3133 
3134 void LLVMAddMetadataToInst(LLVMBuilderRef Builder, LLVMValueRef Inst) {
3135   unwrap(Builder)->AddMetadataToInst(unwrap<Instruction>(Inst));
3136 }
3137 
3138 void LLVMBuilderSetDefaultFPMathTag(LLVMBuilderRef Builder,
3139                                     LLVMMetadataRef FPMathTag) {
3140 
3141   unwrap(Builder)->setDefaultFPMathTag(FPMathTag
3142                                        ? unwrap<MDNode>(FPMathTag)
3143                                        : nullptr);
3144 }
3145 
3146 LLVMMetadataRef LLVMBuilderGetDefaultFPMathTag(LLVMBuilderRef Builder) {
3147   return wrap(unwrap(Builder)->getDefaultFPMathTag());
3148 }
3149 
3150 /*--.. Instruction builders ................................................--*/
3151 
3152 LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef B) {
3153   return wrap(unwrap(B)->CreateRetVoid());
3154 }
3155 
3156 LLVMValueRef LLVMBuildRet(LLVMBuilderRef B, LLVMValueRef V) {
3157   return wrap(unwrap(B)->CreateRet(unwrap(V)));
3158 }
3159 
3160 LLVMValueRef LLVMBuildAggregateRet(LLVMBuilderRef B, LLVMValueRef *RetVals,
3161                                    unsigned N) {
3162   return wrap(unwrap(B)->CreateAggregateRet(unwrap(RetVals), N));
3163 }
3164 
3165 LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) {
3166   return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
3167 }
3168 
3169 LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If,
3170                              LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
3171   return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
3172 }
3173 
3174 LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V,
3175                              LLVMBasicBlockRef Else, unsigned NumCases) {
3176   return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
3177 }
3178 
3179 LLVMValueRef LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr,
3180                                  unsigned NumDests) {
3181   return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
3182 }
3183 
3184 LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn,
3185                              LLVMValueRef *Args, unsigned NumArgs,
3186                              LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
3187                              const char *Name) {
3188   Value *V = unwrap(Fn);
3189   FunctionType *FnT =
3190       cast<FunctionType>(V->getType()->getNonOpaquePointerElementType());
3191 
3192   return wrap(
3193       unwrap(B)->CreateInvoke(FnT, unwrap(Fn), unwrap(Then), unwrap(Catch),
3194                               makeArrayRef(unwrap(Args), NumArgs), Name));
3195 }
3196 
3197 LLVMValueRef LLVMBuildInvoke2(LLVMBuilderRef B, LLVMTypeRef Ty, LLVMValueRef Fn,
3198                               LLVMValueRef *Args, unsigned NumArgs,
3199                               LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
3200                               const char *Name) {
3201   return wrap(unwrap(B)->CreateInvoke(
3202       unwrap<FunctionType>(Ty), unwrap(Fn), unwrap(Then), unwrap(Catch),
3203       makeArrayRef(unwrap(Args), NumArgs), Name));
3204 }
3205 
3206 LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty,
3207                                  LLVMValueRef PersFn, unsigned NumClauses,
3208                                  const char *Name) {
3209   // The personality used to live on the landingpad instruction, but now it
3210   // lives on the parent function. For compatibility, take the provided
3211   // personality and put it on the parent function.
3212   if (PersFn)
3213     unwrap(B)->GetInsertBlock()->getParent()->setPersonalityFn(
3214         cast<Function>(unwrap(PersFn)));
3215   return wrap(unwrap(B)->CreateLandingPad(unwrap(Ty), NumClauses, Name));
3216 }
3217 
3218 LLVMValueRef LLVMBuildCatchPad(LLVMBuilderRef B, LLVMValueRef ParentPad,
3219                                LLVMValueRef *Args, unsigned NumArgs,
3220                                const char *Name) {
3221   return wrap(unwrap(B)->CreateCatchPad(unwrap(ParentPad),
3222                                         makeArrayRef(unwrap(Args), NumArgs),
3223                                         Name));
3224 }
3225 
3226 LLVMValueRef LLVMBuildCleanupPad(LLVMBuilderRef B, LLVMValueRef ParentPad,
3227                                  LLVMValueRef *Args, unsigned NumArgs,
3228                                  const char *Name) {
3229   if (ParentPad == nullptr) {
3230     Type *Ty = Type::getTokenTy(unwrap(B)->getContext());
3231     ParentPad = wrap(Constant::getNullValue(Ty));
3232   }
3233   return wrap(unwrap(B)->CreateCleanupPad(unwrap(ParentPad),
3234                                           makeArrayRef(unwrap(Args), NumArgs),
3235                                           Name));
3236 }
3237 
3238 LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) {
3239   return wrap(unwrap(B)->CreateResume(unwrap(Exn)));
3240 }
3241 
3242 LLVMValueRef LLVMBuildCatchSwitch(LLVMBuilderRef B, LLVMValueRef ParentPad,
3243                                   LLVMBasicBlockRef UnwindBB,
3244                                   unsigned NumHandlers, const char *Name) {
3245   if (ParentPad == nullptr) {
3246     Type *Ty = Type::getTokenTy(unwrap(B)->getContext());
3247     ParentPad = wrap(Constant::getNullValue(Ty));
3248   }
3249   return wrap(unwrap(B)->CreateCatchSwitch(unwrap(ParentPad), unwrap(UnwindBB),
3250                                            NumHandlers, Name));
3251 }
3252 
3253 LLVMValueRef LLVMBuildCatchRet(LLVMBuilderRef B, LLVMValueRef CatchPad,
3254                                LLVMBasicBlockRef BB) {
3255   return wrap(unwrap(B)->CreateCatchRet(unwrap<CatchPadInst>(CatchPad),
3256                                         unwrap(BB)));
3257 }
3258 
3259 LLVMValueRef LLVMBuildCleanupRet(LLVMBuilderRef B, LLVMValueRef CatchPad,
3260                                  LLVMBasicBlockRef BB) {
3261   return wrap(unwrap(B)->CreateCleanupRet(unwrap<CleanupPadInst>(CatchPad),
3262                                           unwrap(BB)));
3263 }
3264 
3265 LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef B) {
3266   return wrap(unwrap(B)->CreateUnreachable());
3267 }
3268 
3269 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
3270                  LLVMBasicBlockRef Dest) {
3271   unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
3272 }
3273 
3274 void LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest) {
3275   unwrap<IndirectBrInst>(IndirectBr)->addDestination(unwrap(Dest));
3276 }
3277 
3278 unsigned LLVMGetNumClauses(LLVMValueRef LandingPad) {
3279   return unwrap<LandingPadInst>(LandingPad)->getNumClauses();
3280 }
3281 
3282 LLVMValueRef LLVMGetClause(LLVMValueRef LandingPad, unsigned Idx) {
3283   return wrap(unwrap<LandingPadInst>(LandingPad)->getClause(Idx));
3284 }
3285 
3286 void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal) {
3287   unwrap<LandingPadInst>(LandingPad)->
3288     addClause(cast<Constant>(unwrap(ClauseVal)));
3289 }
3290 
3291 LLVMBool LLVMIsCleanup(LLVMValueRef LandingPad) {
3292   return unwrap<LandingPadInst>(LandingPad)->isCleanup();
3293 }
3294 
3295 void LLVMSetCleanup(LLVMValueRef LandingPad, LLVMBool Val) {
3296   unwrap<LandingPadInst>(LandingPad)->setCleanup(Val);
3297 }
3298 
3299 void LLVMAddHandler(LLVMValueRef CatchSwitch, LLVMBasicBlockRef Dest) {
3300   unwrap<CatchSwitchInst>(CatchSwitch)->addHandler(unwrap(Dest));
3301 }
3302 
3303 unsigned LLVMGetNumHandlers(LLVMValueRef CatchSwitch) {
3304   return unwrap<CatchSwitchInst>(CatchSwitch)->getNumHandlers();
3305 }
3306 
3307 void LLVMGetHandlers(LLVMValueRef CatchSwitch, LLVMBasicBlockRef *Handlers) {
3308   CatchSwitchInst *CSI = unwrap<CatchSwitchInst>(CatchSwitch);
3309   for (const BasicBlock *H : CSI->handlers())
3310     *Handlers++ = wrap(H);
3311 }
3312 
3313 LLVMValueRef LLVMGetParentCatchSwitch(LLVMValueRef CatchPad) {
3314   return wrap(unwrap<CatchPadInst>(CatchPad)->getCatchSwitch());
3315 }
3316 
3317 void LLVMSetParentCatchSwitch(LLVMValueRef CatchPad, LLVMValueRef CatchSwitch) {
3318   unwrap<CatchPadInst>(CatchPad)
3319     ->setCatchSwitch(unwrap<CatchSwitchInst>(CatchSwitch));
3320 }
3321 
3322 /*--.. Funclets ...........................................................--*/
3323 
3324 LLVMValueRef LLVMGetArgOperand(LLVMValueRef Funclet, unsigned i) {
3325   return wrap(unwrap<FuncletPadInst>(Funclet)->getArgOperand(i));
3326 }
3327 
3328 void LLVMSetArgOperand(LLVMValueRef Funclet, unsigned i, LLVMValueRef value) {
3329   unwrap<FuncletPadInst>(Funclet)->setArgOperand(i, unwrap(value));
3330 }
3331 
3332 /*--.. Arithmetic ..........................................................--*/
3333 
3334 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3335                           const char *Name) {
3336   return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
3337 }
3338 
3339 LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3340                           const char *Name) {
3341   return wrap(unwrap(B)->CreateNSWAdd(unwrap(LHS), unwrap(RHS), Name));
3342 }
3343 
3344 LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3345                           const char *Name) {
3346   return wrap(unwrap(B)->CreateNUWAdd(unwrap(LHS), unwrap(RHS), Name));
3347 }
3348 
3349 LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3350                           const char *Name) {
3351   return wrap(unwrap(B)->CreateFAdd(unwrap(LHS), unwrap(RHS), Name));
3352 }
3353 
3354 LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3355                           const char *Name) {
3356   return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwrap(RHS), Name));
3357 }
3358 
3359 LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3360                           const char *Name) {
3361   return wrap(unwrap(B)->CreateNSWSub(unwrap(LHS), unwrap(RHS), Name));
3362 }
3363 
3364 LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3365                           const char *Name) {
3366   return wrap(unwrap(B)->CreateNUWSub(unwrap(LHS), unwrap(RHS), Name));
3367 }
3368 
3369 LLVMValueRef LLVMBuildFSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3370                           const char *Name) {
3371   return wrap(unwrap(B)->CreateFSub(unwrap(LHS), unwrap(RHS), Name));
3372 }
3373 
3374 LLVMValueRef LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3375                           const char *Name) {
3376   return wrap(unwrap(B)->CreateMul(unwrap(LHS), unwrap(RHS), Name));
3377 }
3378 
3379 LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3380                           const char *Name) {
3381   return wrap(unwrap(B)->CreateNSWMul(unwrap(LHS), unwrap(RHS), Name));
3382 }
3383 
3384 LLVMValueRef LLVMBuildNUWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3385                           const char *Name) {
3386   return wrap(unwrap(B)->CreateNUWMul(unwrap(LHS), unwrap(RHS), Name));
3387 }
3388 
3389 LLVMValueRef LLVMBuildFMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3390                           const char *Name) {
3391   return wrap(unwrap(B)->CreateFMul(unwrap(LHS), unwrap(RHS), Name));
3392 }
3393 
3394 LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3395                            const char *Name) {
3396   return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
3397 }
3398 
3399 LLVMValueRef LLVMBuildExactUDiv(LLVMBuilderRef B, LLVMValueRef LHS,
3400                                 LLVMValueRef RHS, const char *Name) {
3401   return wrap(unwrap(B)->CreateExactUDiv(unwrap(LHS), unwrap(RHS), Name));
3402 }
3403 
3404 LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3405                            const char *Name) {
3406   return wrap(unwrap(B)->CreateSDiv(unwrap(LHS), unwrap(RHS), Name));
3407 }
3408 
3409 LLVMValueRef LLVMBuildExactSDiv(LLVMBuilderRef B, LLVMValueRef LHS,
3410                                 LLVMValueRef RHS, const char *Name) {
3411   return wrap(unwrap(B)->CreateExactSDiv(unwrap(LHS), unwrap(RHS), Name));
3412 }
3413 
3414 LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3415                            const char *Name) {
3416   return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
3417 }
3418 
3419 LLVMValueRef LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3420                            const char *Name) {
3421   return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
3422 }
3423 
3424 LLVMValueRef LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3425                            const char *Name) {
3426   return wrap(unwrap(B)->CreateSRem(unwrap(LHS), unwrap(RHS), Name));
3427 }
3428 
3429 LLVMValueRef LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3430                            const char *Name) {
3431   return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name));
3432 }
3433 
3434 LLVMValueRef LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3435                           const char *Name) {
3436   return wrap(unwrap(B)->CreateShl(unwrap(LHS), unwrap(RHS), Name));
3437 }
3438 
3439 LLVMValueRef LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3440                            const char *Name) {
3441   return wrap(unwrap(B)->CreateLShr(unwrap(LHS), unwrap(RHS), Name));
3442 }
3443 
3444 LLVMValueRef LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3445                            const char *Name) {
3446   return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
3447 }
3448 
3449 LLVMValueRef LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3450                           const char *Name) {
3451   return wrap(unwrap(B)->CreateAnd(unwrap(LHS), unwrap(RHS), Name));
3452 }
3453 
3454 LLVMValueRef LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3455                          const char *Name) {
3456   return wrap(unwrap(B)->CreateOr(unwrap(LHS), unwrap(RHS), Name));
3457 }
3458 
3459 LLVMValueRef LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
3460                           const char *Name) {
3461   return wrap(unwrap(B)->CreateXor(unwrap(LHS), unwrap(RHS), Name));
3462 }
3463 
3464 LLVMValueRef LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op,
3465                             LLVMValueRef LHS, LLVMValueRef RHS,
3466                             const char *Name) {
3467   return wrap(unwrap(B)->CreateBinOp(Instruction::BinaryOps(map_from_llvmopcode(Op)), unwrap(LHS),
3468                                      unwrap(RHS), Name));
3469 }
3470 
3471 LLVMValueRef LLVMBuildNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
3472   return wrap(unwrap(B)->CreateNeg(unwrap(V), Name));
3473 }
3474 
3475 LLVMValueRef LLVMBuildNSWNeg(LLVMBuilderRef B, LLVMValueRef V,
3476                              const char *Name) {
3477   return wrap(unwrap(B)->CreateNSWNeg(unwrap(V), Name));
3478 }
3479 
3480 LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B, LLVMValueRef V,
3481                              const char *Name) {
3482   return wrap(unwrap(B)->CreateNUWNeg(unwrap(V), Name));
3483 }
3484 
3485 LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
3486   return wrap(unwrap(B)->CreateFNeg(unwrap(V), Name));
3487 }
3488 
3489 LLVMValueRef LLVMBuildNot(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
3490   return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
3491 }
3492 
3493 /*--.. Memory ..............................................................--*/
3494 
3495 LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
3496                              const char *Name) {
3497   Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
3498   Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
3499   AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
3500   Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
3501                                                ITy, unwrap(Ty), AllocSize,
3502                                                nullptr, nullptr, "");
3503   return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
3504 }
3505 
3506 LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
3507                                   LLVMValueRef Val, const char *Name) {
3508   Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
3509   Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
3510   AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
3511   Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
3512                                                ITy, unwrap(Ty), AllocSize,
3513                                                unwrap(Val), nullptr, "");
3514   return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
3515 }
3516 
3517 LLVMValueRef LLVMBuildMemSet(LLVMBuilderRef B, LLVMValueRef Ptr,
3518                              LLVMValueRef Val, LLVMValueRef Len,
3519                              unsigned Align) {
3520   return wrap(unwrap(B)->CreateMemSet(unwrap(Ptr), unwrap(Val), unwrap(Len),
3521                                       MaybeAlign(Align)));
3522 }
3523 
3524 LLVMValueRef LLVMBuildMemCpy(LLVMBuilderRef B,
3525                              LLVMValueRef Dst, unsigned DstAlign,
3526                              LLVMValueRef Src, unsigned SrcAlign,
3527                              LLVMValueRef Size) {
3528   return wrap(unwrap(B)->CreateMemCpy(unwrap(Dst), MaybeAlign(DstAlign),
3529                                       unwrap(Src), MaybeAlign(SrcAlign),
3530                                       unwrap(Size)));
3531 }
3532 
3533 LLVMValueRef LLVMBuildMemMove(LLVMBuilderRef B,
3534                               LLVMValueRef Dst, unsigned DstAlign,
3535                               LLVMValueRef Src, unsigned SrcAlign,
3536                               LLVMValueRef Size) {
3537   return wrap(unwrap(B)->CreateMemMove(unwrap(Dst), MaybeAlign(DstAlign),
3538                                        unwrap(Src), MaybeAlign(SrcAlign),
3539                                        unwrap(Size)));
3540 }
3541 
3542 LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
3543                              const char *Name) {
3544   return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), nullptr, Name));
3545 }
3546 
3547 LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
3548                                   LLVMValueRef Val, const char *Name) {
3549   return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name));
3550 }
3551 
3552 LLVMValueRef LLVMBuildFree(LLVMBuilderRef B, LLVMValueRef PointerVal) {
3553   return wrap(unwrap(B)->Insert(
3554      CallInst::CreateFree(unwrap(PointerVal), unwrap(B)->GetInsertBlock())));
3555 }
3556 
3557 LLVMValueRef LLVMBuildLoad(LLVMBuilderRef B, LLVMValueRef PointerVal,
3558                            const char *Name) {
3559   Value *V = unwrap(PointerVal);
3560   PointerType *Ty = cast<PointerType>(V->getType());
3561 
3562   return wrap(
3563       unwrap(B)->CreateLoad(Ty->getNonOpaquePointerElementType(), V, Name));
3564 }
3565 
3566 LLVMValueRef LLVMBuildLoad2(LLVMBuilderRef B, LLVMTypeRef Ty,
3567                             LLVMValueRef PointerVal, const char *Name) {
3568   return wrap(unwrap(B)->CreateLoad(unwrap(Ty), unwrap(PointerVal), Name));
3569 }
3570 
3571 LLVMValueRef LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val,
3572                             LLVMValueRef PointerVal) {
3573   return wrap(unwrap(B)->CreateStore(unwrap(Val), unwrap(PointerVal)));
3574 }
3575 
3576 static AtomicOrdering mapFromLLVMOrdering(LLVMAtomicOrdering Ordering) {
3577   switch (Ordering) {
3578     case LLVMAtomicOrderingNotAtomic: return AtomicOrdering::NotAtomic;
3579     case LLVMAtomicOrderingUnordered: return AtomicOrdering::Unordered;
3580     case LLVMAtomicOrderingMonotonic: return AtomicOrdering::Monotonic;
3581     case LLVMAtomicOrderingAcquire: return AtomicOrdering::Acquire;
3582     case LLVMAtomicOrderingRelease: return AtomicOrdering::Release;
3583     case LLVMAtomicOrderingAcquireRelease:
3584       return AtomicOrdering::AcquireRelease;
3585     case LLVMAtomicOrderingSequentiallyConsistent:
3586       return AtomicOrdering::SequentiallyConsistent;
3587   }
3588 
3589   llvm_unreachable("Invalid LLVMAtomicOrdering value!");
3590 }
3591 
3592 static LLVMAtomicOrdering mapToLLVMOrdering(AtomicOrdering Ordering) {
3593   switch (Ordering) {
3594     case AtomicOrdering::NotAtomic: return LLVMAtomicOrderingNotAtomic;
3595     case AtomicOrdering::Unordered: return LLVMAtomicOrderingUnordered;
3596     case AtomicOrdering::Monotonic: return LLVMAtomicOrderingMonotonic;
3597     case AtomicOrdering::Acquire: return LLVMAtomicOrderingAcquire;
3598     case AtomicOrdering::Release: return LLVMAtomicOrderingRelease;
3599     case AtomicOrdering::AcquireRelease:
3600       return LLVMAtomicOrderingAcquireRelease;
3601     case AtomicOrdering::SequentiallyConsistent:
3602       return LLVMAtomicOrderingSequentiallyConsistent;
3603   }
3604 
3605   llvm_unreachable("Invalid AtomicOrdering value!");
3606 }
3607 
3608 static AtomicRMWInst::BinOp mapFromLLVMRMWBinOp(LLVMAtomicRMWBinOp BinOp) {
3609   switch (BinOp) {
3610     case LLVMAtomicRMWBinOpXchg: return AtomicRMWInst::Xchg;
3611     case LLVMAtomicRMWBinOpAdd: return AtomicRMWInst::Add;
3612     case LLVMAtomicRMWBinOpSub: return AtomicRMWInst::Sub;
3613     case LLVMAtomicRMWBinOpAnd: return AtomicRMWInst::And;
3614     case LLVMAtomicRMWBinOpNand: return AtomicRMWInst::Nand;
3615     case LLVMAtomicRMWBinOpOr: return AtomicRMWInst::Or;
3616     case LLVMAtomicRMWBinOpXor: return AtomicRMWInst::Xor;
3617     case LLVMAtomicRMWBinOpMax: return AtomicRMWInst::Max;
3618     case LLVMAtomicRMWBinOpMin: return AtomicRMWInst::Min;
3619     case LLVMAtomicRMWBinOpUMax: return AtomicRMWInst::UMax;
3620     case LLVMAtomicRMWBinOpUMin: return AtomicRMWInst::UMin;
3621     case LLVMAtomicRMWBinOpFAdd: return AtomicRMWInst::FAdd;
3622     case LLVMAtomicRMWBinOpFSub: return AtomicRMWInst::FSub;
3623   }
3624 
3625   llvm_unreachable("Invalid LLVMAtomicRMWBinOp value!");
3626 }
3627 
3628 static LLVMAtomicRMWBinOp mapToLLVMRMWBinOp(AtomicRMWInst::BinOp BinOp) {
3629   switch (BinOp) {
3630     case AtomicRMWInst::Xchg: return LLVMAtomicRMWBinOpXchg;
3631     case AtomicRMWInst::Add: return LLVMAtomicRMWBinOpAdd;
3632     case AtomicRMWInst::Sub: return LLVMAtomicRMWBinOpSub;
3633     case AtomicRMWInst::And: return LLVMAtomicRMWBinOpAnd;
3634     case AtomicRMWInst::Nand: return LLVMAtomicRMWBinOpNand;
3635     case AtomicRMWInst::Or: return LLVMAtomicRMWBinOpOr;
3636     case AtomicRMWInst::Xor: return LLVMAtomicRMWBinOpXor;
3637     case AtomicRMWInst::Max: return LLVMAtomicRMWBinOpMax;
3638     case AtomicRMWInst::Min: return LLVMAtomicRMWBinOpMin;
3639     case AtomicRMWInst::UMax: return LLVMAtomicRMWBinOpUMax;
3640     case AtomicRMWInst::UMin: return LLVMAtomicRMWBinOpUMin;
3641     case AtomicRMWInst::FAdd: return LLVMAtomicRMWBinOpFAdd;
3642     case AtomicRMWInst::FSub: return LLVMAtomicRMWBinOpFSub;
3643     default: break;
3644   }
3645 
3646   llvm_unreachable("Invalid AtomicRMWBinOp value!");
3647 }
3648 
3649 // TODO: Should this and other atomic instructions support building with
3650 // "syncscope"?
3651 LLVMValueRef LLVMBuildFence(LLVMBuilderRef B, LLVMAtomicOrdering Ordering,
3652                             LLVMBool isSingleThread, const char *Name) {
3653   return wrap(
3654     unwrap(B)->CreateFence(mapFromLLVMOrdering(Ordering),
3655                            isSingleThread ? SyncScope::SingleThread
3656                                           : SyncScope::System,
3657                            Name));
3658 }
3659 
3660 LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
3661                           LLVMValueRef *Indices, unsigned NumIndices,
3662                           const char *Name) {
3663   ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
3664   Value *Val = unwrap(Pointer);
3665   Type *Ty = Val->getType()->getScalarType()->getNonOpaquePointerElementType();
3666   return wrap(unwrap(B)->CreateGEP(Ty, Val, IdxList, Name));
3667 }
3668 
3669 LLVMValueRef LLVMBuildGEP2(LLVMBuilderRef B, LLVMTypeRef Ty,
3670                            LLVMValueRef Pointer, LLVMValueRef *Indices,
3671                            unsigned NumIndices, const char *Name) {
3672   ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
3673   return wrap(unwrap(B)->CreateGEP(unwrap(Ty), unwrap(Pointer), IdxList, Name));
3674 }
3675 
3676 LLVMValueRef LLVMBuildInBoundsGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
3677                                   LLVMValueRef *Indices, unsigned NumIndices,
3678                                   const char *Name) {
3679   ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
3680   Value *Val = unwrap(Pointer);
3681   Type *Ty = Val->getType()->getScalarType()->getNonOpaquePointerElementType();
3682   return wrap(unwrap(B)->CreateInBoundsGEP(Ty, Val, IdxList, Name));
3683 }
3684 
3685 LLVMValueRef LLVMBuildInBoundsGEP2(LLVMBuilderRef B, LLVMTypeRef Ty,
3686                                    LLVMValueRef Pointer, LLVMValueRef *Indices,
3687                                    unsigned NumIndices, const char *Name) {
3688   ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
3689   return wrap(
3690       unwrap(B)->CreateInBoundsGEP(unwrap(Ty), unwrap(Pointer), IdxList, Name));
3691 }
3692 
3693 LLVMValueRef LLVMBuildStructGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
3694                                 unsigned Idx, const char *Name) {
3695   Value *Val = unwrap(Pointer);
3696   Type *Ty = Val->getType()->getScalarType()->getNonOpaquePointerElementType();
3697   return wrap(unwrap(B)->CreateStructGEP(Ty, Val, Idx, Name));
3698 }
3699 
3700 LLVMValueRef LLVMBuildStructGEP2(LLVMBuilderRef B, LLVMTypeRef Ty,
3701                                  LLVMValueRef Pointer, unsigned Idx,
3702                                  const char *Name) {
3703   return wrap(
3704       unwrap(B)->CreateStructGEP(unwrap(Ty), unwrap(Pointer), Idx, Name));
3705 }
3706 
3707 LLVMValueRef LLVMBuildGlobalString(LLVMBuilderRef B, const char *Str,
3708                                    const char *Name) {
3709   return wrap(unwrap(B)->CreateGlobalString(Str, Name));
3710 }
3711 
3712 LLVMValueRef LLVMBuildGlobalStringPtr(LLVMBuilderRef B, const char *Str,
3713                                       const char *Name) {
3714   return wrap(unwrap(B)->CreateGlobalStringPtr(Str, Name));
3715 }
3716 
3717 LLVMBool LLVMGetVolatile(LLVMValueRef MemAccessInst) {
3718   Value *P = unwrap<Value>(MemAccessInst);
3719   if (LoadInst *LI = dyn_cast<LoadInst>(P))
3720     return LI->isVolatile();
3721   if (StoreInst *SI = dyn_cast<StoreInst>(P))
3722     return SI->isVolatile();
3723   if (AtomicRMWInst *AI = dyn_cast<AtomicRMWInst>(P))
3724     return AI->isVolatile();
3725   return cast<AtomicCmpXchgInst>(P)->isVolatile();
3726 }
3727 
3728 void LLVMSetVolatile(LLVMValueRef MemAccessInst, LLVMBool isVolatile) {
3729   Value *P = unwrap<Value>(MemAccessInst);
3730   if (LoadInst *LI = dyn_cast<LoadInst>(P))
3731     return LI->setVolatile(isVolatile);
3732   if (StoreInst *SI = dyn_cast<StoreInst>(P))
3733     return SI->setVolatile(isVolatile);
3734   if (AtomicRMWInst *AI = dyn_cast<AtomicRMWInst>(P))
3735     return AI->setVolatile(isVolatile);
3736   return cast<AtomicCmpXchgInst>(P)->setVolatile(isVolatile);
3737 }
3738 
3739 LLVMBool LLVMGetWeak(LLVMValueRef CmpXchgInst) {
3740   return unwrap<AtomicCmpXchgInst>(CmpXchgInst)->isWeak();
3741 }
3742 
3743 void LLVMSetWeak(LLVMValueRef CmpXchgInst, LLVMBool isWeak) {
3744   return unwrap<AtomicCmpXchgInst>(CmpXchgInst)->setWeak(isWeak);
3745 }
3746 
3747 LLVMAtomicOrdering LLVMGetOrdering(LLVMValueRef MemAccessInst) {
3748   Value *P = unwrap<Value>(MemAccessInst);
3749   AtomicOrdering O;
3750   if (LoadInst *LI = dyn_cast<LoadInst>(P))
3751     O = LI->getOrdering();
3752   else if (StoreInst *SI = dyn_cast<StoreInst>(P))
3753     O = SI->getOrdering();
3754   else
3755     O = cast<AtomicRMWInst>(P)->getOrdering();
3756   return mapToLLVMOrdering(O);
3757 }
3758 
3759 void LLVMSetOrdering(LLVMValueRef MemAccessInst, LLVMAtomicOrdering Ordering) {
3760   Value *P = unwrap<Value>(MemAccessInst);
3761   AtomicOrdering O = mapFromLLVMOrdering(Ordering);
3762 
3763   if (LoadInst *LI = dyn_cast<LoadInst>(P))
3764     return LI->setOrdering(O);
3765   return cast<StoreInst>(P)->setOrdering(O);
3766 }
3767 
3768 LLVMAtomicRMWBinOp LLVMGetAtomicRMWBinOp(LLVMValueRef Inst) {
3769   return mapToLLVMRMWBinOp(unwrap<AtomicRMWInst>(Inst)->getOperation());
3770 }
3771 
3772 void LLVMSetAtomicRMWBinOp(LLVMValueRef Inst, LLVMAtomicRMWBinOp BinOp) {
3773   unwrap<AtomicRMWInst>(Inst)->setOperation(mapFromLLVMRMWBinOp(BinOp));
3774 }
3775 
3776 /*--.. Casts ...............................................................--*/
3777 
3778 LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val,
3779                             LLVMTypeRef DestTy, const char *Name) {
3780   return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
3781 }
3782 
3783 LLVMValueRef LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val,
3784                            LLVMTypeRef DestTy, const char *Name) {
3785   return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
3786 }
3787 
3788 LLVMValueRef LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val,
3789                            LLVMTypeRef DestTy, const char *Name) {
3790   return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
3791 }
3792 
3793 LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val,
3794                              LLVMTypeRef DestTy, const char *Name) {
3795   return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
3796 }
3797 
3798 LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val,
3799                              LLVMTypeRef DestTy, const char *Name) {
3800   return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
3801 }
3802 
3803 LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val,
3804                              LLVMTypeRef DestTy, const char *Name) {
3805   return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
3806 }
3807 
3808 LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val,
3809                              LLVMTypeRef DestTy, const char *Name) {
3810   return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
3811 }
3812 
3813 LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val,
3814                               LLVMTypeRef DestTy, const char *Name) {
3815   return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
3816 }
3817 
3818 LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val,
3819                             LLVMTypeRef DestTy, const char *Name) {
3820   return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
3821 }
3822 
3823 LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val,
3824                                LLVMTypeRef DestTy, const char *Name) {
3825   return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
3826 }
3827 
3828 LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val,
3829                                LLVMTypeRef DestTy, const char *Name) {
3830   return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
3831 }
3832 
3833 LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val,
3834                               LLVMTypeRef DestTy, const char *Name) {
3835   return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
3836 }
3837 
3838 LLVMValueRef LLVMBuildAddrSpaceCast(LLVMBuilderRef B, LLVMValueRef Val,
3839                                     LLVMTypeRef DestTy, const char *Name) {
3840   return wrap(unwrap(B)->CreateAddrSpaceCast(unwrap(Val), unwrap(DestTy), Name));
3841 }
3842 
3843 LLVMValueRef LLVMBuildZExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
3844                                     LLVMTypeRef DestTy, const char *Name) {
3845   return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
3846                                              Name));
3847 }
3848 
3849 LLVMValueRef LLVMBuildSExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
3850                                     LLVMTypeRef DestTy, const char *Name) {
3851   return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
3852                                              Name));
3853 }
3854 
3855 LLVMValueRef LLVMBuildTruncOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
3856                                      LLVMTypeRef DestTy, const char *Name) {
3857   return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
3858                                               Name));
3859 }
3860 
3861 LLVMValueRef LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val,
3862                            LLVMTypeRef DestTy, const char *Name) {
3863   return wrap(unwrap(B)->CreateCast(Instruction::CastOps(map_from_llvmopcode(Op)), unwrap(Val),
3864                                     unwrap(DestTy), Name));
3865 }
3866 
3867 LLVMValueRef LLVMBuildPointerCast(LLVMBuilderRef B, LLVMValueRef Val,
3868                                   LLVMTypeRef DestTy, const char *Name) {
3869   return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
3870 }
3871 
3872 LLVMValueRef LLVMBuildIntCast2(LLVMBuilderRef B, LLVMValueRef Val,
3873                                LLVMTypeRef DestTy, LLVMBool IsSigned,
3874                                const char *Name) {
3875   return wrap(
3876       unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy), IsSigned, Name));
3877 }
3878 
3879 LLVMValueRef LLVMBuildIntCast(LLVMBuilderRef B, LLVMValueRef Val,
3880                               LLVMTypeRef DestTy, const char *Name) {
3881   return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
3882                                        /*isSigned*/true, Name));
3883 }
3884 
3885 LLVMValueRef LLVMBuildFPCast(LLVMBuilderRef B, LLVMValueRef Val,
3886                              LLVMTypeRef DestTy, const char *Name) {
3887   return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));
3888 }
3889 
3890 LLVMOpcode LLVMGetCastOpcode(LLVMValueRef Src, LLVMBool SrcIsSigned,
3891                              LLVMTypeRef DestTy, LLVMBool DestIsSigned) {
3892   return map_to_llvmopcode(CastInst::getCastOpcode(
3893       unwrap(Src), SrcIsSigned, unwrap(DestTy), DestIsSigned));
3894 }
3895 
3896 /*--.. Comparisons .........................................................--*/
3897 
3898 LLVMValueRef LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op,
3899                            LLVMValueRef LHS, LLVMValueRef RHS,
3900                            const char *Name) {
3901   return wrap(unwrap(B)->CreateICmp(static_cast<ICmpInst::Predicate>(Op),
3902                                     unwrap(LHS), unwrap(RHS), Name));
3903 }
3904 
3905 LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op,
3906                            LLVMValueRef LHS, LLVMValueRef RHS,
3907                            const char *Name) {
3908   return wrap(unwrap(B)->CreateFCmp(static_cast<FCmpInst::Predicate>(Op),
3909                                     unwrap(LHS), unwrap(RHS), Name));
3910 }
3911 
3912 /*--.. Miscellaneous instructions ..........................................--*/
3913 
3914 LLVMValueRef LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) {
3915   return wrap(unwrap(B)->CreatePHI(unwrap(Ty), 0, Name));
3916 }
3917 
3918 LLVMValueRef LLVMBuildCall(LLVMBuilderRef B, LLVMValueRef Fn,
3919                            LLVMValueRef *Args, unsigned NumArgs,
3920                            const char *Name) {
3921   Value *V = unwrap(Fn);
3922   FunctionType *FnT =
3923       cast<FunctionType>(V->getType()->getNonOpaquePointerElementType());
3924 
3925   return wrap(unwrap(B)->CreateCall(FnT, unwrap(Fn),
3926                                     makeArrayRef(unwrap(Args), NumArgs), Name));
3927 }
3928 
3929 LLVMValueRef LLVMBuildCall2(LLVMBuilderRef B, LLVMTypeRef Ty, LLVMValueRef Fn,
3930                             LLVMValueRef *Args, unsigned NumArgs,
3931                             const char *Name) {
3932   FunctionType *FTy = unwrap<FunctionType>(Ty);
3933   return wrap(unwrap(B)->CreateCall(FTy, unwrap(Fn),
3934                                     makeArrayRef(unwrap(Args), NumArgs), Name));
3935 }
3936 
3937 LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If,
3938                              LLVMValueRef Then, LLVMValueRef Else,
3939                              const char *Name) {
3940   return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
3941                                       Name));
3942 }
3943 
3944 LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
3945                             LLVMTypeRef Ty, const char *Name) {
3946   return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
3947 }
3948 
3949 LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef B, LLVMValueRef VecVal,
3950                                       LLVMValueRef Index, const char *Name) {
3951   return wrap(unwrap(B)->CreateExtractElement(unwrap(VecVal), unwrap(Index),
3952                                               Name));
3953 }
3954 
3955 LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef B, LLVMValueRef VecVal,
3956                                     LLVMValueRef EltVal, LLVMValueRef Index,
3957                                     const char *Name) {
3958   return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal),
3959                                              unwrap(Index), Name));
3960 }
3961 
3962 LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef B, LLVMValueRef V1,
3963                                     LLVMValueRef V2, LLVMValueRef Mask,
3964                                     const char *Name) {
3965   return wrap(unwrap(B)->CreateShuffleVector(unwrap(V1), unwrap(V2),
3966                                              unwrap(Mask), Name));
3967 }
3968 
3969 LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef B, LLVMValueRef AggVal,
3970                                    unsigned Index, const char *Name) {
3971   return wrap(unwrap(B)->CreateExtractValue(unwrap(AggVal), Index, Name));
3972 }
3973 
3974 LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef B, LLVMValueRef AggVal,
3975                                   LLVMValueRef EltVal, unsigned Index,
3976                                   const char *Name) {
3977   return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal),
3978                                            Index, Name));
3979 }
3980 
3981 LLVMValueRef LLVMBuildFreeze(LLVMBuilderRef B, LLVMValueRef Val,
3982                              const char *Name) {
3983   return wrap(unwrap(B)->CreateFreeze(unwrap(Val), Name));
3984 }
3985 
3986 LLVMValueRef LLVMBuildIsNull(LLVMBuilderRef B, LLVMValueRef Val,
3987                              const char *Name) {
3988   return wrap(unwrap(B)->CreateIsNull(unwrap(Val), Name));
3989 }
3990 
3991 LLVMValueRef LLVMBuildIsNotNull(LLVMBuilderRef B, LLVMValueRef Val,
3992                                 const char *Name) {
3993   return wrap(unwrap(B)->CreateIsNotNull(unwrap(Val), Name));
3994 }
3995 
3996 LLVMValueRef LLVMBuildPtrDiff(LLVMBuilderRef B, LLVMValueRef LHS,
3997                               LLVMValueRef RHS, const char *Name) {
3998   Value *L = unwrap(LHS);
3999   Type *ElemTy = L->getType()->getNonOpaquePointerElementType();
4000   return wrap(unwrap(B)->CreatePtrDiff(ElemTy, L, unwrap(RHS), Name));
4001 }
4002 
4003 LLVMValueRef LLVMBuildPtrDiff2(LLVMBuilderRef B, LLVMTypeRef ElemTy,
4004                                LLVMValueRef LHS, LLVMValueRef RHS,
4005                                const char *Name) {
4006   return wrap(unwrap(B)->CreatePtrDiff(unwrap(ElemTy), unwrap(LHS),
4007                                        unwrap(RHS), Name));
4008 }
4009 
4010 LLVMValueRef LLVMBuildAtomicRMW(LLVMBuilderRef B,LLVMAtomicRMWBinOp op,
4011                                LLVMValueRef PTR, LLVMValueRef Val,
4012                                LLVMAtomicOrdering ordering,
4013                                LLVMBool singleThread) {
4014   AtomicRMWInst::BinOp intop = mapFromLLVMRMWBinOp(op);
4015   return wrap(unwrap(B)->CreateAtomicRMW(
4016       intop, unwrap(PTR), unwrap(Val), MaybeAlign(),
4017       mapFromLLVMOrdering(ordering),
4018       singleThread ? SyncScope::SingleThread : SyncScope::System));
4019 }
4020 
4021 LLVMValueRef LLVMBuildAtomicCmpXchg(LLVMBuilderRef B, LLVMValueRef Ptr,
4022                                     LLVMValueRef Cmp, LLVMValueRef New,
4023                                     LLVMAtomicOrdering SuccessOrdering,
4024                                     LLVMAtomicOrdering FailureOrdering,
4025                                     LLVMBool singleThread) {
4026 
4027   return wrap(unwrap(B)->CreateAtomicCmpXchg(
4028       unwrap(Ptr), unwrap(Cmp), unwrap(New), MaybeAlign(),
4029       mapFromLLVMOrdering(SuccessOrdering),
4030       mapFromLLVMOrdering(FailureOrdering),
4031       singleThread ? SyncScope::SingleThread : SyncScope::System));
4032 }
4033 
4034 unsigned LLVMGetNumMaskElements(LLVMValueRef SVInst) {
4035   Value *P = unwrap<Value>(SVInst);
4036   ShuffleVectorInst *I = cast<ShuffleVectorInst>(P);
4037   return I->getShuffleMask().size();
4038 }
4039 
4040 int LLVMGetMaskValue(LLVMValueRef SVInst, unsigned Elt) {
4041   Value *P = unwrap<Value>(SVInst);
4042   ShuffleVectorInst *I = cast<ShuffleVectorInst>(P);
4043   return I->getMaskValue(Elt);
4044 }
4045 
4046 int LLVMGetUndefMaskElem(void) { return UndefMaskElem; }
4047 
4048 LLVMBool LLVMIsAtomicSingleThread(LLVMValueRef AtomicInst) {
4049   Value *P = unwrap<Value>(AtomicInst);
4050 
4051   if (AtomicRMWInst *I = dyn_cast<AtomicRMWInst>(P))
4052     return I->getSyncScopeID() == SyncScope::SingleThread;
4053   return cast<AtomicCmpXchgInst>(P)->getSyncScopeID() ==
4054              SyncScope::SingleThread;
4055 }
4056 
4057 void LLVMSetAtomicSingleThread(LLVMValueRef AtomicInst, LLVMBool NewValue) {
4058   Value *P = unwrap<Value>(AtomicInst);
4059   SyncScope::ID SSID = NewValue ? SyncScope::SingleThread : SyncScope::System;
4060 
4061   if (AtomicRMWInst *I = dyn_cast<AtomicRMWInst>(P))
4062     return I->setSyncScopeID(SSID);
4063   return cast<AtomicCmpXchgInst>(P)->setSyncScopeID(SSID);
4064 }
4065 
4066 LLVMAtomicOrdering LLVMGetCmpXchgSuccessOrdering(LLVMValueRef CmpXchgInst)  {
4067   Value *P = unwrap<Value>(CmpXchgInst);
4068   return mapToLLVMOrdering(cast<AtomicCmpXchgInst>(P)->getSuccessOrdering());
4069 }
4070 
4071 void LLVMSetCmpXchgSuccessOrdering(LLVMValueRef CmpXchgInst,
4072                                    LLVMAtomicOrdering Ordering) {
4073   Value *P = unwrap<Value>(CmpXchgInst);
4074   AtomicOrdering O = mapFromLLVMOrdering(Ordering);
4075 
4076   return cast<AtomicCmpXchgInst>(P)->setSuccessOrdering(O);
4077 }
4078 
4079 LLVMAtomicOrdering LLVMGetCmpXchgFailureOrdering(LLVMValueRef CmpXchgInst)  {
4080   Value *P = unwrap<Value>(CmpXchgInst);
4081   return mapToLLVMOrdering(cast<AtomicCmpXchgInst>(P)->getFailureOrdering());
4082 }
4083 
4084 void LLVMSetCmpXchgFailureOrdering(LLVMValueRef CmpXchgInst,
4085                                    LLVMAtomicOrdering Ordering) {
4086   Value *P = unwrap<Value>(CmpXchgInst);
4087   AtomicOrdering O = mapFromLLVMOrdering(Ordering);
4088 
4089   return cast<AtomicCmpXchgInst>(P)->setFailureOrdering(O);
4090 }
4091 
4092 /*===-- Module providers --------------------------------------------------===*/
4093 
4094 LLVMModuleProviderRef
4095 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) {
4096   return reinterpret_cast<LLVMModuleProviderRef>(M);
4097 }
4098 
4099 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) {
4100   delete unwrap(MP);
4101 }
4102 
4103 
4104 /*===-- Memory buffers ----------------------------------------------------===*/
4105 
4106 LLVMBool LLVMCreateMemoryBufferWithContentsOfFile(
4107     const char *Path,
4108     LLVMMemoryBufferRef *OutMemBuf,
4109     char **OutMessage) {
4110 
4111   ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = MemoryBuffer::getFile(Path);
4112   if (std::error_code EC = MBOrErr.getError()) {
4113     *OutMessage = strdup(EC.message().c_str());
4114     return 1;
4115   }
4116   *OutMemBuf = wrap(MBOrErr.get().release());
4117   return 0;
4118 }
4119 
4120 LLVMBool LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
4121                                          char **OutMessage) {
4122   ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = MemoryBuffer::getSTDIN();
4123   if (std::error_code EC = MBOrErr.getError()) {
4124     *OutMessage = strdup(EC.message().c_str());
4125     return 1;
4126   }
4127   *OutMemBuf = wrap(MBOrErr.get().release());
4128   return 0;
4129 }
4130 
4131 LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRange(
4132     const char *InputData,
4133     size_t InputDataLength,
4134     const char *BufferName,
4135     LLVMBool RequiresNullTerminator) {
4136 
4137   return wrap(MemoryBuffer::getMemBuffer(StringRef(InputData, InputDataLength),
4138                                          StringRef(BufferName),
4139                                          RequiresNullTerminator).release());
4140 }
4141 
4142 LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRangeCopy(
4143     const char *InputData,
4144     size_t InputDataLength,
4145     const char *BufferName) {
4146 
4147   return wrap(
4148       MemoryBuffer::getMemBufferCopy(StringRef(InputData, InputDataLength),
4149                                      StringRef(BufferName)).release());
4150 }
4151 
4152 const char *LLVMGetBufferStart(LLVMMemoryBufferRef MemBuf) {
4153   return unwrap(MemBuf)->getBufferStart();
4154 }
4155 
4156 size_t LLVMGetBufferSize(LLVMMemoryBufferRef MemBuf) {
4157   return unwrap(MemBuf)->getBufferSize();
4158 }
4159 
4160 void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf) {
4161   delete unwrap(MemBuf);
4162 }
4163 
4164 /*===-- Pass Registry -----------------------------------------------------===*/
4165 
4166 LLVMPassRegistryRef LLVMGetGlobalPassRegistry(void) {
4167   return wrap(PassRegistry::getPassRegistry());
4168 }
4169 
4170 /*===-- Pass Manager ------------------------------------------------------===*/
4171 
4172 LLVMPassManagerRef LLVMCreatePassManager() {
4173   return wrap(new legacy::PassManager());
4174 }
4175 
4176 LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) {
4177   return wrap(new legacy::FunctionPassManager(unwrap(M)));
4178 }
4179 
4180 LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) {
4181   return LLVMCreateFunctionPassManagerForModule(
4182                                             reinterpret_cast<LLVMModuleRef>(P));
4183 }
4184 
4185 LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) {
4186   return unwrap<legacy::PassManager>(PM)->run(*unwrap(M));
4187 }
4188 
4189 LLVMBool LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) {
4190   return unwrap<legacy::FunctionPassManager>(FPM)->doInitialization();
4191 }
4192 
4193 LLVMBool LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) {
4194   return unwrap<legacy::FunctionPassManager>(FPM)->run(*unwrap<Function>(F));
4195 }
4196 
4197 LLVMBool LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) {
4198   return unwrap<legacy::FunctionPassManager>(FPM)->doFinalization();
4199 }
4200 
4201 void LLVMDisposePassManager(LLVMPassManagerRef PM) {
4202   delete unwrap(PM);
4203 }
4204 
4205 /*===-- Threading ------------------------------------------------------===*/
4206 
4207 LLVMBool LLVMStartMultithreaded() {
4208   return LLVMIsMultithreaded();
4209 }
4210 
4211 void LLVMStopMultithreaded() {
4212 }
4213 
4214 LLVMBool LLVMIsMultithreaded() {
4215   return llvm_is_multithreaded();
4216 }
4217