@@ -56,7 +56,7 @@ pub use self::DiagnosticSeverity::*;
56
56
pub use self :: Linkage :: * ;
57
57
pub use self :: DLLStorageClassTypes :: * ;
58
58
59
- use std:: ffi:: CString ;
59
+ use std:: ffi:: { CString , CStr } ;
60
60
use std:: cell:: RefCell ;
61
61
use std:: slice;
62
62
use libc:: { c_uint, c_ushort, uint64_t, c_int, size_t, c_char} ;
@@ -544,6 +544,9 @@ pub type SMDiagnosticRef = *mut SMDiagnostic_opaque;
544
544
#[ allow( missing_copy_implementations) ]
545
545
pub enum RustArchiveMember_opaque { }
546
546
pub type RustArchiveMemberRef = * mut RustArchiveMember_opaque ;
547
+ #[ allow( missing_copy_implementations) ]
548
+ pub enum OperandBundleDef_opaque { }
549
+ pub type OperandBundleDefRef = * mut OperandBundleDef_opaque ;
547
550
548
551
pub type DiagnosticHandler = unsafe extern "C" fn ( DiagnosticInfoRef , * mut c_void ) ;
549
552
pub type InlineAsmDiagHandler = unsafe extern "C" fn ( SMDiagnosticRef , * const c_void , c_uint ) ;
@@ -1149,14 +1152,15 @@ extern {
1149
1152
Addr : ValueRef ,
1150
1153
NumDests : c_uint )
1151
1154
-> ValueRef ;
1152
- pub fn LLVMBuildInvoke ( B : BuilderRef ,
1153
- Fn : ValueRef ,
1154
- Args : * const ValueRef ,
1155
- NumArgs : c_uint ,
1156
- Then : BasicBlockRef ,
1157
- Catch : BasicBlockRef ,
1158
- Name : * const c_char )
1159
- -> ValueRef ;
1155
+ pub fn LLVMRustBuildInvoke ( B : BuilderRef ,
1156
+ Fn : ValueRef ,
1157
+ Args : * const ValueRef ,
1158
+ NumArgs : c_uint ,
1159
+ Then : BasicBlockRef ,
1160
+ Catch : BasicBlockRef ,
1161
+ Bundle : OperandBundleDefRef ,
1162
+ Name : * const c_char )
1163
+ -> ValueRef ;
1160
1164
pub fn LLVMRustBuildLandingPad ( B : BuilderRef ,
1161
1165
Ty : TypeRef ,
1162
1166
PersFn : ValueRef ,
@@ -1167,6 +1171,31 @@ extern {
1167
1171
pub fn LLVMBuildResume ( B : BuilderRef , Exn : ValueRef ) -> ValueRef ;
1168
1172
pub fn LLVMBuildUnreachable ( B : BuilderRef ) -> ValueRef ;
1169
1173
1174
+ pub fn LLVMRustBuildCleanupPad ( B : BuilderRef ,
1175
+ ParentPad : ValueRef ,
1176
+ ArgCnt : c_uint ,
1177
+ Args : * const ValueRef ,
1178
+ Name : * const c_char ) -> ValueRef ;
1179
+ pub fn LLVMRustBuildCleanupRet ( B : BuilderRef ,
1180
+ CleanupPad : ValueRef ,
1181
+ UnwindBB : BasicBlockRef ) -> ValueRef ;
1182
+ pub fn LLVMRustBuildCatchPad ( B : BuilderRef ,
1183
+ ParentPad : ValueRef ,
1184
+ ArgCnt : c_uint ,
1185
+ Args : * const ValueRef ,
1186
+ Name : * const c_char ) -> ValueRef ;
1187
+ pub fn LLVMRustBuildCatchRet ( B : BuilderRef ,
1188
+ Pad : ValueRef ,
1189
+ BB : BasicBlockRef ) -> ValueRef ;
1190
+ pub fn LLVMRustBuildCatchSwitch ( Builder : BuilderRef ,
1191
+ ParentPad : ValueRef ,
1192
+ BB : BasicBlockRef ,
1193
+ NumHandlers : c_uint ,
1194
+ Name : * const c_char ) -> ValueRef ;
1195
+ pub fn LLVMRustAddHandler ( CatchSwitch : ValueRef ,
1196
+ Handler : BasicBlockRef ) ;
1197
+ pub fn LLVMRustSetPersonalityFn ( B : BuilderRef , Pers : ValueRef ) ;
1198
+
1170
1199
/* Add a case to the switch instruction */
1171
1200
pub fn LLVMAddCase ( Switch : ValueRef ,
1172
1201
OnVal : ValueRef ,
@@ -1476,12 +1505,13 @@ extern {
1476
1505
/* Miscellaneous instructions */
1477
1506
pub fn LLVMBuildPhi ( B : BuilderRef , Ty : TypeRef , Name : * const c_char )
1478
1507
-> ValueRef ;
1479
- pub fn LLVMBuildCall ( B : BuilderRef ,
1480
- Fn : ValueRef ,
1481
- Args : * const ValueRef ,
1482
- NumArgs : c_uint ,
1483
- Name : * const c_char )
1484
- -> ValueRef ;
1508
+ pub fn LLVMRustBuildCall ( B : BuilderRef ,
1509
+ Fn : ValueRef ,
1510
+ Args : * const ValueRef ,
1511
+ NumArgs : c_uint ,
1512
+ Bundle : OperandBundleDefRef ,
1513
+ Name : * const c_char )
1514
+ -> ValueRef ;
1485
1515
pub fn LLVMBuildSelect ( B : BuilderRef ,
1486
1516
If : ValueRef ,
1487
1517
Then : ValueRef ,
@@ -2126,6 +2156,12 @@ extern {
2126
2156
pub fn LLVMRustSetDataLayoutFromTargetMachine ( M : ModuleRef ,
2127
2157
TM : TargetMachineRef ) ;
2128
2158
pub fn LLVMRustGetModuleDataLayout ( M : ModuleRef ) -> TargetDataRef ;
2159
+
2160
+ pub fn LLVMRustBuildOperandBundleDef ( Name : * const c_char ,
2161
+ Inputs : * const ValueRef ,
2162
+ NumInputs : c_uint )
2163
+ -> OperandBundleDefRef ;
2164
+ pub fn LLVMRustFreeOperandBundleDef ( Bundle : OperandBundleDefRef ) ;
2129
2165
}
2130
2166
2131
2167
#[ cfg( have_component_x86) ]
@@ -2404,6 +2440,48 @@ pub fn initialize_available_targets() {
2404
2440
init_pnacl ( ) ;
2405
2441
}
2406
2442
2443
+ pub fn last_error ( ) -> Option < String > {
2444
+ unsafe {
2445
+ let cstr = LLVMRustGetLastError ( ) ;
2446
+ if cstr. is_null ( ) {
2447
+ None
2448
+ } else {
2449
+ let err = CStr :: from_ptr ( cstr) . to_bytes ( ) ;
2450
+ let err = String :: from_utf8_lossy ( err) . to_string ( ) ;
2451
+ libc:: free ( cstr as * mut _ ) ;
2452
+ Some ( err)
2453
+ }
2454
+ }
2455
+ }
2456
+
2457
+ pub struct OperandBundleDef {
2458
+ inner : OperandBundleDefRef ,
2459
+ }
2460
+
2461
+ impl OperandBundleDef {
2462
+ pub fn new ( name : & str , vals : & [ ValueRef ] ) -> OperandBundleDef {
2463
+ let name = CString :: new ( name) . unwrap ( ) ;
2464
+ let def = unsafe {
2465
+ LLVMRustBuildOperandBundleDef ( name. as_ptr ( ) ,
2466
+ vals. as_ptr ( ) ,
2467
+ vals. len ( ) as c_uint )
2468
+ } ;
2469
+ OperandBundleDef { inner : def }
2470
+ }
2471
+
2472
+ pub fn raw ( & self ) -> OperandBundleDefRef {
2473
+ self . inner
2474
+ }
2475
+ }
2476
+
2477
+ impl Drop for OperandBundleDef {
2478
+ fn drop ( & mut self ) {
2479
+ unsafe {
2480
+ LLVMRustFreeOperandBundleDef ( self . inner ) ;
2481
+ }
2482
+ }
2483
+ }
2484
+
2407
2485
// The module containing the native LLVM dependencies, generated by the build system
2408
2486
// Note that this must come after the rustllvm extern declaration so that
2409
2487
// parts of LLVM that rustllvm depends on aren't thrown away by the linker.
0 commit comments