blob: 665f0ac1b8278752558f34aed74f3ecc4a553148 [file] [log] [blame]
Gordon Henriksen8b94a142007-09-18 03:18:57 +00001//===-- Core.cpp ----------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Gordon Henriksen8b94a142007-09-18 03:18:57 +00007//
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"
Gordon Henriksen8b94a142007-09-18 03:18:57 +000017#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/GlobalVariable.h"
Gordon Henriksen46abf912007-09-26 20:56:12 +000020#include "llvm/TypeSymbolTable.h"
Gordon Henriksen1ae61352007-12-12 01:04:30 +000021#include "llvm/ModuleProvider.h"
Gordon Henriksenda1435f2007-12-19 22:30:40 +000022#include "llvm/Support/MemoryBuffer.h"
Gordon Henriksen8b94a142007-09-18 03:18:57 +000023#include <cassert>
Gordon Henriksenda1435f2007-12-19 22:30:40 +000024#include <cstdlib>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000025#include <cstring>
Gordon Henriksen8b94a142007-09-18 03:18:57 +000026
27using namespace llvm;
28
29
Gordon Henriksenda1435f2007-12-19 22:30:40 +000030/*===-- Error handling ----------------------------------------------------===*/
31
32void LLVMDisposeMessage(char *Message) {
33 free(Message);
34}
35
36
Gordon Henriksen8b94a142007-09-18 03:18:57 +000037/*===-- Operations on modules ---------------------------------------------===*/
38
39LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
40 return wrap(new Module(ModuleID));
41}
42
43void LLVMDisposeModule(LLVMModuleRef M) {
44 delete unwrap(M);
45}
46
Gordon Henriksena353ffa2007-12-27 20:13:47 +000047/*--.. Data layout .........................................................--*/
48const char * LLVMGetDataLayout(LLVMModuleRef M) {
49 return unwrap(M)->getDataLayout().c_str();
50}
51
52void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) {
53 unwrap(M)->setDataLayout(Triple);
54}
55
56/*--.. Target triple .......................................................--*/
57const char * LLVMGetTarget(LLVMModuleRef M) {
58 return unwrap(M)->getTargetTriple().c_str();
59}
60
61void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
62 unwrap(M)->setTargetTriple(Triple);
63}
64
65/*--.. Type names ..........................................................--*/
Gordon Henriksen8b94a142007-09-18 03:18:57 +000066int LLVMAddTypeName(LLVMModuleRef M, const char *Name, LLVMTypeRef Ty) {
67 return unwrap(M)->addTypeName(Name, unwrap(Ty));
68}
69
Gordon Henriksen46abf912007-09-26 20:56:12 +000070void LLVMDeleteTypeName(LLVMModuleRef M, const char *Name) {
71 std::string N(Name);
72
73 TypeSymbolTable &TST = unwrap(M)->getTypeSymbolTable();
74 for (TypeSymbolTable::iterator I = TST.begin(), E = TST.end(); I != E; ++I)
75 if (I->first == N)
76 TST.remove(I);
77}
78
Gordon Henriksenaf59b102008-03-14 23:58:56 +000079void LLVMDumpModule(LLVMModuleRef M) {
80 unwrap(M)->dump();
81}
82
Gordon Henriksen8b94a142007-09-18 03:18:57 +000083
84/*===-- Operations on types -----------------------------------------------===*/
85
86/*--.. Operations on all types (mostly) ....................................--*/
87
88LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) {
89 return static_cast<LLVMTypeKind>(unwrap(Ty)->getTypeID());
90}
91
92void LLVMRefineAbstractType(LLVMTypeRef AbstractType, LLVMTypeRef ConcreteType){
93 DerivedType *Ty = unwrap<DerivedType>(AbstractType);
94 Ty->refineAbstractTypeTo(unwrap(ConcreteType));
95}
96
97/*--.. Operations on integer types .........................................--*/
98
99LLVMTypeRef LLVMInt1Type() { return (LLVMTypeRef) Type::Int1Ty; }
100LLVMTypeRef LLVMInt8Type() { return (LLVMTypeRef) Type::Int8Ty; }
101LLVMTypeRef LLVMInt16Type() { return (LLVMTypeRef) Type::Int16Ty; }
102LLVMTypeRef LLVMInt32Type() { return (LLVMTypeRef) Type::Int32Ty; }
103LLVMTypeRef LLVMInt64Type() { return (LLVMTypeRef) Type::Int64Ty; }
104
Gordon Henriksen81a78812007-10-06 16:05:20 +0000105LLVMTypeRef LLVMIntType(unsigned NumBits) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000106 return wrap(IntegerType::get(NumBits));
107}
108
Gordon Henriksen46abf912007-09-26 20:56:12 +0000109unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000110 return unwrap<IntegerType>(IntegerTy)->getBitWidth();
111}
112
113/*--.. Operations on real types ............................................--*/
114
115LLVMTypeRef LLVMFloatType() { return (LLVMTypeRef) Type::FloatTy; }
116LLVMTypeRef LLVMDoubleType() { return (LLVMTypeRef) Type::DoubleTy; }
117LLVMTypeRef LLVMX86FP80Type() { return (LLVMTypeRef) Type::X86_FP80Ty; }
118LLVMTypeRef LLVMFP128Type() { return (LLVMTypeRef) Type::FP128Ty; }
119LLVMTypeRef LLVMPPCFP128Type() { return (LLVMTypeRef) Type::PPC_FP128Ty; }
120
121/*--.. Operations on function types ........................................--*/
122
Gordon Henriksen81a78812007-10-06 16:05:20 +0000123LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
124 LLVMTypeRef *ParamTypes, unsigned ParamCount,
125 int IsVarArg) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000126 std::vector<const Type*> Tys;
127 for (LLVMTypeRef *I = ParamTypes, *E = ParamTypes + ParamCount; I != E; ++I)
128 Tys.push_back(unwrap(*I));
129
130 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
131}
132
133int LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
134 return unwrap<FunctionType>(FunctionTy)->isVarArg();
135}
136
Gordon Henriksen46abf912007-09-26 20:56:12 +0000137LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000138 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
139}
140
Gordon Henriksen46abf912007-09-26 20:56:12 +0000141unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000142 return unwrap<FunctionType>(FunctionTy)->getNumParams();
143}
144
Gordon Henriksen46abf912007-09-26 20:56:12 +0000145void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000146 FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
147 for (FunctionType::param_iterator I = Ty->param_begin(),
148 E = Ty->param_end(); I != E; ++I)
149 *Dest++ = wrap(*I);
150}
151
152/*--.. Operations on struct types ..........................................--*/
153
Gordon Henriksen81a78812007-10-06 16:05:20 +0000154LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
155 unsigned ElementCount, int Packed) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000156 std::vector<const Type*> Tys;
157 for (LLVMTypeRef *I = ElementTypes,
158 *E = ElementTypes + ElementCount; I != E; ++I)
159 Tys.push_back(unwrap(*I));
160
161 return wrap(StructType::get(Tys, Packed != 0));
162}
163
Gordon Henriksen46abf912007-09-26 20:56:12 +0000164unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000165 return unwrap<StructType>(StructTy)->getNumElements();
166}
167
168void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
169 StructType *Ty = unwrap<StructType>(StructTy);
170 for (FunctionType::param_iterator I = Ty->element_begin(),
171 E = Ty->element_end(); I != E; ++I)
172 *Dest++ = wrap(*I);
173}
174
175int LLVMIsPackedStruct(LLVMTypeRef StructTy) {
176 return unwrap<StructType>(StructTy)->isPacked();
177}
178
179/*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
180
Gordon Henriksen57cebee2007-12-17 16:08:32 +0000181LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000182 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
183}
184
Gordon Henriksen57cebee2007-12-17 16:08:32 +0000185LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) {
186 return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000187}
188
Gordon Henriksen57cebee2007-12-17 16:08:32 +0000189LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000190 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
191}
192
193LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty) {
194 return wrap(unwrap<SequentialType>(Ty)->getElementType());
195}
196
197unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy) {
198 return unwrap<ArrayType>(ArrayTy)->getNumElements();
199}
200
Gordon Henriksen57cebee2007-12-17 16:08:32 +0000201unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) {
202 return unwrap<PointerType>(PointerTy)->getAddressSpace();
203}
204
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000205unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
206 return unwrap<VectorType>(VectorTy)->getNumElements();
207}
208
209/*--.. Operations on other types ...........................................--*/
210
211LLVMTypeRef LLVMVoidType() { return (LLVMTypeRef) Type::VoidTy; }
212LLVMTypeRef LLVMLabelType() { return (LLVMTypeRef) Type::LabelTy; }
213
Gordon Henriksen81a78812007-10-06 16:05:20 +0000214LLVMTypeRef LLVMOpaqueType() {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000215 return wrap(llvm::OpaqueType::get());
216}
217
Gordon Henriksen1cf08fd2007-10-07 00:13:35 +0000218/* Operations on type handles */
219
220LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy) {
221 return wrap(new PATypeHolder(unwrap(PotentiallyAbstractTy)));
222}
223
224void LLVMDisposeTypeHandle(LLVMTypeHandleRef TypeHandle) {
225 delete unwrap(TypeHandle);
226}
227
228LLVMTypeRef LLVMResolveTypeHandle(LLVMTypeHandleRef TypeHandle) {
229 return wrap(unwrap(TypeHandle)->get());
230}
231
232void LLVMRefineType(LLVMTypeRef AbstractTy, LLVMTypeRef ConcreteTy) {
233 unwrap<DerivedType>(AbstractTy)->refineAbstractTypeTo(unwrap(ConcreteTy));
234}
235
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000236
237/*===-- Operations on values ----------------------------------------------===*/
238
239/*--.. Operations on all values ............................................--*/
240
Gordon Henriksen46abf912007-09-26 20:56:12 +0000241LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000242 return wrap(unwrap(Val)->getType());
243}
244
245const char *LLVMGetValueName(LLVMValueRef Val) {
246 return unwrap(Val)->getNameStart();
247}
248
249void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
250 unwrap(Val)->setName(Name);
251}
252
Gordon Henriksen88cc6992007-10-06 00:08:49 +0000253void LLVMDumpValue(LLVMValueRef Val) {
254 unwrap(Val)->dump();
255}
256
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000257/*--.. Operations on constants of any type .................................--*/
258
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000259LLVMValueRef LLVMConstNull(LLVMTypeRef Ty) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000260 return wrap(Constant::getNullValue(unwrap(Ty)));
261}
262
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000263LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000264 return wrap(Constant::getAllOnesValue(unwrap(Ty)));
265}
266
267LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty) {
268 return wrap(UndefValue::get(unwrap(Ty)));
269}
270
Gordon Henriksen344be5f2007-09-18 18:07:51 +0000271int LLVMIsConstant(LLVMValueRef Ty) {
272 return isa<Constant>(unwrap(Ty));
273}
274
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000275int LLVMIsNull(LLVMValueRef Val) {
276 if (Constant *C = dyn_cast<Constant>(unwrap(Val)))
277 return C->isNullValue();
278 return false;
279}
280
Gordon Henriksen344be5f2007-09-18 18:07:51 +0000281int LLVMIsUndef(LLVMValueRef Val) {
282 return isa<UndefValue>(unwrap(Val));
283}
284
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000285/*--.. Operations on scalar constants ......................................--*/
286
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000287LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
288 int SignExtend) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000289 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
290}
291
Gordon Henriksene62a8a32008-02-02 01:07:50 +0000292static const fltSemantics &SemanticsForType(Type *Ty) {
293 assert(Ty->isFloatingPoint() && "Type is not floating point!");
294 if (Ty == Type::FloatTy)
295 return APFloat::IEEEsingle;
296 if (Ty == Type::DoubleTy)
297 return APFloat::IEEEdouble;
298 if (Ty == Type::X86_FP80Ty)
299 return APFloat::x87DoubleExtended;
300 if (Ty == Type::FP128Ty)
301 return APFloat::IEEEquad;
302 if (Ty == Type::PPC_FP128Ty)
303 return APFloat::PPCDoubleDouble;
304 return APFloat::Bogus;
305}
306
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000307LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) {
Gordon Henriksene62a8a32008-02-02 01:07:50 +0000308 APFloat APN(N);
309 APN.convert(SemanticsForType(unwrap(RealTy)), APFloat::rmNearestTiesToEven);
310 return wrap(ConstantFP::get(unwrap(RealTy), APN));
311}
312
313LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) {
314 return wrap(ConstantFP::get(unwrap(RealTy),
315 APFloat(SemanticsForType(unwrap(RealTy)), Text)));
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000316}
317
318/*--.. Operations on composite constants ...................................--*/
319
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000320LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
321 int DontNullTerminate) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000322 /* Inverted the sense of AddNull because ', 0)' is a
323 better mnemonic for null termination than ', 1)'. */
324 return wrap(ConstantArray::get(std::string(Str, Length),
325 DontNullTerminate == 0));
326}
327
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000328LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
329 LLVMValueRef *ConstantVals, unsigned Length) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000330 return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length),
331 unwrap<Constant>(ConstantVals, Length),
332 Length));
333}
334
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000335LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
336 int Packed) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000337 return wrap(ConstantStruct::get(unwrap<Constant>(ConstantVals, Count),
338 Count, Packed != 0));
339}
340
Gordon Henriksene3b989d2007-10-06 15:11:06 +0000341LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size) {
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000342 return wrap(ConstantVector::get(unwrap<Constant>(ScalarConstantVals, Size),
343 Size));
344}
345
Gordon Henriksen46475692007-10-06 14:29:36 +0000346/*--.. Constant expressions ................................................--*/
347
348LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty) {
349 return wrap(ConstantExpr::getSizeOf(unwrap(Ty)));
350}
351
352LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
353 return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
354}
355
356LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal) {
357 return wrap(ConstantExpr::getNot(unwrap<Constant>(ConstantVal)));
358}
359
360LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
361 return wrap(ConstantExpr::getAdd(unwrap<Constant>(LHSConstant),
362 unwrap<Constant>(RHSConstant)));
363}
364
365LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
366 return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant),
367 unwrap<Constant>(RHSConstant)));
368}
369
370LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
371 return wrap(ConstantExpr::getMul(unwrap<Constant>(LHSConstant),
372 unwrap<Constant>(RHSConstant)));
373}
374
375LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
376 return wrap(ConstantExpr::getUDiv(unwrap<Constant>(LHSConstant),
377 unwrap<Constant>(RHSConstant)));
378}
379
380LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
381 return wrap(ConstantExpr::getSDiv(unwrap<Constant>(LHSConstant),
382 unwrap<Constant>(RHSConstant)));
383}
384
385LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
386 return wrap(ConstantExpr::getFDiv(unwrap<Constant>(LHSConstant),
387 unwrap<Constant>(RHSConstant)));
388}
389
390LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
391 return wrap(ConstantExpr::getURem(unwrap<Constant>(LHSConstant),
392 unwrap<Constant>(RHSConstant)));
393}
394
395LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
396 return wrap(ConstantExpr::getSRem(unwrap<Constant>(LHSConstant),
397 unwrap<Constant>(RHSConstant)));
398}
399
400LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
401 return wrap(ConstantExpr::getFRem(unwrap<Constant>(LHSConstant),
402 unwrap<Constant>(RHSConstant)));
403}
404
405LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
406 return wrap(ConstantExpr::getAnd(unwrap<Constant>(LHSConstant),
407 unwrap<Constant>(RHSConstant)));
408}
409
410LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
411 return wrap(ConstantExpr::getOr(unwrap<Constant>(LHSConstant),
412 unwrap<Constant>(RHSConstant)));
413}
414
415LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
416 return wrap(ConstantExpr::getXor(unwrap<Constant>(LHSConstant),
417 unwrap<Constant>(RHSConstant)));
418}
419
420LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
421 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
422 return wrap(ConstantExpr::getICmp(Predicate,
423 unwrap<Constant>(LHSConstant),
424 unwrap<Constant>(RHSConstant)));
425}
426
427LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
428 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
429 return wrap(ConstantExpr::getFCmp(Predicate,
430 unwrap<Constant>(LHSConstant),
431 unwrap<Constant>(RHSConstant)));
432}
433
434LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
435 return wrap(ConstantExpr::getShl(unwrap<Constant>(LHSConstant),
436 unwrap<Constant>(RHSConstant)));
437}
438
439LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
440 return wrap(ConstantExpr::getLShr(unwrap<Constant>(LHSConstant),
441 unwrap<Constant>(RHSConstant)));
442}
443
444LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
445 return wrap(ConstantExpr::getAShr(unwrap<Constant>(LHSConstant),
446 unwrap<Constant>(RHSConstant)));
447}
448
449LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
450 LLVMValueRef *ConstantIndices, unsigned NumIndices) {
451 return wrap(ConstantExpr::getGetElementPtr(unwrap<Constant>(ConstantVal),
452 unwrap<Constant>(ConstantIndices,
453 NumIndices),
454 NumIndices));
455}
456
457LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
458 return wrap(ConstantExpr::getTrunc(unwrap<Constant>(ConstantVal),
459 unwrap(ToType)));
460}
461
462LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
463 return wrap(ConstantExpr::getSExt(unwrap<Constant>(ConstantVal),
464 unwrap(ToType)));
465}
466
467LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
468 return wrap(ConstantExpr::getZExt(unwrap<Constant>(ConstantVal),
469 unwrap(ToType)));
470}
471
472LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
473 return wrap(ConstantExpr::getFPTrunc(unwrap<Constant>(ConstantVal),
474 unwrap(ToType)));
475}
476
477LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
478 return wrap(ConstantExpr::getFPExtend(unwrap<Constant>(ConstantVal),
479 unwrap(ToType)));
480}
481
482LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
483 return wrap(ConstantExpr::getUIToFP(unwrap<Constant>(ConstantVal),
484 unwrap(ToType)));
485}
486
487LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
488 return wrap(ConstantExpr::getSIToFP(unwrap<Constant>(ConstantVal),
489 unwrap(ToType)));
490}
491
492LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
493 return wrap(ConstantExpr::getFPToUI(unwrap<Constant>(ConstantVal),
494 unwrap(ToType)));
495}
496
497LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
498 return wrap(ConstantExpr::getFPToSI(unwrap<Constant>(ConstantVal),
499 unwrap(ToType)));
500}
501
502LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
503 return wrap(ConstantExpr::getPtrToInt(unwrap<Constant>(ConstantVal),
504 unwrap(ToType)));
505}
506
507LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
508 return wrap(ConstantExpr::getIntToPtr(unwrap<Constant>(ConstantVal),
509 unwrap(ToType)));
510}
511
512LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
513 return wrap(ConstantExpr::getBitCast(unwrap<Constant>(ConstantVal),
514 unwrap(ToType)));
515}
516
517LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
518 LLVMValueRef ConstantIfTrue,
519 LLVMValueRef ConstantIfFalse) {
520 return wrap(ConstantExpr::getSelect(unwrap<Constant>(ConstantCondition),
521 unwrap<Constant>(ConstantIfTrue),
522 unwrap<Constant>(ConstantIfFalse)));
523}
524
525LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
526 LLVMValueRef IndexConstant) {
527 return wrap(ConstantExpr::getExtractElement(unwrap<Constant>(VectorConstant),
528 unwrap<Constant>(IndexConstant)));
529}
530
531LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
532 LLVMValueRef ElementValueConstant,
533 LLVMValueRef IndexConstant) {
534 return wrap(ConstantExpr::getInsertElement(unwrap<Constant>(VectorConstant),
535 unwrap<Constant>(ElementValueConstant),
536 unwrap<Constant>(IndexConstant)));
537}
538
539LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
540 LLVMValueRef VectorBConstant,
541 LLVMValueRef MaskConstant) {
542 return wrap(ConstantExpr::getShuffleVector(unwrap<Constant>(VectorAConstant),
543 unwrap<Constant>(VectorBConstant),
544 unwrap<Constant>(MaskConstant)));
545}
546
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000547/*--.. Operations on global variables, functions, and aliases (globals) ....--*/
548
549int LLVMIsDeclaration(LLVMValueRef Global) {
550 return unwrap<GlobalValue>(Global)->isDeclaration();
551}
552
553LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) {
554 return static_cast<LLVMLinkage>(unwrap<GlobalValue>(Global)->getLinkage());
555}
556
557void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) {
558 unwrap<GlobalValue>(Global)
559 ->setLinkage(static_cast<GlobalValue::LinkageTypes>(Linkage));
560}
561
562const char *LLVMGetSection(LLVMValueRef Global) {
563 return unwrap<GlobalValue>(Global)->getSection().c_str();
564}
565
566void LLVMSetSection(LLVMValueRef Global, const char *Section) {
567 unwrap<GlobalValue>(Global)->setSection(Section);
568}
569
570LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) {
571 return static_cast<LLVMVisibility>(
572 unwrap<GlobalValue>(Global)->getVisibility());
573}
574
575void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) {
576 unwrap<GlobalValue>(Global)
577 ->setVisibility(static_cast<GlobalValue::VisibilityTypes>(Viz));
578}
579
580unsigned LLVMGetAlignment(LLVMValueRef Global) {
581 return unwrap<GlobalValue>(Global)->getAlignment();
582}
583
584void LLVMSetAlignment(LLVMValueRef Global, unsigned Bytes) {
585 unwrap<GlobalValue>(Global)->setAlignment(Bytes);
586}
587
588/*--.. Operations on global variables ......................................--*/
589
590LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) {
591 return wrap(new GlobalVariable(unwrap(Ty), false,
Gordon Henriksendc2c07a2007-12-30 17:46:33 +0000592 GlobalValue::ExternalLinkage, 0, Name,
593 unwrap(M)));
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000594}
595
Gordon Henriksen6d6203d2007-10-08 03:45:09 +0000596LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) {
597 return wrap(unwrap(M)->getNamedGlobal(Name));
598}
599
Gordon Henriksen8b94a142007-09-18 03:18:57 +0000600void LLVMDeleteGlobal(LLVMValueRef GlobalVar) {
601 unwrap<GlobalVariable>(GlobalVar)->eraseFromParent();
602}
603
604int LLVMHasInitializer(LLVMValueRef GlobalVar) {
605 return unwrap<GlobalVariable>(GlobalVar)->hasInitializer();
606}
607
608LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar) {
609 return wrap(unwrap<GlobalVariable>(GlobalVar)->getInitializer());
610}
611
612void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal) {
613 unwrap<GlobalVariable>(GlobalVar)
614 ->setInitializer(unwrap<Constant>(ConstantVal));
615}
616
617int LLVMIsThreadLocal(LLVMValueRef GlobalVar) {
618 return unwrap<GlobalVariable>(GlobalVar)->isThreadLocal();
619}
620
621void LLVMSetThreadLocal(LLVMValueRef GlobalVar, int IsThreadLocal) {
622 unwrap<GlobalVariable>(GlobalVar)->setThreadLocal(IsThreadLocal != 0);
623}
624
Gordon Henriksenc84c16b2007-10-07 17:31:42 +0000625int LLVMIsGlobalConstant(LLVMValueRef GlobalVar) {
Gordon Henriksenc84c16b2007-10-07 17:31:42 +0000626 return unwrap<GlobalVariable>(GlobalVar)->isConstant();
627}
628
629void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, int IsConstant) {
630 unwrap<GlobalVariable>(GlobalVar)->setConstant(IsConstant != 0);
631}
632
Gordon Henriksen46abf912007-09-26 20:56:12 +0000633/*--.. Operations on functions .............................................--*/
634
635LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
636 LLVMTypeRef FunctionTy) {
637 return wrap(new Function(unwrap<FunctionType>(FunctionTy),
638 GlobalValue::ExternalLinkage, Name, unwrap(M)));
639}
640
Gordon Henriksen6d6203d2007-10-08 03:45:09 +0000641LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) {
642 return wrap(unwrap(M)->getFunction(Name));
643}
644
Gordon Henriksen46abf912007-09-26 20:56:12 +0000645void LLVMDeleteFunction(LLVMValueRef Fn) {
646 unwrap<Function>(Fn)->eraseFromParent();
647}
648
649unsigned LLVMCountParams(LLVMValueRef FnRef) {
650 // This function is strictly redundant to
651 // LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
652 return unwrap<Function>(FnRef)->getArgumentList().size();
653}
654
655LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) {
656 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin();
657 while (index --> 0)
658 AI++;
659 return wrap(AI);
660}
661
662void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) {
663 Function *Fn = unwrap<Function>(FnRef);
664 for (Function::arg_iterator I = Fn->arg_begin(),
665 E = Fn->arg_end(); I != E; I++)
666 *ParamRefs++ = wrap(I);
667}
668
669unsigned LLVMGetIntrinsicID(LLVMValueRef Fn) {
670 if (Function *F = dyn_cast<Function>(unwrap(Fn)))
671 return F->getIntrinsicID();
672 return 0;
673}
674
675unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn) {
676 return unwrap<Function>(Fn)->getCallingConv();
677}
678
679void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC) {
680 return unwrap<Function>(Fn)->setCallingConv(CC);
681}
682
Gordon Henriksen80a75bf2007-12-10 03:18:06 +0000683const char *LLVMGetCollector(LLVMValueRef Fn) {
684 Function *F = unwrap<Function>(Fn);
685 return F->hasCollector()? F->getCollector() : 0;
686}
687
688void LLVMSetCollector(LLVMValueRef Fn, const char *Coll) {
689 Function *F = unwrap<Function>(Fn);
690 if (Coll)
691 F->setCollector(Coll);
692 else
693 F->clearCollector();
694}
695
Gordon Henriksen46abf912007-09-26 20:56:12 +0000696/*--.. Operations on basic blocks ..........................................--*/
697
698LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef Bb) {
699 return wrap(static_cast<Value*>(unwrap(Bb)));
700}
701
702int LLVMValueIsBasicBlock(LLVMValueRef Val) {
703 return isa<BasicBlock>(unwrap(Val));
704}
705
706LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val) {
707 return wrap(unwrap<BasicBlock>(Val));
708}
709
710unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) {
711 return unwrap<Function>(FnRef)->getBasicBlockList().size();
712}
713
714void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){
715 Function *Fn = unwrap<Function>(FnRef);
716 for (Function::iterator I = Fn->begin(), E = Fn->end(); I != E; I++)
717 *BasicBlocksRefs++ = wrap(I);
718}
719
720LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn) {
721 return wrap(&unwrap<Function>(Fn)->getEntryBlock());
722}
723
724LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef FnRef, const char *Name) {
725 return wrap(new BasicBlock(Name, unwrap<Function>(FnRef)));
726}
727
728LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef InsertBeforeBBRef,
729 const char *Name) {
730 BasicBlock *InsertBeforeBB = unwrap(InsertBeforeBBRef);
731 return wrap(new BasicBlock(Name, InsertBeforeBB->getParent(),
732 InsertBeforeBB));
733}
734
735void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef) {
736 unwrap(BBRef)->eraseFromParent();
737}
738
739/*--.. Call and invoke instructions ........................................--*/
740
741unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) {
742 Value *V = unwrap(Instr);
743 if (CallInst *CI = dyn_cast<CallInst>(V))
744 return CI->getCallingConv();
745 else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
746 return II->getCallingConv();
747 assert(0 && "LLVMGetInstructionCallConv applies only to call and invoke!");
748 return 0;
749}
750
751void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) {
752 Value *V = unwrap(Instr);
753 if (CallInst *CI = dyn_cast<CallInst>(V))
754 return CI->setCallingConv(CC);
755 else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
756 return II->setCallingConv(CC);
757 assert(0 && "LLVMSetInstructionCallConv applies only to call and invoke!");
758}
759
Gordon Henriksen2618a6c2007-10-08 18:14:39 +0000760/*--.. Operations on phi nodes .............................................--*/
761
762void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
763 LLVMBasicBlockRef *IncomingBlocks, unsigned Count) {
764 PHINode *PhiVal = unwrap<PHINode>(PhiNode);
765 for (unsigned I = 0; I != Count; ++I)
766 PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I]));
767}
768
769unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
770 return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
771}
772
773LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
774 return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
775}
776
777LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
778 return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));
779}
780
Gordon Henriksen46abf912007-09-26 20:56:12 +0000781
782/*===-- Instruction builders ----------------------------------------------===*/
783
784LLVMBuilderRef LLVMCreateBuilder() {
Gordon Henriksen1d2e49c2007-12-27 18:25:59 +0000785 return wrap(new LLVMFoldingBuilder());
Gordon Henriksen46abf912007-09-26 20:56:12 +0000786}
787
788void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) {
789 Instruction *I = unwrap<Instruction>(Instr);
790 unwrap(Builder)->SetInsertPoint(I->getParent(), I);
791}
792
793void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block) {
794 BasicBlock *BB = unwrap(Block);
795 unwrap(Builder)->SetInsertPoint(BB);
796}
797
798void LLVMDisposeBuilder(LLVMBuilderRef Builder) {
799 delete unwrap(Builder);
800}
801
802/*--.. Instruction builders ................................................--*/
803
804LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef B) {
805 return wrap(unwrap(B)->CreateRetVoid());
806}
807
808LLVMValueRef LLVMBuildRet(LLVMBuilderRef B, LLVMValueRef V) {
809 return wrap(unwrap(B)->CreateRet(unwrap(V)));
810}
811
812LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) {
813 return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
814}
815
816LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If,
817 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
818 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
819}
820
821LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V,
822 LLVMBasicBlockRef Else, unsigned NumCases) {
823 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
824}
825
826LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn,
827 LLVMValueRef *Args, unsigned NumArgs,
828 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
829 const char *Name) {
830 return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
831 unwrap(Args), unwrap(Args) + NumArgs,
832 Name));
833}
834
835LLVMValueRef LLVMBuildUnwind(LLVMBuilderRef B) {
836 return wrap(unwrap(B)->CreateUnwind());
837}
838
839LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef B) {
840 return wrap(unwrap(B)->CreateUnreachable());
841}
842
Gordon Henriksenab477cc2008-01-01 05:50:53 +0000843void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
844 LLVMBasicBlockRef Dest) {
845 unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
846}
847
Gordon Henriksen46abf912007-09-26 20:56:12 +0000848/*--.. Arithmetic ..........................................................--*/
849
850LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
851 const char *Name) {
852 return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
853}
854
855LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
856 const char *Name) {
857 return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwrap(RHS), Name));
858}
859
860LLVMValueRef LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
861 const char *Name) {
862 return wrap(unwrap(B)->CreateMul(unwrap(LHS), unwrap(RHS), Name));
863}
864
865LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
866 const char *Name) {
867 return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
868}
869
870LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
871 const char *Name) {
872 return wrap(unwrap(B)->CreateSDiv(unwrap(LHS), unwrap(RHS), Name));
873}
874
875LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
876 const char *Name) {
877 return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
878}
879
880LLVMValueRef LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
881 const char *Name) {
882 return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
883}
884
885LLVMValueRef LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
886 const char *Name) {
887 return wrap(unwrap(B)->CreateSRem(unwrap(LHS), unwrap(RHS), Name));
888}
889
890LLVMValueRef LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
891 const char *Name) {
892 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name));
893}
894
895LLVMValueRef LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
896 const char *Name) {
897 return wrap(unwrap(B)->CreateShl(unwrap(LHS), unwrap(RHS), Name));
898}
899
900LLVMValueRef LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
901 const char *Name) {
902 return wrap(unwrap(B)->CreateLShr(unwrap(LHS), unwrap(RHS), Name));
903}
904
905LLVMValueRef LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
906 const char *Name) {
907 return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
908}
909
910LLVMValueRef LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
911 const char *Name) {
912 return wrap(unwrap(B)->CreateAnd(unwrap(LHS), unwrap(RHS), Name));
913}
914
915LLVMValueRef LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
916 const char *Name) {
917 return wrap(unwrap(B)->CreateOr(unwrap(LHS), unwrap(RHS), Name));
918}
919
920LLVMValueRef LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
921 const char *Name) {
922 return wrap(unwrap(B)->CreateXor(unwrap(LHS), unwrap(RHS), Name));
923}
924
925LLVMValueRef LLVMBuildNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
926 return wrap(unwrap(B)->CreateNeg(unwrap(V), Name));
927}
928
929LLVMValueRef LLVMBuildNot(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
930 return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
931}
932
933/*--.. Memory ..............................................................--*/
934
935LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
936 const char *Name) {
937 return wrap(unwrap(B)->CreateMalloc(unwrap(Ty), 0, Name));
938}
939
940LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
941 LLVMValueRef Val, const char *Name) {
942 return wrap(unwrap(B)->CreateMalloc(unwrap(Ty), unwrap(Val), Name));
943}
944
945LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
946 const char *Name) {
947 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), 0, Name));
948}
949
950LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
951 LLVMValueRef Val, const char *Name) {
952 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name));
953}
954
955LLVMValueRef LLVMBuildFree(LLVMBuilderRef B, LLVMValueRef PointerVal) {
956 return wrap(unwrap(B)->CreateFree(unwrap(PointerVal)));
957}
958
959
960LLVMValueRef LLVMBuildLoad(LLVMBuilderRef B, LLVMValueRef PointerVal,
961 const char *Name) {
962 return wrap(unwrap(B)->CreateLoad(unwrap(PointerVal), Name));
963}
964
965LLVMValueRef LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val,
966 LLVMValueRef PointerVal) {
967 return wrap(unwrap(B)->CreateStore(unwrap(Val), unwrap(PointerVal)));
968}
969
970LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
971 LLVMValueRef *Indices, unsigned NumIndices,
972 const char *Name) {
973 return wrap(unwrap(B)->CreateGEP(unwrap(Pointer), unwrap(Indices),
974 unwrap(Indices) + NumIndices, Name));
975}
976
977/*--.. Casts ...............................................................--*/
978
979LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val,
980 LLVMTypeRef DestTy, const char *Name) {
981 return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
982}
983
984LLVMValueRef LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val,
985 LLVMTypeRef DestTy, const char *Name) {
986 return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
987}
988
989LLVMValueRef LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val,
990 LLVMTypeRef DestTy, const char *Name) {
991 return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
992}
993
994LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val,
995 LLVMTypeRef DestTy, const char *Name) {
996 return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
997}
998
999LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val,
1000 LLVMTypeRef DestTy, const char *Name) {
1001 return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
1002}
1003
1004LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val,
1005 LLVMTypeRef DestTy, const char *Name) {
1006 return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
1007}
1008
1009LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val,
1010 LLVMTypeRef DestTy, const char *Name) {
1011 return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
1012}
1013
1014LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val,
1015 LLVMTypeRef DestTy, const char *Name) {
1016 return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
1017}
1018
1019LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val,
1020 LLVMTypeRef DestTy, const char *Name) {
1021 return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
1022}
1023
1024LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val,
1025 LLVMTypeRef DestTy, const char *Name) {
1026 return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
1027}
1028
1029LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val,
1030 LLVMTypeRef DestTy, const char *Name) {
1031 return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
1032}
1033
1034LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val,
1035 LLVMTypeRef DestTy, const char *Name) {
1036 return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
1037}
1038
1039/*--.. Comparisons .........................................................--*/
1040
1041LLVMValueRef LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op,
1042 LLVMValueRef LHS, LLVMValueRef RHS,
1043 const char *Name) {
1044 return wrap(unwrap(B)->CreateICmp(static_cast<ICmpInst::Predicate>(Op),
1045 unwrap(LHS), unwrap(RHS), Name));
1046}
1047
1048LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op,
1049 LLVMValueRef LHS, LLVMValueRef RHS,
1050 const char *Name) {
1051 return wrap(unwrap(B)->CreateFCmp(static_cast<FCmpInst::Predicate>(Op),
1052 unwrap(LHS), unwrap(RHS), Name));
1053}
1054
1055/*--.. Miscellaneous instructions ..........................................--*/
1056
1057LLVMValueRef LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) {
1058 return wrap(unwrap(B)->CreatePHI(unwrap(Ty), Name));
1059}
1060
1061LLVMValueRef LLVMBuildCall(LLVMBuilderRef B, LLVMValueRef Fn,
1062 LLVMValueRef *Args, unsigned NumArgs,
1063 const char *Name) {
1064 return wrap(unwrap(B)->CreateCall(unwrap(Fn), unwrap(Args),
1065 unwrap(Args) + NumArgs, Name));
1066}
1067
1068LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If,
1069 LLVMValueRef Then, LLVMValueRef Else,
1070 const char *Name) {
1071 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
1072 Name));
1073}
1074
1075LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
1076 LLVMTypeRef Ty, const char *Name) {
1077 return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
1078}
1079
1080LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef B, LLVMValueRef VecVal,
1081 LLVMValueRef Index, const char *Name) {
1082 return wrap(unwrap(B)->CreateExtractElement(unwrap(VecVal), unwrap(Index),
1083 Name));
1084}
1085
1086LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef B, LLVMValueRef VecVal,
1087 LLVMValueRef EltVal, LLVMValueRef Index,
1088 const char *Name) {
1089 return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal),
1090 unwrap(Index), Name));
1091}
1092
1093LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef B, LLVMValueRef V1,
1094 LLVMValueRef V2, LLVMValueRef Mask,
1095 const char *Name) {
1096 return wrap(unwrap(B)->CreateShuffleVector(unwrap(V1), unwrap(V2),
1097 unwrap(Mask), Name));
1098}
Gordon Henriksen1ae61352007-12-12 01:04:30 +00001099
1100
1101/*===-- Module providers --------------------------------------------------===*/
1102
1103LLVMModuleProviderRef
1104LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) {
1105 return wrap(new ExistingModuleProvider(unwrap(M)));
1106}
1107
1108void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) {
1109 delete unwrap(MP);
1110}
1111
Gordon Henriksenda1435f2007-12-19 22:30:40 +00001112
1113/*===-- Memory buffers ----------------------------------------------------===*/
1114
1115int LLVMCreateMemoryBufferWithContentsOfFile(const char *Path,
1116 LLVMMemoryBufferRef *OutMemBuf,
1117 char **OutMessage) {
1118 std::string Error;
1119 if (MemoryBuffer *MB = MemoryBuffer::getFile(Path, strlen(Path), &Error)) {
1120 *OutMemBuf = wrap(MB);
1121 return 0;
1122 }
1123
1124 *OutMessage = strdup(Error.c_str());
1125 return 1;
1126}
1127
1128int LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
1129 char **OutMessage) {
1130 if (MemoryBuffer *MB = MemoryBuffer::getSTDIN()) {
1131 *OutMemBuf = wrap(MB);
1132 return 0;
1133 }
1134
1135 *OutMessage = strdup("stdin is empty.");
1136 return 1;
1137}
1138
1139void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf) {
1140 delete unwrap(MemBuf);
1141}