Skip to content

Commit 538840b

Browse files
committed
Auto merge of #23245 - alexcrichton:allow-warnings-again, r=aturon
These were suppressing lots of interesting warnings! Turns out there was also quite a bit of dead code.
2 parents 206ee0e + c933d44 commit 538840b

35 files changed

+86
-176
lines changed

src/libstd/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -273,13 +273,14 @@ pub mod collections;
273273
pub mod thread;
274274
pub mod sync;
275275

276+
#[macro_use]
277+
#[path = "sys/common/mod.rs"] mod sys_common;
278+
276279
#[cfg(unix)]
277280
#[path = "sys/unix/mod.rs"] mod sys;
278281
#[cfg(windows)]
279282
#[path = "sys/windows/mod.rs"] mod sys;
280283

281-
#[path = "sys/common/mod.rs"] mod sys_common;
282-
283284
pub mod rt;
284285
mod panicking;
285286

src/libstd/rt/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,7 @@ fn lang_start(main: *const u8, argc: int, argv: *const *const u8) -> int {
108108
// but we just do this to name the main thread and to give it correct
109109
// info about the stack bounds.
110110
let thread: Thread = NewThread::new(Some("<main>".to_string()));
111-
thread_info::set((my_stack_bottom, my_stack_top),
112-
sys::thread::guard::main(),
113-
thread);
111+
thread_info::set(sys::thread::guard::main(), thread);
114112

115113
// By default, some platforms will send a *signal* when a EPIPE error
116114
// would otherwise be delivered. This runtime doesn't install a SIGPIPE

src/libstd/sys/common/helper_thread.rs

+11
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,17 @@ struct RaceBox(helper_signal::signal);
7070
unsafe impl Send for RaceBox {}
7171
unsafe impl Sync for RaceBox {}
7272

73+
macro_rules! helper_init { (static $name:ident: Helper<$m:ty>) => (
74+
static $name: Helper<$m> = Helper {
75+
lock: ::sync::MUTEX_INIT,
76+
cond: ::sync::CONDVAR_INIT,
77+
chan: ::cell::UnsafeCell { value: 0 as *mut Sender<$m> },
78+
signal: ::cell::UnsafeCell { value: 0 },
79+
initialized: ::cell::UnsafeCell { value: false },
80+
shutdown: ::cell::UnsafeCell { value: false },
81+
};
82+
) }
83+
7384
impl<M: Send> Helper<M> {
7485
/// Lazily boots a helper thread, becoming a no-op if the helper has already
7586
/// been spawned.

src/libstd/sys/common/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
#![allow(missing_docs)]
12-
#![allow(dead_code)]
1312

1413
use old_io::{self, IoError, IoResult};
1514
use prelude::v1::*;
@@ -19,9 +18,10 @@ use num::Int;
1918
use old_path::BytesContainer;
2019
use collections;
2120

21+
#[macro_use] pub mod helper_thread;
22+
2223
pub mod backtrace;
2324
pub mod condvar;
24-
pub mod helper_thread;
2525
pub mod mutex;
2626
pub mod net;
2727
pub mod net2;

src/libstd/sys/common/net.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ use str;
2626
use sys::{self, retry, c, sock_t, last_error, last_net_error, last_gai_error, close_sock,
2727
wrlen, msglen_t, os, wouldblock, set_nonblocking, timer, ms_to_timeval,
2828
decode_error_detailed};
29-
use sync::{Arc, Mutex, MutexGuard};
29+
use sync::{Arc, Mutex};
30+
#[cfg(not(target_os = "linux"))]
31+
use sync::MutexGuard;
3032
use sys_common::{self, keep_going, short_write, timeout};
3133
use cmp;
3234
use old_io;
@@ -620,11 +622,13 @@ impl Drop for Inner {
620622
fn drop(&mut self) { unsafe { close_sock(self.fd); } }
621623
}
622624

625+
#[cfg(not(target_os = "linux"))]
623626
pub struct Guard<'a> {
624627
pub fd: sock_t,
625628
pub guard: MutexGuard<'a, ()>,
626629
}
627630

631+
#[cfg(not(target_os = "linux"))]
628632
#[unsafe_destructor]
629633
impl<'a> Drop for Guard<'a> {
630634
fn drop(&mut self) {

src/libstd/sys/common/net2.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use io::{self, Error, ErrorKind};
1515
use libc::{self, c_int, c_char, c_void, socklen_t};
1616
use mem;
1717
use net::{IpAddr, SocketAddr, Shutdown};
18-
use num::Int;
1918
use sys::c;
2019
use sys::net::{cvt, cvt_r, cvt_gai, Socket, init, wrlen_t};
2120
use sys_common::{AsInner, FromInner, IntoInner};
@@ -24,9 +23,6 @@ use sys_common::{AsInner, FromInner, IntoInner};
2423
// sockaddr and misc bindings
2524
////////////////////////////////////////////////////////////////////////////////
2625

27-
fn hton<I: Int>(i: I) -> I { i.to_be() }
28-
fn ntoh<I: Int>(i: I) -> I { Int::from_be(i) }
29-
3026
fn setsockopt<T>(sock: &Socket, opt: c_int, val: c_int,
3127
payload: T) -> io::Result<()> {
3228
unsafe {
@@ -39,7 +35,7 @@ fn setsockopt<T>(sock: &Socket, opt: c_int, val: c_int,
3935

4036
#[allow(dead_code)]
4137
fn getsockopt<T: Copy>(sock: &Socket, opt: c_int,
42-
val: c_int) -> io::Result<T> {
38+
val: c_int) -> io::Result<T> {
4339
unsafe {
4440
let mut slot: T = mem::zeroed();
4541
let mut len = mem::size_of::<T>() as socklen_t;

src/libstd/sys/common/stack.rs

-31
Original file line numberDiff line numberDiff line change
@@ -121,37 +121,6 @@ pub unsafe fn record_os_managed_stack_bounds(stack_lo: uint, _stack_hi: uint) {
121121
record_sp_limit(stack_lo + RED_ZONE);
122122
}
123123

124-
#[inline(always)]
125-
pub unsafe fn record_rust_managed_stack_bounds(stack_lo: uint, stack_hi: uint) {
126-
// When the old runtime had segmented stacks, it used a calculation that was
127-
// "limit + RED_ZONE + FUDGE". The red zone was for things like dynamic
128-
// symbol resolution, llvm function calls, etc. In theory this red zone
129-
// value is 0, but it matters far less when we have gigantic stacks because
130-
// we don't need to be so exact about our stack budget. The "fudge factor"
131-
// was because LLVM doesn't emit a stack check for functions < 256 bytes in
132-
// size. Again though, we have giant stacks, so we round all these
133-
// calculations up to the nice round number of 20k.
134-
record_sp_limit(stack_lo + RED_ZONE);
135-
136-
return target_record_stack_bounds(stack_lo, stack_hi);
137-
138-
#[cfg(not(windows))] #[inline(always)]
139-
unsafe fn target_record_stack_bounds(_stack_lo: uint, _stack_hi: uint) {}
140-
141-
#[cfg(all(windows, target_arch = "x86"))] #[inline(always)]
142-
unsafe fn target_record_stack_bounds(stack_lo: uint, stack_hi: uint) {
143-
// stack range is at TIB: %fs:0x04 (top) and %fs:0x08 (bottom)
144-
asm!("mov $0, %fs:0x04" :: "r"(stack_hi) :: "volatile");
145-
asm!("mov $0, %fs:0x08" :: "r"(stack_lo) :: "volatile");
146-
}
147-
#[cfg(all(windows, target_arch = "x86_64"))] #[inline(always)]
148-
unsafe fn target_record_stack_bounds(stack_lo: uint, stack_hi: uint) {
149-
// stack range is at TIB: %gs:0x08 (top) and %gs:0x10 (bottom)
150-
asm!("mov $0, %gs:0x08" :: "r"(stack_hi) :: "volatile");
151-
asm!("mov $0, %gs:0x10" :: "r"(stack_lo) :: "volatile");
152-
}
153-
}
154-
155124
/// Records the current limit of the stack as specified by `end`.
156125
///
157126
/// This is stored in an OS-dependent location, likely inside of the thread

src/libstd/sys/common/thread_info.rs

+3-7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![allow(dead_code)] // stack_guard isn't used right now on all platforms
12+
1113
use core::prelude::*;
1214

1315
use cell::RefCell;
@@ -16,10 +18,6 @@ use thread::Thread;
1618
use thread_local::State;
1719

1820
struct ThreadInfo {
19-
// This field holds the known bounds of the stack in (lo, hi)
20-
// form. Not all threads necessarily know their precise bounds,
21-
// hence this is optional.
22-
stack_bounds: (uint, uint),
2321
stack_guard: uint,
2422
thread: Thread,
2523
}
@@ -36,7 +34,6 @@ impl ThreadInfo {
3634
THREAD_INFO.with(move |c| {
3735
if c.borrow().is_none() {
3836
*c.borrow_mut() = Some(ThreadInfo {
39-
stack_bounds: (0, 0),
4037
stack_guard: 0,
4138
thread: NewThread::new(None),
4239
})
@@ -54,10 +51,9 @@ pub fn stack_guard() -> uint {
5451
ThreadInfo::with(|info| info.stack_guard)
5552
}
5653

57-
pub fn set(stack_bounds: (uint, uint), stack_guard: uint, thread: Thread) {
54+
pub fn set(stack_guard: uint, thread: Thread) {
5855
THREAD_INFO.with(|c| assert!(c.borrow().is_none()));
5956
THREAD_INFO.with(move |c| *c.borrow_mut() = Some(ThreadInfo{
60-
stack_bounds: stack_bounds,
6157
stack_guard: stack_guard,
6258
thread: thread,
6359
}));

src/libstd/sys/common/thread_local.rs

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
5757
#![allow(non_camel_case_types)]
5858
#![unstable(feature = "thread_local_internals")]
59+
#![allow(dead_code)] // sys isn't exported yet
5960

6061
use prelude::v1::*;
6162

src/libstd/sys/common/wtf8.rs

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
//! nor can it decode WTF-8 from arbitrary bytes.
2222
//! WTF-8 strings can be obtained from UTF-8, UTF-16, or code points.
2323
24+
// this module is imported from @SimonSapin's repo and has tons of dead code on
25+
// unix (it's mostly used on windows), so don't worry about dead code here.
26+
#![allow(dead_code)]
27+
2428
use core::prelude::*;
2529

2630
use core::char::{encode_utf8_raw, encode_utf16_raw};

src/libstd/sys/unix/backtrace.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,8 @@
8484
/// all unix platforms we support right now, so it at least gets the job done.
8585
8686
use prelude::v1::*;
87-
use os::unix::prelude::*;
8887

89-
use ffi::{CStr, AsOsStr};
88+
use ffi::CStr;
9089
use old_io::IoResult;
9190
use libc;
9291
use mem;
@@ -151,7 +150,7 @@ pub fn write(w: &mut Writer) -> IoResult<()> {
151150
// I/O done here is blocking I/O, not green I/O, so we don't have to
152151
// worry about this being a native vs green mutex.
153152
static LOCK: StaticMutex = MUTEX_INIT;
154-
let _g = unsafe { LOCK.lock() };
153+
let _g = LOCK.lock();
155154

156155
try!(writeln!(w, "stack backtrace:"));
157156

@@ -253,6 +252,8 @@ fn print(w: &mut Writer, idx: int, addr: *mut libc::c_void,
253252
fn print(w: &mut Writer, idx: int, addr: *mut libc::c_void,
254253
symaddr: *mut libc::c_void) -> IoResult<()> {
255254
use env;
255+
use ffi::AsOsStr;
256+
use os::unix::prelude::*;
256257
use ptr;
257258

258259
////////////////////////////////////////////////////////////////////////

src/libstd/sys/unix/fd.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
use core::prelude::*;
12-
use io::prelude::*;
1312

1413
use io;
1514
use libc::{self, c_int, size_t, c_void};

src/libstd/sys/unix/fs2.rs

+2-10
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ use io::prelude::*;
1313
use os::unix::prelude::*;
1414

1515
use ffi::{CString, CStr, OsString, AsOsStr, OsStr};
16-
use io::{self, Error, Seek, SeekFrom};
17-
use libc::{self, c_int, c_void, size_t, off_t, c_char, mode_t};
16+
use io::{self, Error, SeekFrom};
17+
use libc::{self, c_int, size_t, off_t, c_char, mode_t};
1818
use mem;
1919
use path::{Path, PathBuf};
2020
use ptr;
@@ -324,14 +324,6 @@ pub fn rmdir(p: &Path) -> io::Result<()> {
324324
Ok(())
325325
}
326326

327-
pub fn chown(p: &Path, uid: isize, gid: isize) -> io::Result<()> {
328-
let p = try!(cstr(p));
329-
try!(cvt_r(|| unsafe {
330-
libc::chown(p.as_ptr(), uid as libc::uid_t, gid as libc::gid_t)
331-
}));
332-
Ok(())
333-
}
334-
335327
pub fn readlink(p: &Path) -> io::Result<PathBuf> {
336328
let c_path = try!(cstr(p));
337329
let p = c_path.as_ptr();

src/libstd/sys/unix/mod.rs

+1-17
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,17 @@
1010

1111
#![allow(missing_docs)]
1212
#![allow(non_camel_case_types)]
13-
#![allow(unused_imports)]
14-
#![allow(dead_code)]
15-
#![allow(unused_unsafe)]
16-
#![allow(unused_mut)]
1713

1814
use prelude::v1::*;
1915

2016
use ffi::CStr;
2117
use io::{self, ErrorKind};
2218
use libc;
2319
use num::{Int, SignedInt};
24-
use num;
25-
use old_io::{self, IoResult, IoError};
20+
use old_io::{self, IoError};
2621
use str;
2722
use sys_common::mkerr_libc;
2823

29-
macro_rules! helper_init { (static $name:ident: Helper<$m:ty>) => (
30-
static $name: Helper<$m> = Helper {
31-
lock: ::sync::MUTEX_INIT,
32-
cond: ::sync::CONDVAR_INIT,
33-
chan: ::cell::UnsafeCell { value: 0 as *mut Sender<$m> },
34-
signal: ::cell::UnsafeCell { value: 0 },
35-
initialized: ::cell::UnsafeCell { value: false },
36-
shutdown: ::cell::UnsafeCell { value: false },
37-
};
38-
) }
39-
4024
pub mod backtrace;
4125
pub mod c;
4226
pub mod condvar;

src/libstd/sys/unix/mutex.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use prelude::v1::*;
1212

1313
use cell::UnsafeCell;
1414
use sys::sync as ffi;
15-
use sys_common::mutex;
1615

1716
pub struct Mutex { inner: UnsafeCell<ffi::pthread_mutex_t> }
1817

@@ -28,6 +27,7 @@ pub const MUTEX_INIT: Mutex = Mutex {
2827
unsafe impl Send for Mutex {}
2928
unsafe impl Sync for Mutex {}
3029

30+
#[allow(dead_code)] // sys isn't exported yet
3131
impl Mutex {
3232
#[inline]
3333
pub unsafe fn new() -> Mutex {

src/libstd/sys/unix/os.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
//! Implementation of `std::os` functionality for unix systems
1212
13+
#![allow(unused_imports)] // lots of cfg code here
14+
1315
use prelude::v1::*;
1416
use os::unix::*;
1517

@@ -482,7 +484,7 @@ pub fn home_dir() -> Option<PathBuf> {
482484
#[cfg(not(any(target_os = "android",
483485
target_os = "ios")))]
484486
unsafe fn fallback() -> Option<OsString> {
485-
let mut amt = match libc::sysconf(c::_SC_GETPW_R_SIZE_MAX) {
487+
let amt = match libc::sysconf(c::_SC_GETPW_R_SIZE_MAX) {
486488
n if n < 0 => 512 as usize,
487489
n => n as usize,
488490
};

src/libstd/sys/unix/os_str.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl Slice {
7070
}
7171

7272
pub fn from_str(s: &str) -> &Slice {
73-
unsafe { mem::transmute(s.as_bytes()) }
73+
Slice::from_u8_slice(s.as_bytes())
7474
}
7575

7676
pub fn to_str(&self) -> Option<&str> {

src/libstd/sys/unix/pipe.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ impl UnixStream {
143143
fn lock_nonblocking<'a>(&'a self) -> Guard<'a> {
144144
let ret = Guard {
145145
fd: self.fd(),
146-
guard: unsafe { self.inner.lock.lock().unwrap() },
146+
guard: self.inner.lock.lock().unwrap(),
147147
};
148148
set_nonblocking(self.fd(), true);
149149
ret

0 commit comments

Comments
 (0)