@@ -205,6 +205,8 @@ pub enum BasicBlock_opaque {}
205
205
pub type BasicBlockRef = * BasicBlock_opaque ;
206
206
pub enum Builder_opaque { }
207
207
pub type BuilderRef = * Builder_opaque ;
208
+ pub enum ExecutionEngine_opaque { }
209
+ pub type ExecutionEngineRef = * ExecutionEngine_opaque ;
208
210
pub enum MemoryBuffer_opaque { }
209
211
pub type MemoryBufferRef = * MemoryBuffer_opaque ;
210
212
pub enum PassManager_opaque { }
@@ -223,7 +225,7 @@ pub enum Pass_opaque {}
223
225
pub type PassRef = * Pass_opaque ;
224
226
225
227
pub mod llvm {
226
- use super :: { AtomicBinOp , AtomicOrdering , BasicBlockRef } ;
228
+ use super :: { AtomicBinOp , AtomicOrdering , BasicBlockRef , ExecutionEngineRef } ;
227
229
use super :: { Bool , BuilderRef , ContextRef , MemoryBufferRef , ModuleRef } ;
228
230
use super :: { ObjectFileRef , Opcode , PassManagerRef , PassManagerBuilderRef } ;
229
231
use super :: { SectionIteratorRef , TargetDataRef , TypeKind , TypeRef , UseRef } ;
@@ -239,23 +241,21 @@ pub mod llvm {
239
241
#[ fast_ffi]
240
242
pub unsafe fn LLVMContextCreate ( ) -> ContextRef ;
241
243
#[ fast_ffi]
242
- pub unsafe fn LLVMGetGlobalContext ( ) -> ContextRef ;
243
- #[ fast_ffi]
244
244
pub unsafe fn LLVMContextDispose ( C : ContextRef ) ;
245
245
#[ fast_ffi]
246
246
pub unsafe fn LLVMGetMDKindIDInContext ( C : ContextRef ,
247
247
Name : * c_char ,
248
248
SLen : c_uint )
249
249
-> c_uint ;
250
- #[ fast_ffi]
251
- pub unsafe fn LLVMGetMDKindID ( Name : * c_char , SLen : c_uint ) -> c_uint ;
252
250
253
251
/* Create and destroy modules. */
254
252
#[ fast_ffi]
255
253
pub unsafe fn LLVMModuleCreateWithNameInContext ( ModuleID : * c_char ,
256
254
C : ContextRef )
257
255
-> ModuleRef ;
258
256
#[ fast_ffi]
257
+ pub unsafe fn LLVMGetModuleContext ( M : ModuleRef ) -> ContextRef ;
258
+ #[ fast_ffi]
259
259
pub unsafe fn LLVMDisposeModule ( M : ModuleRef ) ;
260
260
261
261
/** Data layout. See Module::getDataLayout. */
@@ -300,18 +300,6 @@ pub mod llvm {
300
300
pub unsafe fn LLVMIntTypeInContext ( C : ContextRef ,
301
301
NumBits : c_uint ) -> TypeRef ;
302
302
303
- #[ fast_ffi]
304
- pub unsafe fn LLVMInt1Type ( ) -> TypeRef ;
305
- #[ fast_ffi]
306
- pub unsafe fn LLVMInt8Type ( ) -> TypeRef ;
307
- #[ fast_ffi]
308
- pub unsafe fn LLVMInt16Type ( ) -> TypeRef ;
309
- #[ fast_ffi]
310
- pub unsafe fn LLVMInt32Type ( ) -> TypeRef ;
311
- #[ fast_ffi]
312
- pub unsafe fn LLVMInt64Type ( ) -> TypeRef ;
313
- #[ fast_ffi]
314
- pub unsafe fn LLVMIntType ( NumBits : c_uint ) -> TypeRef ;
315
303
#[ fast_ffi]
316
304
pub unsafe fn LLVMGetIntTypeWidth ( IntegerTy : TypeRef ) -> c_uint ;
317
305
@@ -327,17 +315,6 @@ pub mod llvm {
327
315
#[ fast_ffi]
328
316
pub unsafe fn LLVMPPCFP128TypeInContext ( C : ContextRef ) -> TypeRef ;
329
317
330
- #[ fast_ffi]
331
- pub unsafe fn LLVMFloatType ( ) -> TypeRef ;
332
- #[ fast_ffi]
333
- pub unsafe fn LLVMDoubleType ( ) -> TypeRef ;
334
- #[ fast_ffi]
335
- pub unsafe fn LLVMX86FP80Type ( ) -> TypeRef ;
336
- #[ fast_ffi]
337
- pub unsafe fn LLVMFP128Type ( ) -> TypeRef ;
338
- #[ fast_ffi]
339
- pub unsafe fn LLVMPPCFP128Type ( ) -> TypeRef ;
340
-
341
318
/* Operations on function types */
342
319
#[ fast_ffi]
343
320
pub unsafe fn LLVMFunctionType ( ReturnType : TypeRef ,
@@ -361,11 +338,6 @@ pub mod llvm {
361
338
ElementCount : c_uint ,
362
339
Packed : Bool ) -> TypeRef ;
363
340
#[ fast_ffi]
364
- pub unsafe fn LLVMStructType ( ElementTypes : * TypeRef ,
365
- ElementCount : c_uint ,
366
- Packed : Bool )
367
- -> TypeRef ;
368
- #[ fast_ffi]
369
341
pub unsafe fn LLVMCountStructElementTypes ( StructTy : TypeRef )
370
342
-> c_uint ;
371
343
#[ fast_ffi]
@@ -393,6 +365,10 @@ pub mod llvm {
393
365
pub unsafe fn LLVMGetPointerAddressSpace ( PointerTy : TypeRef )
394
366
-> c_uint ;
395
367
#[ fast_ffi]
368
+ pub unsafe fn LLVMGetPointerToGlobal ( EE : ExecutionEngineRef ,
369
+ V : ValueRef )
370
+ -> * ( ) ;
371
+ #[ fast_ffi]
396
372
pub unsafe fn LLVMGetVectorSize ( VectorTy : TypeRef ) -> c_uint ;
397
373
398
374
/* Operations on other types */
@@ -403,13 +379,6 @@ pub mod llvm {
403
379
#[ fast_ffi]
404
380
pub unsafe fn LLVMMetadataTypeInContext ( C : ContextRef ) -> TypeRef ;
405
381
406
- #[ fast_ffi]
407
- pub unsafe fn LLVMVoidType ( ) -> TypeRef ;
408
- #[ fast_ffi]
409
- pub unsafe fn LLVMLabelType ( ) -> TypeRef ;
410
- #[ fast_ffi]
411
- pub unsafe fn LLVMMetadataType ( ) -> TypeRef ;
412
-
413
382
/* Operations on all values */
414
383
#[ fast_ffi]
415
384
pub unsafe fn LLVMTypeOf ( Val : ValueRef ) -> TypeRef ;
@@ -482,15 +451,11 @@ pub mod llvm {
482
451
SLen : c_uint )
483
452
-> ValueRef ;
484
453
#[ fast_ffi]
485
- pub unsafe fn LLVMMDString ( Str : * c_char , SLen : c_uint ) -> ValueRef ;
486
- #[ fast_ffi]
487
454
pub unsafe fn LLVMMDNodeInContext ( C : ContextRef ,
488
455
Vals : * ValueRef ,
489
456
Count : c_uint )
490
457
-> ValueRef ;
491
458
#[ fast_ffi]
492
- pub unsafe fn LLVMMDNode ( Vals : * ValueRef , Count : c_uint ) -> ValueRef ;
493
- #[ fast_ffi]
494
459
pub unsafe fn LLVMAddNamedMetadataOperand ( M : ModuleRef , Str : * c_char ,
495
460
Val : ValueRef ) ;
496
461
@@ -544,20 +509,11 @@ pub mod llvm {
544
509
Packed : Bool ) -> ValueRef ;
545
510
546
511
#[ fast_ffi]
547
- pub unsafe fn LLVMConstString ( Str : * c_char ,
548
- Length : c_uint ,
549
- DontNullTerminate : Bool )
550
- -> ValueRef ;
551
- #[ fast_ffi]
552
512
pub unsafe fn LLVMConstArray ( ElementTy : TypeRef ,
553
513
ConstantVals : * ValueRef ,
554
514
Length : c_uint )
555
515
-> ValueRef ;
556
516
#[ fast_ffi]
557
- pub unsafe fn LLVMConstStruct ( ConstantVals : * ValueRef ,
558
- Count : c_uint ,
559
- Packed : Bool ) -> ValueRef ;
560
- #[ fast_ffi]
561
517
pub unsafe fn LLVMConstVector ( ScalarConstantVals : * ValueRef ,
562
518
Size : c_uint ) -> ValueRef ;
563
519
@@ -970,15 +926,6 @@ pub mod llvm {
970
926
BB : BasicBlockRef ,
971
927
Name : * c_char )
972
928
-> BasicBlockRef ;
973
-
974
- #[ fast_ffi]
975
- pub unsafe fn LLVMAppendBasicBlock ( Fn : ValueRef ,
976
- Name : * c_char )
977
- -> BasicBlockRef ;
978
- #[ fast_ffi]
979
- pub unsafe fn LLVMInsertBasicBlock ( InsertBeforeBB : BasicBlockRef ,
980
- Name : * c_char )
981
- -> BasicBlockRef ;
982
929
#[ fast_ffi]
983
930
pub unsafe fn LLVMDeleteBasicBlock ( BB : BasicBlockRef ) ;
984
931
@@ -1039,8 +986,6 @@ pub mod llvm {
1039
986
#[ fast_ffi]
1040
987
pub unsafe fn LLVMCreateBuilderInContext ( C : ContextRef ) -> BuilderRef ;
1041
988
#[ fast_ffi]
1042
- pub unsafe fn LLVMCreateBuilder ( ) -> BuilderRef ;
1043
- #[ fast_ffi]
1044
989
pub unsafe fn LLVMPositionBuilder ( Builder : BuilderRef ,
1045
990
Block : BasicBlockRef ,
1046
991
Instr : ValueRef ) ;
@@ -1064,6 +1009,8 @@ pub mod llvm {
1064
1009
Name : * c_char ) ;
1065
1010
#[ fast_ffi]
1066
1011
pub unsafe fn LLVMDisposeBuilder ( Builder : BuilderRef ) ;
1012
+ #[ fast_ffi]
1013
+ pub unsafe fn LLVMDisposeExecutionEngine ( EE : ExecutionEngineRef ) ;
1067
1014
1068
1015
/* Metadata */
1069
1016
#[ fast_ffi]
@@ -1880,11 +1827,11 @@ pub mod llvm {
1880
1827
1881
1828
/** Execute the JIT engine. */
1882
1829
#[ fast_ffi]
1883
- pub unsafe fn LLVMRustExecuteJIT ( MM : * ( ) ,
1830
+ pub unsafe fn LLVMRustBuildJIT ( MM : * ( ) ,
1884
1831
PM : PassManagerRef ,
1885
1832
M : ModuleRef ,
1886
1833
OptLevel : c_int ,
1887
- EnableSegmentedStacks : bool ) -> * ( ) ;
1834
+ EnableSegmentedStacks : bool ) -> ExecutionEngineRef ;
1888
1835
1889
1836
/** Parses the bitcode in the given memory buffer. */
1890
1837
#[ fast_ffi]
@@ -1893,7 +1840,8 @@ pub mod llvm {
1893
1840
1894
1841
/** Parses LLVM asm in the given file */
1895
1842
#[ fast_ffi]
1896
- pub unsafe fn LLVMRustParseAssemblyFile ( Filename : * c_char )
1843
+ pub unsafe fn LLVMRustParseAssemblyFile ( Filename : * c_char ,
1844
+ C : ContextRef )
1897
1845
-> ModuleRef ;
1898
1846
1899
1847
#[ fast_ffi]
@@ -1909,6 +1857,9 @@ pub mod llvm {
1909
1857
#[ fast_ffi]
1910
1858
pub unsafe fn LLVMRustPrintPassTimings ( ) ;
1911
1859
1860
+ #[ fast_ffi]
1861
+ pub unsafe fn LLVMRustStartMultithreading ( ) -> bool ;
1862
+
1912
1863
#[ fast_ffi]
1913
1864
pub unsafe fn LLVMStructCreateNamed ( C : ContextRef , Name : * c_char )
1914
1865
-> TypeRef ;
0 commit comments