@@ -652,7 +652,7 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
652
652
flags : MemFlags ,
653
653
) -> & ' ll Value {
654
654
debug ! ( "Store {:?} -> {:?} ({:?})" , val, ptr, flags) ;
655
- let ptr = self . check_store ( val , ptr ) ;
655
+ assert_eq ! ( self . cx . type_kind ( self . cx . val_ty ( ptr ) ) , TypeKind :: Pointer ) ;
656
656
unsafe {
657
657
let store = llvm:: LLVMBuildStore ( self . llbuilder , val, ptr) ;
658
658
let align =
@@ -682,7 +682,7 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
682
682
size : Size ,
683
683
) {
684
684
debug ! ( "Store {:?} -> {:?}" , val, ptr) ;
685
- let ptr = self . check_store ( val , ptr ) ;
685
+ assert_eq ! ( self . cx . type_kind ( self . cx . val_ty ( ptr ) ) , TypeKind :: Pointer ) ;
686
686
unsafe {
687
687
let store = llvm:: LLVMRustBuildAtomicStore (
688
688
self . llbuilder ,
@@ -873,8 +873,6 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
873
873
assert ! ( !flags. contains( MemFlags :: NONTEMPORAL ) , "non-temporal memcpy not supported" ) ;
874
874
let size = self . intcast ( size, self . type_isize ( ) , false ) ;
875
875
let is_volatile = flags. contains ( MemFlags :: VOLATILE ) ;
876
- let dst = self . pointercast ( dst, self . type_i8p ( ) ) ;
877
- let src = self . pointercast ( src, self . type_i8p ( ) ) ;
878
876
unsafe {
879
877
llvm:: LLVMRustBuildMemCpy (
880
878
self . llbuilder ,
@@ -900,8 +898,6 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
900
898
assert ! ( !flags. contains( MemFlags :: NONTEMPORAL ) , "non-temporal memmove not supported" ) ;
901
899
let size = self . intcast ( size, self . type_isize ( ) , false ) ;
902
900
let is_volatile = flags. contains ( MemFlags :: VOLATILE ) ;
903
- let dst = self . pointercast ( dst, self . type_i8p ( ) ) ;
904
- let src = self . pointercast ( src, self . type_i8p ( ) ) ;
905
901
unsafe {
906
902
llvm:: LLVMRustBuildMemMove (
907
903
self . llbuilder ,
@@ -924,7 +920,6 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
924
920
flags : MemFlags ,
925
921
) {
926
922
let is_volatile = flags. contains ( MemFlags :: VOLATILE ) ;
927
- let ptr = self . pointercast ( ptr, self . type_i8p ( ) ) ;
928
923
unsafe {
929
924
llvm:: LLVMRustBuildMemSet (
930
925
self . llbuilder ,
@@ -981,7 +976,7 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
981
976
}
982
977
983
978
fn cleanup_landing_pad ( & mut self , pers_fn : & ' ll Value ) -> ( & ' ll Value , & ' ll Value ) {
984
- let ty = self . type_struct ( & [ self . type_i8p ( ) , self . type_i32 ( ) ] , false ) ;
979
+ let ty = self . type_struct ( & [ self . type_ptr ( ) , self . type_i32 ( ) ] , false ) ;
985
980
let landing_pad = self . landing_pad ( ty, pers_fn, 0 ) ;
986
981
unsafe {
987
982
llvm:: LLVMSetCleanup ( landing_pad, llvm:: True ) ;
@@ -990,14 +985,14 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
990
985
}
991
986
992
987
fn filter_landing_pad ( & mut self , pers_fn : & ' ll Value ) -> ( & ' ll Value , & ' ll Value ) {
993
- let ty = self . type_struct ( & [ self . type_i8p ( ) , self . type_i32 ( ) ] , false ) ;
988
+ let ty = self . type_struct ( & [ self . type_ptr ( ) , self . type_i32 ( ) ] , false ) ;
994
989
let landing_pad = self . landing_pad ( ty, pers_fn, 1 ) ;
995
- self . add_clause ( landing_pad, self . const_array ( self . type_i8p ( ) , & [ ] ) ) ;
990
+ self . add_clause ( landing_pad, self . const_array ( self . type_ptr ( ) , & [ ] ) ) ;
996
991
( self . extract_value ( landing_pad, 0 ) , self . extract_value ( landing_pad, 1 ) )
997
992
}
998
993
999
994
fn resume ( & mut self , exn0 : & ' ll Value , exn1 : & ' ll Value ) {
1000
- let ty = self . type_struct ( & [ self . type_i8p ( ) , self . type_i32 ( ) ] , false ) ;
995
+ let ty = self . type_struct ( & [ self . type_ptr ( ) , self . type_i32 ( ) ] , false ) ;
1001
996
let mut exn = self . const_poison ( ty) ;
1002
997
exn = self . insert_value ( exn, exn0, 0 ) ;
1003
998
exn = self . insert_value ( exn, exn1, 1 ) ;
@@ -1161,7 +1156,7 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
1161
1156
1162
1157
let llfn = unsafe { llvm:: LLVMRustGetInstrProfIncrementIntrinsic ( self . cx ( ) . llmod ) } ;
1163
1158
let llty = self . cx . type_func (
1164
- & [ self . cx . type_i8p ( ) , self . cx . type_i64 ( ) , self . cx . type_i32 ( ) , self . cx . type_i32 ( ) ] ,
1159
+ & [ self . cx . type_ptr ( ) , self . cx . type_i64 ( ) , self . cx . type_i32 ( ) , self . cx . type_i32 ( ) ] ,
1165
1160
self . cx . type_void ( ) ,
1166
1161
) ;
1167
1162
let args = & [ fn_name, hash, num_counters, index] ;
@@ -1387,25 +1382,6 @@ impl<'a, 'll, 'tcx> Builder<'a, 'll, 'tcx> {
1387
1382
ret. expect ( "LLVM does not have support for catchret" )
1388
1383
}
1389
1384
1390
- fn check_store ( & mut self , val : & ' ll Value , ptr : & ' ll Value ) -> & ' ll Value {
1391
- let dest_ptr_ty = self . cx . val_ty ( ptr) ;
1392
- let stored_ty = self . cx . val_ty ( val) ;
1393
- let stored_ptr_ty = self . cx . type_ptr_to ( stored_ty) ;
1394
-
1395
- assert_eq ! ( self . cx. type_kind( dest_ptr_ty) , TypeKind :: Pointer ) ;
1396
-
1397
- if dest_ptr_ty == stored_ptr_ty {
1398
- ptr
1399
- } else {
1400
- debug ! (
1401
- "type mismatch in store. \
1402
- Expected {:?}, got {:?}; inserting bitcast",
1403
- dest_ptr_ty, stored_ptr_ty
1404
- ) ;
1405
- self . bitcast ( ptr, stored_ptr_ty)
1406
- }
1407
- }
1408
-
1409
1385
fn check_call < ' b > (
1410
1386
& mut self ,
1411
1387
typ : & str ,
@@ -1466,7 +1442,6 @@ impl<'a, 'll, 'tcx> Builder<'a, 'll, 'tcx> {
1466
1442
return ;
1467
1443
}
1468
1444
1469
- let ptr = self . pointercast ( ptr, self . cx . type_i8p ( ) ) ;
1470
1445
self . call_intrinsic ( intrinsic, & [ self . cx . const_u64 ( size) , ptr] ) ;
1471
1446
}
1472
1447
0 commit comments