Skip to content

Commit 01d693b

Browse files
committed
Use the correct LLVM integer sizes
Use the integer sizes LLVM uses, rather than having random projections laying around. Sizes are u64, Alignments are u32, C_*int is target-dependent but 64-bit is fine (the int -> C_int conversion is non-precision-losing, but it can be preceded by `as int` conversions which are, so it is somewhat ugly. However, being able to suffix a `u` to properly infer integer types is nice).
1 parent 71dfa5b commit 01d693b

17 files changed

+90
-74
lines changed

src/librustc/middle/trans/_match.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ fn compile_submatch_continue<'a, 'p, 'blk, 'tcx>(mut bcx: Block<'blk, 'tcx>,
10881088
let sw = if kind == Switch {
10891089
build::Switch(bcx, test_val, else_cx.llbb, opts.len())
10901090
} else {
1091-
C_int(ccx, 0) // Placeholder for when not using a switch
1091+
C_int(ccx, 0i) // Placeholder for when not using a switch
10921092
};
10931093

10941094
let defaults = enter_default(else_cx, dm, m, col, val);

src/librustc/middle/trans/adt.rs

+7-11
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545

4646
#![allow(unsigned_negate)]
4747

48-
use libc::c_ulonglong;
4948
use std::collections::Map;
5049
use std::num::Int;
5150
use std::rc::Rc;
@@ -132,7 +131,7 @@ pub struct Struct {
132131
// If the struct is DST, then the size and alignment do not take into
133132
// account the unsized fields of the struct.
134133
pub size: u64,
135-
pub align: u64,
134+
pub align: u32,
136135
pub sized: bool,
137136
pub packed: bool,
138137
pub fields: Vec<ty::t>
@@ -652,9 +651,7 @@ fn load_discr(bcx: Block, ity: IntType, ptr: ValueRef, min: Disr, max: Disr)
652651
} else {
653652
// llvm::ConstantRange can deal with ranges that wrap around,
654653
// so an overflow on (max + 1) is fine.
655-
LoadRangeAssert(bcx, ptr, min as c_ulonglong,
656-
(max + 1) as c_ulonglong,
657-
/* signed: */ True)
654+
LoadRangeAssert(bcx, ptr, min, (max+1), /* signed: */ True)
658655
}
659656
}
660657

@@ -973,11 +970,11 @@ fn compute_struct_field_offsets(ccx: &CrateContext, st: &Struct) -> Vec<u64> {
973970
for &ty in st.fields.iter() {
974971
let llty = type_of::sizing_type_of(ccx, ty);
975972
if !st.packed {
976-
let type_align = type_of::align_of(ccx, ty) as u64;
973+
let type_align = type_of::align_of(ccx, ty);
977974
offset = roundup(offset, type_align);
978975
}
979976
offsets.push(offset);
980-
offset += machine::llsize_of_alloc(ccx, llty) as u64;
977+
offset += machine::llsize_of_alloc(ccx, llty);
981978
}
982979
assert_eq!(st.fields.len(), offsets.len());
983980
offsets
@@ -1004,8 +1001,7 @@ fn build_const_struct(ccx: &CrateContext, st: &Struct, vals: &[ValueRef])
10041001
let mut cfields = Vec::new();
10051002
for (&val, &target_offset) in vals.iter().zip(target_offsets.iter()) {
10061003
if !st.packed {
1007-
let val_align = machine::llalign_of_min(ccx, val_ty(val))
1008-
/*bad*/as u64;
1004+
let val_align = machine::llalign_of_min(ccx, val_ty(val));
10091005
offset = roundup(offset, val_align);
10101006
}
10111007
if offset != target_offset {
@@ -1014,7 +1010,7 @@ fn build_const_struct(ccx: &CrateContext, st: &Struct, vals: &[ValueRef])
10141010
}
10151011
assert!(!is_undef(val));
10161012
cfields.push(val);
1017-
offset += machine::llsize_of_alloc(ccx, val_ty(val)) as u64;
1013+
offset += machine::llsize_of_alloc(ccx, val_ty(val));
10181014
}
10191015

10201016
assert!(st.sized && offset <= st.size);
@@ -1031,7 +1027,7 @@ fn padding(ccx: &CrateContext, size: u64) -> ValueRef {
10311027

10321028
// FIXME this utility routine should be somewhere more general
10331029
#[inline]
1034-
fn roundup(x: u64, a: u64) -> u64 { ((x + (a - 1)) / a) * a }
1030+
fn roundup(x: u64, a: u32) -> u64 { let a = a as u64; ((x + (a - 1)) / a) * a }
10351031

10361032
/// Get the discriminant of a constant value. (Not currently used.)
10371033
pub fn const_get_discrim(ccx: &CrateContext, r: &Repr, val: ValueRef)

src/librustc/middle/trans/base.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ pub fn malloc_raw_dyn_proc<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, t: ty::t) -> Resu
398398

399399
let llty = type_of(bcx.ccx(), t);
400400
let size = llsize_of(bcx.ccx(), llty);
401-
let llalign = C_uint(ccx, llalign_of_min(bcx.ccx(), llty) as uint);
401+
let llalign = C_uint(ccx, llalign_of_min(bcx.ccx(), llty));
402402

403403
// Allocate space and store the destructor pointer:
404404
let Result {bcx: bcx, val: llbox} = malloc_raw_dyn(bcx, ptr_llty, t, size, llalign);

src/librustc/middle/trans/build.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use syntax::codemap::Span;
2121
use middle::trans::builder::Builder;
2222
use middle::trans::type_::Type;
2323

24-
use libc::{c_uint, c_ulonglong, c_char};
24+
use libc::{c_uint, c_char};
2525

2626
pub fn terminate(cx: Block, _: &str) {
2727
debug!("terminate({})", cx.to_str());
@@ -380,8 +380,8 @@ pub fn AtomicLoad(cx: Block, pointer_val: ValueRef, order: AtomicOrdering) -> Va
380380
}
381381

382382

383-
pub fn LoadRangeAssert(cx: Block, pointer_val: ValueRef, lo: c_ulonglong,
384-
hi: c_ulonglong, signed: llvm::Bool) -> ValueRef {
383+
pub fn LoadRangeAssert(cx: Block, pointer_val: ValueRef, lo: u64,
384+
hi: u64, signed: llvm::Bool) -> ValueRef {
385385
if cx.unreachable.get() {
386386
let ccx = cx.fcx.ccx;
387387
let ty = val_ty(pointer_val);

src/librustc/middle/trans/builder.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use middle::trans::common::*;
1919
use middle::trans::machine::llalign_of_pref;
2020
use middle::trans::type_::Type;
2121
use std::collections::HashMap;
22-
use libc::{c_uint, c_ulonglong, c_char};
22+
use libc::{c_uint, c_char};
2323
use std::string::String;
2424
use syntax::codemap::Span;
2525

@@ -477,8 +477,8 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
477477
}
478478

479479

480-
pub fn load_range_assert(&self, ptr: ValueRef, lo: c_ulonglong,
481-
hi: c_ulonglong, signed: llvm::Bool) -> ValueRef {
480+
pub fn load_range_assert(&self, ptr: ValueRef, lo: u64,
481+
hi: u64, signed: llvm::Bool) -> ValueRef {
482482
let value = self.load(ptr);
483483

484484
unsafe {
@@ -490,7 +490,8 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
490490

491491
llvm::LLVMSetMetadata(value, llvm::MD_range as c_uint,
492492
llvm::LLVMMDNodeInContext(self.ccx.llcx(),
493-
v.as_ptr(), v.len() as c_uint));
493+
v.as_ptr(),
494+
v.len() as c_uint));
494495
}
495496

496497
value

src/librustc/middle/trans/common.rs

+19-7
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use util::nodemap::{DefIdMap, NodeMap};
3939

4040
use arena::TypedArena;
4141
use std::collections::HashMap;
42-
use libc::{c_uint, c_longlong, c_ulonglong, c_char};
42+
use libc::{c_uint, c_char};
4343
use std::c_str::ToCStr;
4444
use std::cell::{Cell, RefCell};
4545
use std::rc::Rc;
@@ -595,14 +595,26 @@ pub fn C_u64(ccx: &CrateContext, i: u64) -> ValueRef {
595595
C_integral(Type::i64(ccx), i, false)
596596
}
597597

598-
pub fn C_int(ccx: &CrateContext, i: int) -> ValueRef {
599-
C_integral(ccx.int_type(), i as u64, true)
598+
pub fn C_int<I: AsI64>(ccx: &CrateContext, i: I) -> ValueRef {
599+
C_integral(ccx.int_type(), i.as_i64() as u64, true)
600600
}
601601

602-
pub fn C_uint(ccx: &CrateContext, i: uint) -> ValueRef {
603-
C_integral(ccx.int_type(), i as u64, false)
602+
pub fn C_uint<I: AsU64>(ccx: &CrateContext, i: I) -> ValueRef {
603+
C_integral(ccx.int_type(), i.as_u64(), false)
604604
}
605605

606+
pub trait AsI64 { fn as_i64(self) -> i64; }
607+
pub trait AsU64 { fn as_u64(self) -> u64; }
608+
609+
// FIXME: remove the intptr conversions
610+
impl AsI64 for i64 { fn as_i64(self) -> i64 { self as i64 }}
611+
impl AsI64 for i32 { fn as_i64(self) -> i64 { self as i64 }}
612+
impl AsI64 for int { fn as_i64(self) -> i64 { self as i64 }}
613+
614+
impl AsU64 for u64 { fn as_u64(self) -> u64 { self as u64 }}
615+
impl AsU64 for u32 { fn as_u64(self) -> u64 { self as u64 }}
616+
impl AsU64 for uint { fn as_u64(self) -> u64 { self as u64 }}
617+
606618
pub fn C_u8(ccx: &CrateContext, i: uint) -> ValueRef {
607619
C_integral(Type::i8(ccx), i as u64, false)
608620
}
@@ -717,13 +729,13 @@ pub fn is_const(v: ValueRef) -> bool {
717729
}
718730
}
719731

720-
pub fn const_to_int(v: ValueRef) -> c_longlong {
732+
pub fn const_to_int(v: ValueRef) -> i64 {
721733
unsafe {
722734
llvm::LLVMConstIntGetSExtValue(v)
723735
}
724736
}
725737

726-
pub fn const_to_uint(v: ValueRef) -> c_ulonglong {
738+
pub fn const_to_uint(v: ValueRef) -> u64 {
727739
unsafe {
728740
llvm::LLVMConstIntGetZExtValue(v)
729741
}

src/librustc/middle/trans/controlflow.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ pub fn trans_fail<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
499499
let loc = bcx.sess().codemap().lookup_char_pos(sp.lo);
500500
let filename = token::intern_and_get_ident(loc.file.name.as_slice());
501501
let filename = C_str_slice(ccx, filename);
502-
let line = C_int(ccx, loc.line as int);
502+
let line = C_int(ccx, loc.line as i64);
503503
let expr_file_line_const = C_struct(ccx, &[v_str, filename, line], false);
504504
let expr_file_line = consts::const_addr_of(ccx, expr_file_line_const, ast::MutImmutable);
505505
let args = vec!(expr_file_line);
@@ -526,7 +526,7 @@ pub fn trans_fail_bounds_check<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
526526

527527
// Invoke the lang item
528528
let filename = C_str_slice(ccx, filename);
529-
let line = C_int(ccx, loc.line as int);
529+
let line = C_int(ccx, loc.line as i64);
530530
let file_line_const = C_struct(ccx, &[filename, line], false);
531531
let file_line = consts::const_addr_of(ccx, file_line_const, ast::MutImmutable);
532532
let args = vec!(file_line, index, len);

src/librustc/middle/trans/debuginfo.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ use middle::ty;
202202
use middle::pat_util;
203203
use util::ppaux;
204204

205-
use libc::{c_uint, c_ulonglong, c_longlong};
205+
use libc::c_uint;
206206
use std::c_str::{CString, ToCStr};
207207
use std::cell::{Cell, RefCell};
208208
use std::collections::HashMap;
@@ -2384,7 +2384,7 @@ fn prepare_enum_metadata(cx: &CrateContext,
23842384
llvm::LLVMDIBuilderCreateEnumerator(
23852385
DIB(cx),
23862386
name,
2387-
v.disr_val as c_ulonglong)
2387+
v.disr_val as u64)
23882388
}
23892389
})
23902390
})
@@ -2663,9 +2663,9 @@ fn fixed_vec_metadata(cx: &CrateContext,
26632663

26642664
let subrange = unsafe {
26652665
llvm::LLVMDIBuilderGetOrCreateSubrange(
2666-
DIB(cx),
2667-
0,
2668-
len as c_longlong)
2666+
DIB(cx),
2667+
0,
2668+
len as i64)
26692669
};
26702670

26712671
let subscripts = create_DIArray(DIB(cx), [subrange]);
@@ -3072,11 +3072,11 @@ fn span_start(cx: &CrateContext, span: Span) -> codemap::Loc {
30723072
}
30733073

30743074
fn size_and_align_of(cx: &CrateContext, llvm_type: Type) -> (u64, u64) {
3075-
(machine::llsize_of_alloc(cx, llvm_type), machine::llalign_of_min(cx, llvm_type))
3075+
(machine::llsize_of_alloc(cx, llvm_type), machine::llalign_of_min(cx, llvm_type) as u64)
30763076
}
30773077

3078-
fn bytes_to_bits(bytes: u64) -> c_ulonglong {
3079-
(bytes * 8) as c_ulonglong
3078+
fn bytes_to_bits(bytes: u64) -> u64 {
3079+
bytes * 8
30803080
}
30813081

30823082
#[inline]

src/librustc/middle/trans/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@ fn trans_uniq_expr<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
15481548
assert!(ty::type_is_sized(bcx.tcx(), contents_ty));
15491549
let llty = type_of::type_of(bcx.ccx(), contents_ty);
15501550
let size = llsize_of(bcx.ccx(), llty);
1551-
let align = C_uint(bcx.ccx(), type_of::align_of(bcx.ccx(), contents_ty) as uint);
1551+
let align = C_uint(bcx.ccx(), type_of::align_of(bcx.ccx(), contents_ty));
15521552
let llty_ptr = llty.ptr_to();
15531553
let Result { bcx, val } = malloc_raw_dyn(bcx, llty_ptr, box_ty, size, align);
15541554
// Unique boxes do not allocate for zero-size types. The standard library

src/librustc/middle/trans/foreign.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ pub fn trans_native_call<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
476476
let llalign = cmp::min(llforeign_align, llrust_align);
477477
debug!("llrust_size={:?}", llrust_size);
478478
base::call_memcpy(bcx, llretptr_i8, llscratch_i8,
479-
C_uint(ccx, llrust_size as uint), llalign as u32);
479+
C_uint(ccx, llrust_size), llalign as u32);
480480
}
481481
}
482482

src/librustc/middle/trans/glue.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ pub fn trans_exchange_free_dyn<'blk, 'tcx>(cx: Block<'blk, 'tcx>, v: ValueRef,
5858
}
5959

6060
pub fn trans_exchange_free<'blk, 'tcx>(cx: Block<'blk, 'tcx>, v: ValueRef,
61-
size: u64, align: u64) -> Block<'blk, 'tcx> {
62-
trans_exchange_free_dyn(cx, v, C_uint(cx.ccx(), size as uint),
63-
C_uint(cx.ccx(), align as uint))
61+
size: u64, align: u32) -> Block<'blk, 'tcx> {
62+
trans_exchange_free_dyn(cx, v, C_uint(cx.ccx(), size),
63+
C_uint(cx.ccx(), align))
6464
}
6565

6666
pub fn trans_exchange_free_ty<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, ptr: ValueRef,
@@ -368,8 +368,8 @@ fn size_and_align_of_dst(bcx: Block, t :ty::t, info: ValueRef) -> (ValueRef, Val
368368
bcx.ty_to_string(t), bcx.val_to_string(info));
369369
if ty::type_is_sized(bcx.tcx(), t) {
370370
let sizing_type = sizing_type_of(bcx.ccx(), t);
371-
let size = C_uint(bcx.ccx(), llsize_of_alloc(bcx.ccx(), sizing_type) as uint);
372-
let align = C_uint(bcx.ccx(), align_of(bcx.ccx(), t) as uint);
371+
let size = C_uint(bcx.ccx(), llsize_of_alloc(bcx.ccx(), sizing_type));
372+
let align = C_uint(bcx.ccx(), align_of(bcx.ccx(), t));
373373
return (size, align);
374374
}
375375
match ty::get(t).sty {
@@ -380,8 +380,8 @@ fn size_and_align_of_dst(bcx: Block, t :ty::t, info: ValueRef) -> (ValueRef, Val
380380
assert!(!ty::type_is_simd(bcx.tcx(), t));
381381
let repr = adt::represent_type(ccx, t);
382382
let sizing_type = adt::sizing_type_of(ccx, &*repr, true);
383-
let sized_size = C_uint(ccx, llsize_of_alloc(ccx, sizing_type) as uint);
384-
let sized_align = C_uint(ccx, llalign_of_min(ccx, sizing_type) as uint);
383+
let sized_size = C_uint(ccx, llsize_of_alloc(ccx, sizing_type));
384+
let sized_align = C_uint(ccx, llalign_of_min(ccx, sizing_type));
385385

386386
// Recurse to get the size of the dynamically sized field (must be
387387
// the last field).
@@ -411,7 +411,7 @@ fn size_and_align_of_dst(bcx: Block, t :ty::t, info: ValueRef) -> (ValueRef, Val
411411
// times the unit size.
412412
let llunit_ty = sizing_type_of(bcx.ccx(), unit_ty);
413413
let unit_size = llsize_of_alloc(bcx.ccx(), llunit_ty);
414-
(Mul(bcx, info, C_uint(bcx.ccx(), unit_size as uint)), C_uint(bcx.ccx(), 8))
414+
(Mul(bcx, info, C_uint(bcx.ccx(), unit_size)), C_uint(bcx.ccx(), 8u))
415415
}
416416
_ => bcx.sess().bug(format!("Unexpected unsized type, found {}",
417417
bcx.ty_to_string(t)).as_slice())

src/librustc/middle/trans/intrinsic.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,16 +239,16 @@ pub fn trans_intrinsic_call<'blk, 'tcx>(mut bcx: Block<'blk, 'tcx>, node: ast::N
239239
(_, "size_of") => {
240240
let tp_ty = *substs.types.get(FnSpace, 0);
241241
let lltp_ty = type_of::type_of(ccx, tp_ty);
242-
C_uint(ccx, machine::llsize_of_real(ccx, lltp_ty) as uint)
242+
C_uint(ccx, machine::llsize_of_real(ccx, lltp_ty))
243243
}
244244
(_, "min_align_of") => {
245245
let tp_ty = *substs.types.get(FnSpace, 0);
246-
C_uint(ccx, type_of::align_of(ccx, tp_ty) as uint)
246+
C_uint(ccx, type_of::align_of(ccx, tp_ty))
247247
}
248248
(_, "pref_align_of") => {
249249
let tp_ty = *substs.types.get(FnSpace, 0);
250250
let lltp_ty = type_of::type_of(ccx, tp_ty);
251-
C_uint(ccx, machine::llalign_of_pref(ccx, lltp_ty) as uint)
251+
C_uint(ccx, machine::llalign_of_pref(ccx, lltp_ty))
252252
}
253253
(_, "move_val_init") => {
254254
// Create a datum reflecting the value being moved.

0 commit comments

Comments
 (0)