Skip to content

Commit ad33d8c

Browse files
committed
---
yaml --- r: 153097 b: refs/heads/try2 c: 29ec250 h: refs/heads/master i: 153095: 2f550a9 v: v3
1 parent 21b4a9f commit ad33d8c

File tree

25 files changed

+153
-360
lines changed

25 files changed

+153
-360
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 25e8b6ed9c9cf60448eb95a0e8a42330ed44f479
8+
refs/heads/try2: 29ec2506abb1d382e432cae2519aa7b7695c276a
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/doc/rust.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ nav {
132132
-moz-column-count: 2;
133133
-webkit-column-count: 2;
134134
font-size: 15px;
135-
margin: 0 0 1em 0;
136135
}
137136
p {
138137
margin: 0 0 1em 0;
@@ -276,7 +275,7 @@ dd {
276275

277276
nav ul {
278277
list-style-type: none;
279-
margin: 0;
278+
margin: 0 0 20px 0;
280279
padding-left: 0px;
281280
}
282281

branches/try2/src/doc/rust.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2539,7 +2539,7 @@ A temporary's lifetime equals the largest lifetime of any reference that points
25392539
#### Moved and copied types
25402540

25412541
When a [local variable](#memory-slots) is used
2542-
as an [rvalue](#lvalues,-rvalues-and-temporaries)
2542+
as an [rvalue](#lvalues-rvalues-and-temporaries)
25432543
the variable will either be moved or copied, depending on its type.
25442544
For types that contain [owning pointers](#pointer-types)
25452545
or values that implement the special trait `Drop`,
@@ -2562,7 +2562,7 @@ string, boolean value, or the unit value.
25622562
### Path expressions
25632563

25642564
A [path](#paths) used as an expression context denotes either a local variable or an item.
2565-
Path expressions are [lvalues](#lvalues,-rvalues-and-temporaries).
2565+
Path expressions are [lvalues](#lvalues-rvalues-and-temporaries).
25662566

25672567
### Tuple expressions
25682568

@@ -2675,7 +2675,7 @@ foo().x;
26752675
(Struct {a: 10, b: 20}).a;
26762676
~~~~
26772677

2678-
A field access is an [lvalue](#lvalues,-rvalues-and-temporaries) referring to the value of that field.
2678+
A field access is an [lvalue](#lvalues-rvalues-and-temporaries) referring to the value of that field.
26792679
When the type providing the field inherits mutabilty, it can be [assigned](#assignment-expressions) to.
26802680

26812681
Also, if the type of the expression to the left of the dot is a pointer,
@@ -2711,7 +2711,7 @@ idx_expr : expr '[' expr ']' ;
27112711

27122712
[Vector](#vector-types)-typed expressions can be indexed by writing a
27132713
square-bracket-enclosed expression (the index) after them. When the
2714-
vector is mutable, the resulting [lvalue](#lvalues,-rvalues-and-temporaries) can be assigned to.
2714+
vector is mutable, the resulting [lvalue](#lvalues-rvalues-and-temporaries) can be assigned to.
27152715

27162716
Indices are zero-based, and may be of any integral type. Vector access
27172717
is bounds-checked at run-time. When the check fails, it will put the
@@ -2737,7 +2737,7 @@ before the expression they apply to.
27372737
: Negation. May only be applied to numeric types.
27382738
* `*`
27392739
: Dereference. When applied to a [pointer](#pointer-types) it denotes the pointed-to location.
2740-
For pointers to mutable locations, the resulting [lvalue](#lvalues,-rvalues-and-temporaries) can be assigned to.
2740+
For pointers to mutable locations, the resulting [lvalue](#lvalues-rvalues-and-temporaries) can be assigned to.
27412741
On non-pointer types, it calls the `deref` method of the `std::ops::Deref` trait, or the
27422742
`deref_mut` method of the `std::ops::DerefMut` trait (if implemented by the type and required
27432743
for an outer expression that will or could mutate the dereference), and produces the
@@ -2872,8 +2872,8 @@ fn avg(v: &[f64]) -> f64 {
28722872

28732873
#### Assignment expressions
28742874

2875-
An _assignment expression_ consists of an [lvalue](#lvalues,-rvalues-and-temporaries) expression followed by an
2876-
equals sign (`=`) and an [rvalue](#lvalues,-rvalues-and-temporaries) expression.
2875+
An _assignment expression_ consists of an [lvalue](#lvalues-rvalues-and-temporaries) expression followed by an
2876+
equals sign (`=`) and an [rvalue](#lvalues-rvalues-and-temporaries) expression.
28772877

28782878
Evaluating an assignment expression [either copies or moves](#moved-and-copied-types) its right-hand operand to its left-hand operand.
28792879

@@ -3186,7 +3186,7 @@ fn main() {
31863186
~~~~
31873187

31883188
A `match` behaves differently depending on whether or not the head expression
3189-
is an [lvalue or an rvalue](#lvalues,-rvalues-and-temporaries).
3189+
is an [lvalue or an rvalue](#lvalues-rvalues-and-temporaries).
31903190
If the head expression is an rvalue, it is
31913191
first evaluated into a temporary location, and the resulting value
31923192
is sequentially compared to the patterns in the arms until a match
@@ -3550,7 +3550,7 @@ There are four varieties of pointer in Rust:
35503550
: These point to memory _owned by some other value_.
35513551
References arise by (automatic) conversion from owning pointers, managed pointers,
35523552
or by applying the borrowing operator `&` to some other value,
3553-
including [lvalues, rvalues or temporaries](#lvalues,-rvalues-and-temporaries).
3553+
including [lvalues, rvalues or temporaries](#lvalues-rvalues-and-temporaries).
35543554
References are written `&content`, or in some cases `&'f content` for some lifetime-variable `f`,
35553555
for example `&int` means a reference to an integer.
35563556
Copying a reference is a "shallow" operation:
@@ -3852,7 +3852,7 @@ references to any boxes; the remainder of its heap is immediately freed.
38523852
A task's stack contains slots.
38533853

38543854
A _slot_ is a component of a stack frame, either a function parameter,
3855-
a [temporary](#lvalues,-rvalues-and-temporaries), or a local variable.
3855+
a [temporary](#lvalues-rvalues-and-temporaries), or a local variable.
38563856

38573857
A _local variable_ (or *stack-local* allocation) holds a value directly,
38583858
allocated within the stack's memory. The value is a part of the stack frame.

branches/try2/src/libnative/io/c_win32.rs

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,6 @@ pub static WSASYS_STATUS_LEN: uint = 128;
1919
pub static FIONBIO: libc::c_long = 0x8004667e;
2020
static FD_SETSIZE: uint = 64;
2121
pub static MSG_DONTWAIT: libc::c_int = 0;
22-
pub static ERROR_ILLEGAL_CHARACTER: libc::c_int = 582;
23-
pub static ENABLE_ECHO_INPUT: libc::DWORD = 0x4;
24-
pub static ENABLE_EXTENDED_FLAGS: libc::DWORD = 0x80;
25-
pub static ENABLE_INSERT_MODE: libc::DWORD = 0x20;
26-
pub static ENABLE_LINE_INPUT: libc::DWORD = 0x2;
27-
pub static ENABLE_PROCESSED_INPUT: libc::DWORD = 0x1;
28-
pub static ENABLE_QUICK_EDIT_MODE: libc::DWORD = 0x40;
2922

3023
#[repr(C)]
3124
pub struct WSADATA {
@@ -172,24 +165,3 @@ pub mod compat {
172165
})
173166
}
174167
}
175-
176-
extern "system" {
177-
// FIXME - pInputControl should be PCONSOLE_READCONSOLE_CONTROL
178-
pub fn ReadConsoleW(hConsoleInput: libc::HANDLE,
179-
lpBuffer: libc::LPVOID,
180-
nNumberOfCharsToRead: libc::DWORD,
181-
lpNumberOfCharsRead: libc::LPDWORD,
182-
pInputControl: libc::LPVOID) -> libc::BOOL;
183-
184-
pub fn WriteConsoleW(hConsoleOutput: libc::HANDLE,
185-
lpBuffer: libc::types::os::arch::extra::LPCVOID,
186-
nNumberOfCharsToWrite: libc::DWORD,
187-
lpNumberOfCharsWritten: libc::LPDWORD,
188-
lpReserved: libc::LPVOID) -> libc::BOOL;
189-
190-
pub fn GetConsoleMode(hConsoleHandle: libc::HANDLE,
191-
lpMode: libc::LPDWORD) -> libc::BOOL;
192-
193-
pub fn SetConsoleMode(hConsoleHandle: libc::HANDLE,
194-
lpMode: libc::DWORD) -> libc::BOOL;
195-
}

branches/try2/src/libnative/io/mod.rs

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,6 @@ pub mod pipe;
6969
#[path = "pipe_win32.rs"]
7070
pub mod pipe;
7171

72-
#[cfg(windows)]
73-
#[path = "tty_win32.rs"]
74-
mod tty;
75-
7672
#[cfg(unix)] #[path = "c_unix.rs"] mod c;
7773
#[cfg(windows)] #[path = "c_win32.rs"] mod c;
7874

@@ -284,27 +280,15 @@ impl rtio::IoFactory for IoFactory {
284280
fn pipe_open(&mut self, fd: c_int) -> IoResult<Box<rtio::RtioPipe + Send>> {
285281
Ok(box file::FileDesc::new(fd, true) as Box<rtio::RtioPipe + Send>)
286282
}
287-
#[cfg(unix)]
288283
fn tty_open(&mut self, fd: c_int, _readable: bool)
289284
-> IoResult<Box<rtio::RtioTTY + Send>> {
285+
#[cfg(unix)] use ERROR = libc::ENOTTY;
286+
#[cfg(windows)] use ERROR = libc::ERROR_INVALID_HANDLE;
290287
if unsafe { libc::isatty(fd) } != 0 {
291288
Ok(box file::FileDesc::new(fd, true) as Box<rtio::RtioTTY + Send>)
292289
} else {
293290
Err(IoError {
294-
code: libc::ENOTTY as uint,
295-
extra: 0,
296-
detail: None,
297-
})
298-
}
299-
}
300-
#[cfg(windows)]
301-
fn tty_open(&mut self, fd: c_int, _readable: bool)
302-
-> IoResult<Box<rtio::RtioTTY + Send>> {
303-
if tty::is_tty(fd) {
304-
Ok(box tty::WindowsTTY::new(fd) as Box<rtio::RtioTTY + Send>)
305-
} else {
306-
Err(IoError {
307-
code: libc::ERROR_INVALID_HANDLE as uint,
291+
code: ERROR as uint,
308292
extra: 0,
309293
detail: None,
310294
})

branches/try2/src/libnative/io/timer_unix.rs

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,20 @@ pub fn now() -> u64 {
9393
}
9494
}
9595

96-
fn helper(input: libc::c_int, messages: Receiver<Req>, _: ()) {
96+
97+
// Note: although the last parameter isn't used there is no way now to
98+
// convert it to unit type, because LLVM dies in SjLj preparation
99+
// step (unfortunately iOS uses SjLJ exceptions)
100+
//
101+
// It's definitely a temporary workaround just to get it working.
102+
// So far it looks like an LLVM issue and it was reported:
103+
// http://llvm.org/bugs/show_bug.cgi?id=19855
104+
// Actually this issue is pretty common while compiling for armv7 iOS
105+
// and in most cases it is simply solved by using --opt-level=2 (or -O)
106+
//
107+
// For this specific case unfortunately turning optimizations wasn't
108+
// enough.
109+
fn helper(input: libc::c_int, messages: Receiver<Req>, _: int) {
97110
let mut set: c::fd_set = unsafe { mem::zeroed() };
98111

99112
let mut fd = FileDesc::new(input, true);
@@ -205,7 +218,7 @@ impl Timer {
205218
pub fn new() -> IoResult<Timer> {
206219
// See notes above regarding using int return value
207220
// instead of ()
208-
unsafe { HELPER.boot(|| {}, helper); }
221+
unsafe { HELPER.boot(|| {0}, helper); }
209222

210223
static mut ID: atomics::AtomicUint = atomics::INIT_ATOMIC_UINT;
211224
let id = unsafe { ID.fetch_add(1, atomics::Relaxed) };

branches/try2/src/libnative/io/tty_win32.rs

Lines changed: 0 additions & 156 deletions
This file was deleted.

branches/try2/src/libregex_macros/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ fn exec<'t>(which: ::regex::native::MatchKind, input: &'t str,
316316

317317
#[inline]
318318
fn groups<'r>(&'r mut self, i: uint) -> &'r mut Captures {
319-
&'r mut self.queue[i].groups
319+
&mut self.queue[i].groups
320320
}
321321
}
322322
}

0 commit comments

Comments
 (0)