efc229d6f57d0ef81ea66b2a071a07537e34e9cd
[oota-llvm.git] / lib / VMCore / Core.cpp
1 //===-- Core.cpp ----------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the C bindings for libLLVMCore.a, which implements
11 // the LLVM intermediate representation.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm-c/Core.h"
16 #include "llvm/Bitcode/ReaderWriter.h"
17 #include "llvm/Constants.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/GlobalVariable.h"
20 #include "llvm/GlobalAlias.h"
21 #include "llvm/LLVMContext.h"
22 #include "llvm/TypeSymbolTable.h"
23 #include "llvm/ModuleProvider.h"
24 #include "llvm/InlineAsm.h"
25 #include "llvm/IntrinsicInst.h"
26 #include "llvm/Support/MemoryBuffer.h"
27 #include "llvm/Support/CallSite.h"
28 #include <cassert>
29 #include <cstdlib>
30 #include <cstring>
31
32 using namespace llvm;
33
34
35 /*===-- Error handling ----------------------------------------------------===*/
36
37 void LLVMDisposeMessage(char *Message) {
38   free(Message);
39 }
40
41
42 /*===-- Operations on contexts --------------------------------------------===*/
43
44 LLVMContextRef LLVMContextCreate() {
45   return wrap(new LLVMContext());
46 }
47
48 LLVMContextRef LLVMGetGlobalContext() {
49   return wrap(&getGlobalContext());
50 }
51
52 void LLVMContextDispose(LLVMContextRef C) {
53   delete unwrap(C);
54 }
55
56
57 /*===-- Operations on modules ---------------------------------------------===*/
58
59 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
60   return wrap(new Module(ModuleID, getGlobalContext()));
61 }
62
63 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, 
64                                                 LLVMContextRef C) {
65   return wrap(new Module(ModuleID, *unwrap(C)));
66 }
67
68 void LLVMDisposeModule(LLVMModuleRef M) {
69   delete unwrap(M);
70 }
71
72 /*--.. Data layout .........................................................--*/
73 const char * LLVMGetDataLayout(LLVMModuleRef M) {
74   return unwrap(M)->getDataLayout().c_str();
75 }
76
77 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) {
78   unwrap(M)->setDataLayout(Triple);
79 }
80
81 /*--.. Target triple .......................................................--*/
82 const char * LLVMGetTarget(LLVMModuleRef M) {
83   return unwrap(M)->getTargetTriple().c_str();
84 }
85
86 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
87   unwrap(M)->setTargetTriple(Triple);
88 }
89
90 /*--.. Type names ..........................................................--*/
91 int LLVMAddTypeName(LLVMModuleRef M, const char *Name, LLVMTypeRef Ty) {
92   return unwrap(M)->addTypeName(Name, unwrap(Ty));
93 }
94
95 void LLVMDeleteTypeName(LLVMModuleRef M, const char *Name) {
96   std::string N(Name);
97   
98   TypeSymbolTable &TST = unwrap(M)->getTypeSymbolTable();
99   for (TypeSymbolTable::iterator I = TST.begin(), E = TST.end(); I != E; ++I)
100     if (I->first == N)
101       TST.remove(I);
102 }
103
104 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) {
105   std::string N(Name);
106   return wrap(unwrap(M)->getTypeByName(N));
107 }
108
109 void LLVMDumpModule(LLVMModuleRef M) {
110   unwrap(M)->dump();
111 }
112
113
114 /*===-- Operations on types -----------------------------------------------===*/
115
116 /*--.. Operations on all types (mostly) ....................................--*/
117
118 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) {
119   return static_cast<LLVMTypeKind>(unwrap(Ty)->getTypeID());
120 }
121
122 /*--.. Operations on integer types .........................................--*/
123
124 LLVMTypeRef LLVMInt1Type(void)  { return (LLVMTypeRef) Type::Int1Ty;  }
125 LLVMTypeRef LLVMInt8Type(void)  { return (LLVMTypeRef) Type::Int8Ty;  }
126 LLVMTypeRef LLVMInt16Type(void) { return (LLVMTypeRef) Type::Int16Ty; }
127 LLVMTypeRef LLVMInt32Type(void) { return (LLVMTypeRef) Type::Int32Ty; }
128 LLVMTypeRef LLVMInt64Type(void) { return (LLVMTypeRef) Type::Int64Ty; }
129
130 LLVMTypeRef LLVMIntType(unsigned NumBits) {
131   return wrap(getGlobalContext().getIntegerType(NumBits));
132 }
133
134 unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
135   return unwrap<IntegerType>(IntegerTy)->getBitWidth();
136 }
137
138 /*--.. Operations on real types ............................................--*/
139
140 LLVMTypeRef LLVMFloatType(void)    { return (LLVMTypeRef) Type::FloatTy;     }
141 LLVMTypeRef LLVMDoubleType(void)   { return (LLVMTypeRef) Type::DoubleTy;    }
142 LLVMTypeRef LLVMX86FP80Type(void)  { return (LLVMTypeRef) Type::X86_FP80Ty;  }
143 LLVMTypeRef LLVMFP128Type(void)    { return (LLVMTypeRef) Type::FP128Ty;     }
144 LLVMTypeRef LLVMPPCFP128Type(void) { return (LLVMTypeRef) Type::PPC_FP128Ty; }
145
146 /*--.. Operations on function types ........................................--*/
147
148 LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
149                              LLVMTypeRef *ParamTypes, unsigned ParamCount,
150                              int IsVarArg) {
151   std::vector<const Type*> Tys;
152   for (LLVMTypeRef *I = ParamTypes, *E = ParamTypes + ParamCount; I != E; ++I)
153     Tys.push_back(unwrap(*I));
154   
155   return wrap(getGlobalContext().getFunctionType(unwrap(ReturnType), Tys,
156                                                  IsVarArg != 0));
157 }
158
159 int LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
160   return unwrap<FunctionType>(FunctionTy)->isVarArg();
161 }
162
163 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
164   return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
165 }
166
167 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
168   return unwrap<FunctionType>(FunctionTy)->getNumParams();
169 }
170
171 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
172   FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
173   for (FunctionType::param_iterator I = Ty->param_begin(),
174                                     E = Ty->param_end(); I != E; ++I)
175     *Dest++ = wrap(*I);
176 }
177
178 /*--.. Operations on struct types ..........................................--*/
179
180 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
181                            unsigned ElementCount, int Packed) {
182   std::vector<const Type*> Tys;
183   for (LLVMTypeRef *I = ElementTypes,
184                    *E = ElementTypes + ElementCount; I != E; ++I)
185     Tys.push_back(unwrap(*I));
186   
187   return wrap(getGlobalContext().getStructType(Tys, Packed != 0));
188 }
189
190 unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) {
191   return unwrap<StructType>(StructTy)->getNumElements();
192 }
193
194 void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
195   StructType *Ty = unwrap<StructType>(StructTy);
196   for (FunctionType::param_iterator I = Ty->element_begin(),
197                                     E = Ty->element_end(); I != E; ++I)
198     *Dest++ = wrap(*I);
199 }
200
201 int LLVMIsPackedStruct(LLVMTypeRef StructTy) {
202   return unwrap<StructType>(StructTy)->isPacked();
203 }
204
205 /*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
206
207 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
208   return wrap(getGlobalContext().getArrayType(unwrap(ElementType), 
209                                                ElementCount));
210 }
211
212 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) {
213   return wrap(getGlobalContext().getPointerType(unwrap(ElementType), 
214                                                  AddressSpace));
215 }
216
217 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
218   return wrap(getGlobalContext().getVectorType(unwrap(ElementType), 
219                                                 ElementCount));
220 }
221
222 LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty) {
223   return wrap(unwrap<SequentialType>(Ty)->getElementType());
224 }
225
226 unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy) {
227   return unwrap<ArrayType>(ArrayTy)->getNumElements();
228 }
229
230 unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) {
231   return unwrap<PointerType>(PointerTy)->getAddressSpace();
232 }
233
234 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
235   return unwrap<VectorType>(VectorTy)->getNumElements();
236 }
237
238 /*--.. Operations on other types ...........................................--*/
239
240 LLVMTypeRef LLVMVoidType(void)  { return (LLVMTypeRef) Type::VoidTy;  }
241 LLVMTypeRef LLVMLabelType(void) { return (LLVMTypeRef) Type::LabelTy; }
242
243 LLVMTypeRef LLVMOpaqueType(void) {
244   return wrap(getGlobalContext().getOpaqueType());
245 }
246
247 /*--.. Operations on type handles ..........................................--*/
248
249 LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy) {
250   return wrap(new PATypeHolder(unwrap(PotentiallyAbstractTy)));
251 }
252
253 void LLVMDisposeTypeHandle(LLVMTypeHandleRef TypeHandle) {
254   delete unwrap(TypeHandle);
255 }
256
257 LLVMTypeRef LLVMResolveTypeHandle(LLVMTypeHandleRef TypeHandle) {
258   return wrap(unwrap(TypeHandle)->get());
259 }
260
261 void LLVMRefineType(LLVMTypeRef AbstractTy, LLVMTypeRef ConcreteTy) {
262   unwrap<DerivedType>(AbstractTy)->refineAbstractTypeTo(unwrap(ConcreteTy));
263 }
264
265
266 /*===-- Operations on values ----------------------------------------------===*/
267
268 /*--.. Operations on all values ............................................--*/
269
270 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
271   return wrap(unwrap(Val)->getType());
272 }
273
274 const char *LLVMGetValueName(LLVMValueRef Val) {
275   return unwrap(Val)->getNameStart();
276 }
277
278 void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
279   unwrap(Val)->setName(Name);
280 }
281
282 void LLVMDumpValue(LLVMValueRef Val) {
283   unwrap(Val)->dump();
284 }
285
286
287 /*--.. Conversion functions ................................................--*/
288
289 #define LLVM_DEFINE_VALUE_CAST(name)                                       \
290   LLVMValueRef LLVMIsA##name(LLVMValueRef Val) {                           \
291     return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
292   }
293
294 LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DEFINE_VALUE_CAST)
295
296
297 /*--.. Operations on constants of any type .................................--*/
298
299 LLVMValueRef LLVMConstNull(LLVMTypeRef Ty) {
300   return wrap(getGlobalContext().getNullValue(unwrap(Ty)));
301 }
302
303 LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty) {
304   return wrap(getGlobalContext().getAllOnesValue(unwrap(Ty)));
305 }
306
307 LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty) {
308   return wrap(getGlobalContext().getUndef(unwrap(Ty)));
309 }
310
311 int LLVMIsConstant(LLVMValueRef Ty) {
312   return isa<Constant>(unwrap(Ty));
313 }
314
315 int LLVMIsNull(LLVMValueRef Val) {
316   if (Constant *C = dyn_cast<Constant>(unwrap(Val)))
317     return C->isNullValue();
318   return false;
319 }
320
321 int LLVMIsUndef(LLVMValueRef Val) {
322   return isa<UndefValue>(unwrap(Val));
323 }
324
325 LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty) {
326   return
327       wrap(getGlobalContext().getConstantPointerNull(unwrap<PointerType>(Ty)));
328 }
329
330 /*--.. Operations on scalar constants ......................................--*/
331
332 LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
333                           int SignExtend) {
334   return wrap(getGlobalContext().getConstantInt(unwrap<IntegerType>(IntTy), N,
335                                                  SignExtend != 0));
336 }
337
338 static const fltSemantics &SemanticsForType(Type *Ty) {
339   assert(Ty->isFloatingPoint() && "Type is not floating point!");
340   if (Ty == Type::FloatTy)
341     return APFloat::IEEEsingle;
342   if (Ty == Type::DoubleTy)
343     return APFloat::IEEEdouble;
344   if (Ty == Type::X86_FP80Ty)
345     return APFloat::x87DoubleExtended;
346   if (Ty == Type::FP128Ty)
347     return APFloat::IEEEquad;
348   if (Ty == Type::PPC_FP128Ty)
349     return APFloat::PPCDoubleDouble;
350   return APFloat::Bogus;
351 }
352
353 LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) {
354   APFloat APN(N);
355   bool ignored;
356   APN.convert(SemanticsForType(unwrap(RealTy)), APFloat::rmNearestTiesToEven,
357               &ignored);
358   return wrap(getGlobalContext().getConstantFP(APN));
359 }
360
361 LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) {
362   return wrap(getGlobalContext().getConstantFP(
363                               APFloat(SemanticsForType(unwrap(RealTy)), Text)));
364 }
365
366 /*--.. Operations on composite constants ...................................--*/
367
368 LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
369                              int DontNullTerminate) {
370   /* Inverted the sense of AddNull because ', 0)' is a
371      better mnemonic for null termination than ', 1)'. */
372   return wrap(getGlobalContext().getConstantArray(std::string(Str, Length),
373                                  DontNullTerminate == 0));
374 }
375
376 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
377                             LLVMValueRef *ConstantVals, unsigned Length) {
378   return wrap(getGlobalContext().getConstantArray(
379                     getGlobalContext().getArrayType(unwrap(ElementTy), Length),
380                                  unwrap<Constant>(ConstantVals, Length),
381                                  Length));
382 }
383
384 LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
385                              int Packed) {
386   return wrap(getGlobalContext().getConstantStruct(
387                                   unwrap<Constant>(ConstantVals, Count),
388                                   Count, Packed != 0));
389 }
390
391 LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size) {
392   return wrap(getGlobalContext().getConstantVector(
393                             unwrap<Constant>(ScalarConstantVals, Size), Size));
394 }
395
396 /*--.. Constant expressions ................................................--*/
397
398 LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty) {
399   return wrap(getGlobalContext().getConstantExprAlignOf(unwrap(Ty)));
400 }
401
402 LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty) {
403   return wrap(getGlobalContext().getConstantExprSizeOf(unwrap(Ty)));
404 }
405
406 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
407   return wrap(getGlobalContext().getConstantExprNeg(
408                                                 unwrap<Constant>(ConstantVal)));
409 }
410
411 LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal) {
412   return wrap(getGlobalContext().getConstantExprNot(
413                                                 unwrap<Constant>(ConstantVal)));
414 }
415
416 LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
417   return wrap(getGlobalContext().getConstantExprAdd(
418                                    unwrap<Constant>(LHSConstant),
419                                    unwrap<Constant>(RHSConstant)));
420 }
421
422 LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
423   return wrap(getGlobalContext().getConstantExprSub(
424                                    unwrap<Constant>(LHSConstant),
425                                    unwrap<Constant>(RHSConstant)));
426 }
427
428 LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
429   return wrap(getGlobalContext().getConstantExprMul(
430                                    unwrap<Constant>(LHSConstant),
431                                    unwrap<Constant>(RHSConstant)));
432 }
433
434 LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
435   return wrap(getGlobalContext().getConstantExprUDiv(
436                                     unwrap<Constant>(LHSConstant),
437                                     unwrap<Constant>(RHSConstant)));
438 }
439
440 LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
441   return wrap(getGlobalContext().getConstantExprSDiv(
442                                     unwrap<Constant>(LHSConstant),
443                                     unwrap<Constant>(RHSConstant)));
444 }
445
446 LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
447   return wrap(getGlobalContext().getConstantExprFDiv(
448                                     unwrap<Constant>(LHSConstant),
449                                     unwrap<Constant>(RHSConstant)));
450 }
451
452 LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
453   return wrap(getGlobalContext().getConstantExprURem(
454                                     unwrap<Constant>(LHSConstant),
455                                     unwrap<Constant>(RHSConstant)));
456 }
457
458 LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
459   return wrap(getGlobalContext().getConstantExprSRem(
460                                     unwrap<Constant>(LHSConstant),
461                                     unwrap<Constant>(RHSConstant)));
462 }
463
464 LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
465   return wrap(getGlobalContext().getConstantExprFRem(
466                                     unwrap<Constant>(LHSConstant),
467                                     unwrap<Constant>(RHSConstant)));
468 }
469
470 LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
471   return wrap(getGlobalContext().getConstantExprAnd(
472                                    unwrap<Constant>(LHSConstant),
473                                    unwrap<Constant>(RHSConstant)));
474 }
475
476 LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
477   return wrap(getGlobalContext().getConstantExprOr(
478                                   unwrap<Constant>(LHSConstant),
479                                   unwrap<Constant>(RHSConstant)));
480 }
481
482 LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
483   return wrap(getGlobalContext().getConstantExprXor(
484                                    unwrap<Constant>(LHSConstant),
485                                    unwrap<Constant>(RHSConstant)));
486 }
487
488 LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
489                            LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
490   return wrap(getGlobalContext().getConstantExprICmp(Predicate,
491                                     unwrap<Constant>(LHSConstant),
492                                     unwrap<Constant>(RHSConstant)));
493 }
494
495 LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
496                            LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
497   return wrap(getGlobalContext().getConstantExprFCmp(Predicate,
498                                     unwrap<Constant>(LHSConstant),
499                                     unwrap<Constant>(RHSConstant)));
500 }
501
502 LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
503   return wrap(getGlobalContext().getConstantExprShl(
504                                   unwrap<Constant>(LHSConstant),
505                                   unwrap<Constant>(RHSConstant)));
506 }
507
508 LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
509   return wrap(getGlobalContext().getConstantExprLShr(
510                                     unwrap<Constant>(LHSConstant),
511                                     unwrap<Constant>(RHSConstant)));
512 }
513
514 LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
515   return wrap(getGlobalContext().getConstantExprAShr(
516                                     unwrap<Constant>(LHSConstant),
517                                     unwrap<Constant>(RHSConstant)));
518 }
519
520 LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
521                           LLVMValueRef *ConstantIndices, unsigned NumIndices) {
522   return wrap(getGlobalContext().getConstantExprGetElementPtr(
523                                              unwrap<Constant>(ConstantVal),
524                                              unwrap<Constant>(ConstantIndices, 
525                                                               NumIndices),
526                                              NumIndices));
527 }
528
529 LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
530   return wrap(getGlobalContext().getConstantExprTrunc(
531                                      unwrap<Constant>(ConstantVal),
532                                      unwrap(ToType)));
533 }
534
535 LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
536   return wrap(getGlobalContext().getConstantExprSExt(
537                                     unwrap<Constant>(ConstantVal),
538                                     unwrap(ToType)));
539 }
540
541 LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
542   return wrap(getGlobalContext().getConstantExprZExt(
543                                     unwrap<Constant>(ConstantVal),
544                                     unwrap(ToType)));
545 }
546
547 LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
548   return wrap(getGlobalContext().getConstantExprFPTrunc(
549                                        unwrap<Constant>(ConstantVal),
550                                        unwrap(ToType)));
551 }
552
553 LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
554   return wrap(getGlobalContext().getConstantExprFPExtend(
555                                         unwrap<Constant>(ConstantVal),
556                                         unwrap(ToType)));
557 }
558
559 LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
560   return wrap(getGlobalContext().getConstantExprUIToFP(
561                                       unwrap<Constant>(ConstantVal),
562                                       unwrap(ToType)));
563 }
564
565 LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
566   return wrap(getGlobalContext().getConstantExprSIToFP(unwrap<Constant>(ConstantVal),
567                                       unwrap(ToType)));
568 }
569
570 LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
571   return wrap(getGlobalContext().getConstantExprFPToUI(unwrap<Constant>(ConstantVal),
572                                       unwrap(ToType)));
573 }
574
575 LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
576   return wrap(getGlobalContext().getConstantExprFPToSI(
577                                       unwrap<Constant>(ConstantVal),
578                                       unwrap(ToType)));
579 }
580
581 LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
582   return wrap(getGlobalContext().getConstantExprPtrToInt(
583                                         unwrap<Constant>(ConstantVal),
584                                         unwrap(ToType)));
585 }
586
587 LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
588   return wrap(getGlobalContext().getConstantExprIntToPtr(
589                                         unwrap<Constant>(ConstantVal),
590                                         unwrap(ToType)));
591 }
592
593 LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
594   return wrap(getGlobalContext().getConstantExprBitCast(
595                                        unwrap<Constant>(ConstantVal),
596                                        unwrap(ToType)));
597 }
598
599 LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
600                              LLVMValueRef ConstantIfTrue,
601                              LLVMValueRef ConstantIfFalse) {
602   return wrap(getGlobalContext().getConstantExprSelect(
603                                       unwrap<Constant>(ConstantCondition),
604                                       unwrap<Constant>(ConstantIfTrue),
605                                       unwrap<Constant>(ConstantIfFalse)));
606 }
607
608 LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
609                                      LLVMValueRef IndexConstant) {
610   return wrap(getGlobalContext().getConstantExprExtractElement(
611                                               unwrap<Constant>(VectorConstant),
612                                               unwrap<Constant>(IndexConstant)));
613 }
614
615 LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
616                                     LLVMValueRef ElementValueConstant,
617                                     LLVMValueRef IndexConstant) {
618   return wrap(getGlobalContext().getConstantExprInsertElement(
619                                          unwrap<Constant>(VectorConstant),
620                                          unwrap<Constant>(ElementValueConstant),
621                                              unwrap<Constant>(IndexConstant)));
622 }
623
624 LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
625                                     LLVMValueRef VectorBConstant,
626                                     LLVMValueRef MaskConstant) {
627   return wrap(getGlobalContext().getConstantExprShuffleVector(
628                                              unwrap<Constant>(VectorAConstant),
629                                              unwrap<Constant>(VectorBConstant),
630                                              unwrap<Constant>(MaskConstant)));
631 }
632
633 LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
634                                    unsigned NumIdx) {
635   return wrap(getGlobalContext().getConstantExprExtractValue(
636                                             unwrap<Constant>(AggConstant),
637                                             IdxList, NumIdx));
638 }
639
640 LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
641                                   LLVMValueRef ElementValueConstant,
642                                   unsigned *IdxList, unsigned NumIdx) {
643   return wrap(getGlobalContext().getConstantExprInsertValue(
644                                          unwrap<Constant>(AggConstant),
645                                          unwrap<Constant>(ElementValueConstant),
646                                            IdxList, NumIdx));
647 }
648
649 LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString, 
650                                 const char *Constraints, int HasSideEffects) {
651   return wrap(InlineAsm::get(dyn_cast<FunctionType>(unwrap(Ty)), AsmString, 
652                              Constraints, HasSideEffects));
653 }
654
655 /*--.. Operations on global variables, functions, and aliases (globals) ....--*/
656
657 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) {
658   return wrap(unwrap<GlobalValue>(Global)->getParent());
659 }
660
661 int LLVMIsDeclaration(LLVMValueRef Global) {
662   return unwrap<GlobalValue>(Global)->isDeclaration();
663 }
664
665 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) {
666   return static_cast<LLVMLinkage>(unwrap<GlobalValue>(Global)->getLinkage());
667 }
668
669 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) {
670   unwrap<GlobalValue>(Global)
671     ->setLinkage(static_cast<GlobalValue::LinkageTypes>(Linkage));
672 }
673
674 const char *LLVMGetSection(LLVMValueRef Global) {
675   return unwrap<GlobalValue>(Global)->getSection().c_str();
676 }
677
678 void LLVMSetSection(LLVMValueRef Global, const char *Section) {
679   unwrap<GlobalValue>(Global)->setSection(Section);
680 }
681
682 LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) {
683   return static_cast<LLVMVisibility>(
684     unwrap<GlobalValue>(Global)->getVisibility());
685 }
686
687 void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) {
688   unwrap<GlobalValue>(Global)
689     ->setVisibility(static_cast<GlobalValue::VisibilityTypes>(Viz));
690 }
691
692 unsigned LLVMGetAlignment(LLVMValueRef Global) {
693   return unwrap<GlobalValue>(Global)->getAlignment();
694 }
695
696 void LLVMSetAlignment(LLVMValueRef Global, unsigned Bytes) {
697   unwrap<GlobalValue>(Global)->setAlignment(Bytes);
698 }
699
700 /*--.. Operations on global variables ......................................--*/
701
702 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) {
703   return wrap(new GlobalVariable(unwrap(Ty), false,
704                                  GlobalValue::ExternalLinkage, 0, Name,
705                                  unwrap(M)));
706 }
707
708 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) {
709   return wrap(unwrap(M)->getNamedGlobal(Name));
710 }
711
712 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) {
713   Module *Mod = unwrap(M);
714   Module::global_iterator I = Mod->global_begin();
715   if (I == Mod->global_end())
716     return 0;
717   return wrap(I);
718 }
719
720 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) {
721   Module *Mod = unwrap(M);
722   Module::global_iterator I = Mod->global_end();
723   if (I == Mod->global_begin())
724     return 0;
725   return wrap(--I);
726 }
727
728 LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar) {
729   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
730   Module::global_iterator I = GV;
731   if (++I == GV->getParent()->global_end())
732     return 0;
733   return wrap(I);
734 }
735
736 LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar) {
737   GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
738   Module::global_iterator I = GV;
739   if (I == GV->getParent()->global_begin())
740     return 0;
741   return wrap(--I);
742 }
743
744 void LLVMDeleteGlobal(LLVMValueRef GlobalVar) {
745   unwrap<GlobalVariable>(GlobalVar)->eraseFromParent();
746 }
747
748 LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar) {
749   return wrap(unwrap<GlobalVariable>(GlobalVar)->getInitializer());
750 }
751
752 void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal) {
753   unwrap<GlobalVariable>(GlobalVar)
754     ->setInitializer(unwrap<Constant>(ConstantVal));
755 }
756
757 int LLVMIsThreadLocal(LLVMValueRef GlobalVar) {
758   return unwrap<GlobalVariable>(GlobalVar)->isThreadLocal();
759 }
760
761 void LLVMSetThreadLocal(LLVMValueRef GlobalVar, int IsThreadLocal) {
762   unwrap<GlobalVariable>(GlobalVar)->setThreadLocal(IsThreadLocal != 0);
763 }
764
765 int LLVMIsGlobalConstant(LLVMValueRef GlobalVar) {
766   return unwrap<GlobalVariable>(GlobalVar)->isConstant();
767 }
768
769 void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, int IsConstant) {
770   unwrap<GlobalVariable>(GlobalVar)->setConstant(IsConstant != 0);
771 }
772
773 /*--.. Operations on aliases ......................................--*/
774
775 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
776                           const char *Name) {
777   return wrap(new GlobalAlias(unwrap(Ty), GlobalValue::ExternalLinkage, Name,
778                               unwrap<Constant>(Aliasee), unwrap (M)));
779 }
780
781 /*--.. Operations on functions .............................................--*/
782
783 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
784                              LLVMTypeRef FunctionTy) {
785   return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
786                                GlobalValue::ExternalLinkage, Name, unwrap(M)));
787 }
788
789 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) {
790   return wrap(unwrap(M)->getFunction(Name));
791 }
792
793 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) {
794   Module *Mod = unwrap(M);
795   Module::iterator I = Mod->begin();
796   if (I == Mod->end())
797     return 0;
798   return wrap(I);
799 }
800
801 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) {
802   Module *Mod = unwrap(M);
803   Module::iterator I = Mod->end();
804   if (I == Mod->begin())
805     return 0;
806   return wrap(--I);
807 }
808
809 LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn) {
810   Function *Func = unwrap<Function>(Fn);
811   Module::iterator I = Func;
812   if (++I == Func->getParent()->end())
813     return 0;
814   return wrap(I);
815 }
816
817 LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn) {
818   Function *Func = unwrap<Function>(Fn);
819   Module::iterator I = Func;
820   if (I == Func->getParent()->begin())
821     return 0;
822   return wrap(--I);
823 }
824
825 void LLVMDeleteFunction(LLVMValueRef Fn) {
826   unwrap<Function>(Fn)->eraseFromParent();
827 }
828
829 unsigned LLVMGetIntrinsicID(LLVMValueRef Fn) {
830   if (Function *F = dyn_cast<Function>(unwrap(Fn)))
831     return F->getIntrinsicID();
832   return 0;
833 }
834
835 unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn) {
836   return unwrap<Function>(Fn)->getCallingConv();
837 }
838
839 void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC) {
840   return unwrap<Function>(Fn)->setCallingConv(CC);
841 }
842
843 const char *LLVMGetGC(LLVMValueRef Fn) {
844   Function *F = unwrap<Function>(Fn);
845   return F->hasGC()? F->getGC() : 0;
846 }
847
848 void LLVMSetGC(LLVMValueRef Fn, const char *GC) {
849   Function *F = unwrap<Function>(Fn);
850   if (GC)
851     F->setGC(GC);
852   else
853     F->clearGC();
854 }
855
856 void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
857   Function *Func = unwrap<Function>(Fn);
858   const AttrListPtr PAL = Func->getAttributes();
859   const AttrListPtr PALnew = PAL.addAttr(0, PA);
860   Func->setAttributes(PALnew);
861 }
862
863 void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
864   Function *Func = unwrap<Function>(Fn);
865   const AttrListPtr PAL = Func->getAttributes();
866   const AttrListPtr PALnew = PAL.removeAttr(0, PA);
867   Func->setAttributes(PALnew);
868 }
869
870 /*--.. Operations on parameters ............................................--*/
871
872 unsigned LLVMCountParams(LLVMValueRef FnRef) {
873   // This function is strictly redundant to
874   //   LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
875   return unwrap<Function>(FnRef)->arg_size();
876 }
877
878 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) {
879   Function *Fn = unwrap<Function>(FnRef);
880   for (Function::arg_iterator I = Fn->arg_begin(),
881                               E = Fn->arg_end(); I != E; I++)
882     *ParamRefs++ = wrap(I);
883 }
884
885 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) {
886   Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin();
887   while (index --> 0)
888     AI++;
889   return wrap(AI);
890 }
891
892 LLVMValueRef LLVMGetParamParent(LLVMValueRef V) {
893   return wrap(unwrap<Argument>(V)->getParent());
894 }
895
896 LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn) {
897   Function *Func = unwrap<Function>(Fn);
898   Function::arg_iterator I = Func->arg_begin();
899   if (I == Func->arg_end())
900     return 0;
901   return wrap(I);
902 }
903
904 LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn) {
905   Function *Func = unwrap<Function>(Fn);
906   Function::arg_iterator I = Func->arg_end();
907   if (I == Func->arg_begin())
908     return 0;
909   return wrap(--I);
910 }
911
912 LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg) {
913   Argument *A = unwrap<Argument>(Arg);
914   Function::arg_iterator I = A;
915   if (++I == A->getParent()->arg_end())
916     return 0;
917   return wrap(I);
918 }
919
920 LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg) {
921   Argument *A = unwrap<Argument>(Arg);
922   Function::arg_iterator I = A;
923   if (I == A->getParent()->arg_begin())
924     return 0;
925   return wrap(--I);
926 }
927
928 void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
929   unwrap<Argument>(Arg)->addAttr(PA);
930 }
931
932 void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
933   unwrap<Argument>(Arg)->removeAttr(PA);
934 }
935
936 void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align) {
937   unwrap<Argument>(Arg)->addAttr(
938           Attribute::constructAlignmentFromInt(align));
939 }
940
941 /*--.. Operations on basic blocks ..........................................--*/
942
943 LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB) {
944   return wrap(static_cast<Value*>(unwrap(BB)));
945 }
946
947 int LLVMValueIsBasicBlock(LLVMValueRef Val) {
948   return isa<BasicBlock>(unwrap(Val));
949 }
950
951 LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val) {
952   return wrap(unwrap<BasicBlock>(Val));
953 }
954
955 LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB) {
956   return wrap(unwrap(BB)->getParent());
957 }
958
959 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) {
960   return unwrap<Function>(FnRef)->size();
961 }
962
963 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){
964   Function *Fn = unwrap<Function>(FnRef);
965   for (Function::iterator I = Fn->begin(), E = Fn->end(); I != E; I++)
966     *BasicBlocksRefs++ = wrap(I);
967 }
968
969 LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn) {
970   return wrap(&unwrap<Function>(Fn)->getEntryBlock());
971 }
972
973 LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn) {
974   Function *Func = unwrap<Function>(Fn);
975   Function::iterator I = Func->begin();
976   if (I == Func->end())
977     return 0;
978   return wrap(I);
979 }
980
981 LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn) {
982   Function *Func = unwrap<Function>(Fn);
983   Function::iterator I = Func->end();
984   if (I == Func->begin())
985     return 0;
986   return wrap(--I);
987 }
988
989 LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB) {
990   BasicBlock *Block = unwrap(BB);
991   Function::iterator I = Block;
992   if (++I == Block->getParent()->end())
993     return 0;
994   return wrap(I);
995 }
996
997 LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB) {
998   BasicBlock *Block = unwrap(BB);
999   Function::iterator I = Block;
1000   if (I == Block->getParent()->begin())
1001     return 0;
1002   return wrap(--I);
1003 }
1004
1005 LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef FnRef, const char *Name) {
1006   return wrap(BasicBlock::Create(Name, unwrap<Function>(FnRef)));
1007 }
1008
1009 LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef InsertBeforeBBRef,
1010                                        const char *Name) {
1011   BasicBlock *InsertBeforeBB = unwrap(InsertBeforeBBRef);
1012   return wrap(BasicBlock::Create(Name, InsertBeforeBB->getParent(),
1013                                  InsertBeforeBB));
1014 }
1015
1016 void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef) {
1017   unwrap(BBRef)->eraseFromParent();
1018 }
1019
1020 /*--.. Operations on instructions ..........................................--*/
1021
1022 LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst) {
1023   return wrap(unwrap<Instruction>(Inst)->getParent());
1024 }
1025
1026 LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB) {
1027   BasicBlock *Block = unwrap(BB);
1028   BasicBlock::iterator I = Block->begin();
1029   if (I == Block->end())
1030     return 0;
1031   return wrap(I);
1032 }
1033
1034 LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB) {
1035   BasicBlock *Block = unwrap(BB);
1036   BasicBlock::iterator I = Block->end();
1037   if (I == Block->begin())
1038     return 0;
1039   return wrap(--I);
1040 }
1041
1042 LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst) {
1043   Instruction *Instr = unwrap<Instruction>(Inst);
1044   BasicBlock::iterator I = Instr;
1045   if (++I == Instr->getParent()->end())
1046     return 0;
1047   return wrap(I);
1048 }
1049
1050 LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst) {
1051   Instruction *Instr = unwrap<Instruction>(Inst);
1052   BasicBlock::iterator I = Instr;
1053   if (I == Instr->getParent()->begin())
1054     return 0;
1055   return wrap(--I);
1056 }
1057
1058 /*--.. Call and invoke instructions ........................................--*/
1059
1060 unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) {
1061   Value *V = unwrap(Instr);
1062   if (CallInst *CI = dyn_cast<CallInst>(V))
1063     return CI->getCallingConv();
1064   else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
1065     return II->getCallingConv();
1066   assert(0 && "LLVMGetInstructionCallConv applies only to call and invoke!");
1067   return 0;
1068 }
1069
1070 void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) {
1071   Value *V = unwrap(Instr);
1072   if (CallInst *CI = dyn_cast<CallInst>(V))
1073     return CI->setCallingConv(CC);
1074   else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
1075     return II->setCallingConv(CC);
1076   assert(0 && "LLVMSetInstructionCallConv applies only to call and invoke!");
1077 }
1078
1079 void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index, 
1080                            LLVMAttribute PA) {
1081   CallSite Call = CallSite(unwrap<Instruction>(Instr));
1082   Call.setAttributes(
1083     Call.getAttributes().addAttr(index, PA));
1084 }
1085
1086 void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index, 
1087                               LLVMAttribute PA) {
1088   CallSite Call = CallSite(unwrap<Instruction>(Instr));
1089   Call.setAttributes(
1090     Call.getAttributes().removeAttr(index, PA));
1091 }
1092
1093 void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index, 
1094                                 unsigned align) {
1095   CallSite Call = CallSite(unwrap<Instruction>(Instr));
1096   Call.setAttributes(
1097     Call.getAttributes().addAttr(index, 
1098         Attribute::constructAlignmentFromInt(align)));
1099 }
1100
1101 /*--.. Operations on call instructions (only) ..............................--*/
1102
1103 int LLVMIsTailCall(LLVMValueRef Call) {
1104   return unwrap<CallInst>(Call)->isTailCall();
1105 }
1106
1107 void LLVMSetTailCall(LLVMValueRef Call, int isTailCall) {
1108   unwrap<CallInst>(Call)->setTailCall(isTailCall);
1109 }
1110
1111 /*--.. Operations on phi nodes .............................................--*/
1112
1113 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
1114                      LLVMBasicBlockRef *IncomingBlocks, unsigned Count) {
1115   PHINode *PhiVal = unwrap<PHINode>(PhiNode);
1116   for (unsigned I = 0; I != Count; ++I)
1117     PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I]));
1118 }
1119
1120 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
1121   return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
1122 }
1123
1124 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
1125   return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
1126 }
1127
1128 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
1129   return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));
1130 }
1131
1132
1133 /*===-- Instruction builders ----------------------------------------------===*/
1134
1135 LLVMBuilderRef LLVMCreateBuilder(void) {
1136   return wrap(new IRBuilder<>());
1137 }
1138
1139 void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
1140                          LLVMValueRef Instr) {
1141   BasicBlock *BB = unwrap(Block);
1142   Instruction *I = Instr? unwrap<Instruction>(Instr) : (Instruction*) BB->end();
1143   unwrap(Builder)->SetInsertPoint(BB, I);
1144 }
1145
1146 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) {
1147   Instruction *I = unwrap<Instruction>(Instr);
1148   unwrap(Builder)->SetInsertPoint(I->getParent(), I);
1149 }
1150
1151 void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block) {
1152   BasicBlock *BB = unwrap(Block);
1153   unwrap(Builder)->SetInsertPoint(BB);
1154 }
1155
1156 LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder) {
1157    return wrap(unwrap(Builder)->GetInsertBlock());
1158 }
1159
1160 void LLVMClearInsertionPosition(LLVMBuilderRef Builder) {
1161   unwrap(Builder)->ClearInsertionPoint ();
1162 }
1163
1164 void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr) {
1165   unwrap(Builder)->Insert(unwrap<Instruction>(Instr));
1166 }
1167
1168 void LLVMDisposeBuilder(LLVMBuilderRef Builder) {
1169   delete unwrap(Builder);
1170 }
1171
1172 /*--.. Instruction builders ................................................--*/
1173
1174 LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef B) {
1175   return wrap(unwrap(B)->CreateRetVoid());
1176 }
1177
1178 LLVMValueRef LLVMBuildRet(LLVMBuilderRef B, LLVMValueRef V) {
1179   return wrap(unwrap(B)->CreateRet(unwrap(V)));
1180 }
1181
1182 LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) {
1183   return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
1184 }
1185
1186 LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If,
1187                              LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
1188   return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
1189 }
1190
1191 LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V,
1192                              LLVMBasicBlockRef Else, unsigned NumCases) {
1193   return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
1194 }
1195
1196 LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn,
1197                              LLVMValueRef *Args, unsigned NumArgs,
1198                              LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
1199                              const char *Name) {
1200   return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
1201                                       unwrap(Args), unwrap(Args) + NumArgs,
1202                                       Name));
1203 }
1204
1205 LLVMValueRef LLVMBuildUnwind(LLVMBuilderRef B) {
1206   return wrap(unwrap(B)->CreateUnwind());
1207 }
1208
1209 LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef B) {
1210   return wrap(unwrap(B)->CreateUnreachable());
1211 }
1212
1213 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
1214                  LLVMBasicBlockRef Dest) {
1215   unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
1216 }
1217
1218 /*--.. Arithmetic ..........................................................--*/
1219
1220 LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1221                           const char *Name) {
1222   return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
1223 }
1224
1225 LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1226                           const char *Name) {
1227   return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwrap(RHS), Name));
1228 }
1229
1230 LLVMValueRef LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1231                           const char *Name) {
1232   return wrap(unwrap(B)->CreateMul(unwrap(LHS), unwrap(RHS), Name));
1233 }
1234
1235 LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1236                            const char *Name) {
1237   return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
1238 }
1239
1240 LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1241                            const char *Name) {
1242   return wrap(unwrap(B)->CreateSDiv(unwrap(LHS), unwrap(RHS), Name));
1243 }
1244
1245 LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1246                            const char *Name) {
1247   return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
1248 }
1249
1250 LLVMValueRef LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1251                            const char *Name) {
1252   return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
1253 }
1254
1255 LLVMValueRef LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1256                            const char *Name) {
1257   return wrap(unwrap(B)->CreateSRem(unwrap(LHS), unwrap(RHS), Name));
1258 }
1259
1260 LLVMValueRef LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1261                            const char *Name) {
1262   return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name));
1263 }
1264
1265 LLVMValueRef LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1266                           const char *Name) {
1267   return wrap(unwrap(B)->CreateShl(unwrap(LHS), unwrap(RHS), Name));
1268 }
1269
1270 LLVMValueRef LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1271                            const char *Name) {
1272   return wrap(unwrap(B)->CreateLShr(unwrap(LHS), unwrap(RHS), Name));
1273 }
1274
1275 LLVMValueRef LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1276                            const char *Name) {
1277   return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
1278 }
1279
1280 LLVMValueRef LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1281                           const char *Name) {
1282   return wrap(unwrap(B)->CreateAnd(unwrap(LHS), unwrap(RHS), Name));
1283 }
1284
1285 LLVMValueRef LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1286                          const char *Name) {
1287   return wrap(unwrap(B)->CreateOr(unwrap(LHS), unwrap(RHS), Name));
1288 }
1289
1290 LLVMValueRef LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
1291                           const char *Name) {
1292   return wrap(unwrap(B)->CreateXor(unwrap(LHS), unwrap(RHS), Name));
1293 }
1294
1295 LLVMValueRef LLVMBuildNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
1296   return wrap(unwrap(B)->CreateNeg(unwrap(V), Name));
1297 }
1298
1299 LLVMValueRef LLVMBuildNot(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
1300   return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
1301 }
1302
1303 /*--.. Memory ..............................................................--*/
1304
1305 LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
1306                              const char *Name) {
1307   return wrap(unwrap(B)->CreateMalloc(unwrap(Ty), 0, Name));
1308 }
1309
1310 LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
1311                                   LLVMValueRef Val, const char *Name) {
1312   return wrap(unwrap(B)->CreateMalloc(unwrap(Ty), unwrap(Val), Name));
1313 }
1314
1315 LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
1316                              const char *Name) {
1317   return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), 0, Name));
1318 }
1319
1320 LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
1321                                   LLVMValueRef Val, const char *Name) {
1322   return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name));
1323 }
1324
1325 LLVMValueRef LLVMBuildFree(LLVMBuilderRef B, LLVMValueRef PointerVal) {
1326   return wrap(unwrap(B)->CreateFree(unwrap(PointerVal)));
1327 }
1328
1329
1330 LLVMValueRef LLVMBuildLoad(LLVMBuilderRef B, LLVMValueRef PointerVal,
1331                            const char *Name) {
1332   return wrap(unwrap(B)->CreateLoad(unwrap(PointerVal), Name));
1333 }
1334
1335 LLVMValueRef LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val, 
1336                             LLVMValueRef PointerVal) {
1337   return wrap(unwrap(B)->CreateStore(unwrap(Val), unwrap(PointerVal)));
1338 }
1339
1340 LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
1341                           LLVMValueRef *Indices, unsigned NumIndices,
1342                           const char *Name) {
1343   return wrap(unwrap(B)->CreateGEP(unwrap(Pointer), unwrap(Indices),
1344                                    unwrap(Indices) + NumIndices, Name));
1345 }
1346
1347 /*--.. Casts ...............................................................--*/
1348
1349 LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val,
1350                             LLVMTypeRef DestTy, const char *Name) {
1351   return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
1352 }
1353
1354 LLVMValueRef LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val,
1355                            LLVMTypeRef DestTy, const char *Name) {
1356   return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
1357 }
1358
1359 LLVMValueRef LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val,
1360                            LLVMTypeRef DestTy, const char *Name) {
1361   return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
1362 }
1363
1364 LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val,
1365                              LLVMTypeRef DestTy, const char *Name) {
1366   return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
1367 }
1368
1369 LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val,
1370                              LLVMTypeRef DestTy, const char *Name) {
1371   return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
1372 }
1373
1374 LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val,
1375                              LLVMTypeRef DestTy, const char *Name) {
1376   return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
1377 }
1378
1379 LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val,
1380                              LLVMTypeRef DestTy, const char *Name) {
1381   return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
1382 }
1383
1384 LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val,
1385                               LLVMTypeRef DestTy, const char *Name) {
1386   return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
1387 }
1388
1389 LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val,
1390                             LLVMTypeRef DestTy, const char *Name) {
1391   return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
1392 }
1393
1394 LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val,
1395                                LLVMTypeRef DestTy, const char *Name) {
1396   return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
1397 }
1398
1399 LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val,
1400                                LLVMTypeRef DestTy, const char *Name) {
1401   return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
1402 }
1403
1404 LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val,
1405                               LLVMTypeRef DestTy, const char *Name) {
1406   return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
1407 }
1408
1409 /*--.. Comparisons .........................................................--*/
1410
1411 LLVMValueRef LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op,
1412                            LLVMValueRef LHS, LLVMValueRef RHS,
1413                            const char *Name) {
1414   return wrap(unwrap(B)->CreateICmp(static_cast<ICmpInst::Predicate>(Op),
1415                                     unwrap(LHS), unwrap(RHS), Name));
1416 }
1417
1418 LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op,
1419                            LLVMValueRef LHS, LLVMValueRef RHS,
1420                            const char *Name) {
1421   return wrap(unwrap(B)->CreateFCmp(static_cast<FCmpInst::Predicate>(Op),
1422                                     unwrap(LHS), unwrap(RHS), Name));
1423 }
1424
1425 /*--.. Miscellaneous instructions ..........................................--*/
1426
1427 LLVMValueRef LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) {
1428   return wrap(unwrap(B)->CreatePHI(unwrap(Ty), Name));
1429 }
1430
1431 LLVMValueRef LLVMBuildCall(LLVMBuilderRef B, LLVMValueRef Fn,
1432                            LLVMValueRef *Args, unsigned NumArgs,
1433                            const char *Name) {
1434   return wrap(unwrap(B)->CreateCall(unwrap(Fn), unwrap(Args),
1435                                     unwrap(Args) + NumArgs, Name));
1436 }
1437
1438 LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If,
1439                              LLVMValueRef Then, LLVMValueRef Else,
1440                              const char *Name) {
1441   return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
1442                                       Name));
1443 }
1444
1445 LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
1446                             LLVMTypeRef Ty, const char *Name) {
1447   return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
1448 }
1449
1450 LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef B, LLVMValueRef VecVal,
1451                                       LLVMValueRef Index, const char *Name) {
1452   return wrap(unwrap(B)->CreateExtractElement(unwrap(VecVal), unwrap(Index),
1453                                               Name));
1454 }
1455
1456 LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef B, LLVMValueRef VecVal,
1457                                     LLVMValueRef EltVal, LLVMValueRef Index,
1458                                     const char *Name) {
1459   return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal),
1460                                              unwrap(Index), Name));
1461 }
1462
1463 LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef B, LLVMValueRef V1,
1464                                     LLVMValueRef V2, LLVMValueRef Mask,
1465                                     const char *Name) {
1466   return wrap(unwrap(B)->CreateShuffleVector(unwrap(V1), unwrap(V2),
1467                                              unwrap(Mask), Name));
1468 }
1469
1470 LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef B, LLVMValueRef AggVal,
1471                                    unsigned Index, const char *Name) {
1472   return wrap(unwrap(B)->CreateExtractValue(unwrap(AggVal), Index, Name));
1473 }
1474
1475 LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef B, LLVMValueRef AggVal,
1476                                   LLVMValueRef EltVal, unsigned Index,
1477                                   const char *Name) {
1478   return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal),
1479                                            Index, Name));
1480 }
1481
1482
1483 /*===-- Module providers --------------------------------------------------===*/
1484
1485 LLVMModuleProviderRef
1486 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) {
1487   return wrap(new ExistingModuleProvider(unwrap(M)));
1488 }
1489
1490 void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) {
1491   delete unwrap(MP);
1492 }
1493
1494
1495 /*===-- Memory buffers ----------------------------------------------------===*/
1496
1497 int LLVMCreateMemoryBufferWithContentsOfFile(const char *Path,
1498                                              LLVMMemoryBufferRef *OutMemBuf,
1499                                              char **OutMessage) {
1500   std::string Error;
1501   if (MemoryBuffer *MB = MemoryBuffer::getFile(Path, &Error)) {
1502     *OutMemBuf = wrap(MB);
1503     return 0;
1504   }
1505   
1506   *OutMessage = strdup(Error.c_str());
1507   return 1;
1508 }
1509
1510 int LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
1511                                     char **OutMessage) {
1512   if (MemoryBuffer *MB = MemoryBuffer::getSTDIN()) {
1513     *OutMemBuf = wrap(MB);
1514     return 0;
1515   }
1516   
1517   *OutMessage = strdup("stdin is empty.");
1518   return 1;
1519 }
1520
1521 void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf) {
1522   delete unwrap(MemBuf);
1523 }