Skip to content

Commit b388cdd

Browse files
---
yaml --- r: 145229 b: refs/heads/try2 c: 604667f h: refs/heads/master i: 145227: dece025 v: v3
1 parent ae1420c commit b388cdd

File tree

6 files changed

+52
-144
lines changed

6 files changed

+52
-144
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: cbd1eefbd350797b783df119fed7956d7e1c74ad
8+
refs/heads/try2: 604667fa82f72309ee692c77086e22766cc3a8ee
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/doc/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ string_body : non_double_quote
248248
| '\x5c' [ '\x22' | common_escape ] ;
249249
250250
common_escape : '\x5c'
251-
| 'n' | 'r' | 't'
251+
| 'n' | 'r' | 't' | '0'
252252
| 'x' hex_digit 2
253253
| 'u' hex_digit 4
254254
| 'U' hex_digit 8 ;

branches/try2/src/libextra/num/bigint.rs

Lines changed: 2 additions & 140 deletions
Original file line numberDiff line numberDiff line change
@@ -697,13 +697,6 @@ impl BigUint {
697697
}
698698
return BigUint::new(shifted);
699699
}
700-
701-
/// Determines the fewest bits necessary to express the BigUint.
702-
pub fn bits(&self) -> uint {
703-
if self.is_zero() { return 0; }
704-
let zeros = self.data.last().leading_zeros();
705-
return self.data.len()*BigDigit::bits - (zeros as uint);
706-
}
707700
}
708701

709702
#[cfg(target_word_size = "64")]
@@ -1122,23 +1115,10 @@ trait RandBigInt {
11221115
11231116
/// Generate a random BigInt of the given bit size.
11241117
fn gen_bigint(&mut self, bit_size: uint) -> BigInt;
1125-
1126-
/// Generate a random BigUint less than the given bound. Fails
1127-
/// when the bound is zero.
1128-
fn gen_biguint_below(&mut self, bound: &BigUint) -> BigUint;
1129-
1130-
/// Generate a random BigUint within the given range. The lower
1131-
/// bound is inclusive; the upper bound is exclusive. Fails when
1132-
/// the upper bound is not greater than the lower bound.
1133-
fn gen_biguint_range(&mut self, lbound: &BigUint, ubound: &BigUint) -> BigUint;
1134-
1135-
/// Generate a random BigInt within the given range. The lower
1136-
/// bound is inclusive; the upper bound is exclusive. Fails when
1137-
/// the upper bound is not greater than the lower bound.
1138-
fn gen_bigint_range(&mut self, lbound: &BigInt, ubound: &BigInt) -> BigInt;
11391118
}
11401119
11411120
impl<R: Rng> RandBigInt for R {
1121+
/// Generate a random BigUint of the given bit size.
11421122
fn gen_biguint(&mut self, bit_size: uint) -> BigUint {
11431123
let (digits, rem) = bit_size.div_rem(&BigDigit::bits);
11441124
let mut data = vec::with_capacity(digits+1);
@@ -1152,6 +1132,7 @@ impl<R: Rng> RandBigInt for R {
11521132
return BigUint::new(data);
11531133
}
11541134
1135+
/// Generate a random BigInt of the given bit size.
11551136
fn gen_bigint(&mut self, bit_size: uint) -> BigInt {
11561137
// Generate a random BigUint...
11571138
let biguint = self.gen_biguint(bit_size);
@@ -1173,32 +1154,6 @@ impl<R: Rng> RandBigInt for R {
11731154
};
11741155
return BigInt::from_biguint(sign, biguint);
11751156
}
1176-
1177-
fn gen_biguint_below(&mut self, bound: &BigUint) -> BigUint {
1178-
assert!(!bound.is_zero());
1179-
let bits = bound.bits();
1180-
loop {
1181-
let n = self.gen_biguint(bits);
1182-
if n < *bound { return n; }
1183-
}
1184-
}
1185-
1186-
fn gen_biguint_range(&mut self,
1187-
lbound: &BigUint,
1188-
ubound: &BigUint)
1189-
-> BigUint {
1190-
assert!(*lbound < *ubound);
1191-
return *lbound + self.gen_biguint_below(&(*ubound - *lbound));
1192-
}
1193-
1194-
fn gen_bigint_range(&mut self,
1195-
lbound: &BigInt,
1196-
ubound: &BigInt)
1197-
-> BigInt {
1198-
assert!(*lbound < *ubound);
1199-
let delta = (*ubound - *lbound).to_biguint();
1200-
return *lbound + self.gen_biguint_below(&delta).to_bigint();
1201-
}
12021157
}
12031158
12041159
impl BigInt {
@@ -1825,63 +1780,12 @@ mod biguint_tests {
18251780
check(30, "265252859812191058636308480000000");
18261781
}
18271782

1828-
#[test]
1829-
fn test_bits() {
1830-
assert_eq!(BigUint::new(~[0,0,0,0]).bits(), 0);
1831-
assert_eq!(BigUint::from_uint(0).bits(), 0);
1832-
assert_eq!(BigUint::from_uint(1).bits(), 1);
1833-
assert_eq!(BigUint::from_uint(3).bits(), 2);
1834-
let n: BigUint = FromStrRadix::from_str_radix("4000000000", 16).unwrap();
1835-
assert_eq!(n.bits(), 39);
1836-
let one: BigUint = One::one();
1837-
assert_eq!((one << 426).bits(), 427);
1838-
}
1839-
18401783
#[test]
18411784
fn test_rand() {
18421785
let mut rng = task_rng();
18431786
let _n: BigUint = rng.gen_biguint(137);
18441787
assert!(rng.gen_biguint(0).is_zero());
18451788
}
1846-
1847-
#[test]
1848-
fn test_rand_range() {
1849-
let mut rng = task_rng();
1850-
1851-
do 10.times {
1852-
assert_eq!(rng.gen_bigint_range(&BigInt::from_uint(236),
1853-
&BigInt::from_uint(237)),
1854-
BigInt::from_uint(236));
1855-
}
1856-
1857-
let l = BigUint::from_uint(403469000 + 2352);
1858-
let u = BigUint::from_uint(403469000 + 3513);
1859-
do 1000.times {
1860-
let n: BigUint = rng.gen_biguint_below(&u);
1861-
assert!(n < u);
1862-
1863-
let n: BigUint = rng.gen_biguint_range(&l, &u);
1864-
assert!(n >= l);
1865-
assert!(n < u);
1866-
}
1867-
}
1868-
1869-
#[test]
1870-
#[should_fail]
1871-
fn test_zero_rand_range() {
1872-
task_rng().gen_biguint_range(&BigUint::from_uint(54),
1873-
&BigUint::from_uint(54));
1874-
}
1875-
1876-
#[test]
1877-
#[should_fail]
1878-
fn test_negative_rand_range() {
1879-
let mut rng = task_rng();
1880-
let l = BigUint::from_uint(2352);
1881-
let u = BigUint::from_uint(3513);
1882-
// Switching u and l should fail:
1883-
let _n: BigUint = rng.gen_biguint_range(&u, &l);
1884-
}
18851789
}
18861790

18871791
#[cfg(test)]
@@ -2333,48 +2237,6 @@ mod bigint_tests {
23332237
let _n: BigInt = rng.gen_bigint(137);
23342238
assert!(rng.gen_bigint(0).is_zero());
23352239
}
2336-
2337-
#[test]
2338-
fn test_rand_range() {
2339-
let mut rng = task_rng();
2340-
2341-
do 10.times {
2342-
assert_eq!(rng.gen_bigint_range(&BigInt::from_uint(236),
2343-
&BigInt::from_uint(237)),
2344-
BigInt::from_uint(236));
2345-
}
2346-
2347-
fn check(l: BigInt, u: BigInt) {
2348-
let mut rng = task_rng();
2349-
do 1000.times {
2350-
let n: BigInt = rng.gen_bigint_range(&l, &u);
2351-
assert!(n >= l);
2352-
assert!(n < u);
2353-
}
2354-
}
2355-
let l = BigInt::from_uint(403469000 + 2352);
2356-
let u = BigInt::from_uint(403469000 + 3513);
2357-
check( l.clone(), u.clone());
2358-
check(-l.clone(), u.clone());
2359-
check(-u.clone(), -l.clone());
2360-
}
2361-
2362-
#[test]
2363-
#[should_fail]
2364-
fn test_zero_rand_range() {
2365-
task_rng().gen_bigint_range(&IntConvertible::from_int(54),
2366-
&IntConvertible::from_int(54));
2367-
}
2368-
2369-
#[test]
2370-
#[should_fail]
2371-
fn test_negative_rand_range() {
2372-
let mut rng = task_rng();
2373-
let l = BigInt::from_uint(2352);
2374-
let u = BigInt::from_uint(3513);
2375-
// Switching u and l should fail:
2376-
let _n: BigInt = rng.gen_bigint_range(&u, &l);
2377-
}
23782240
}
23792241

23802242
#[cfg(test)]

branches/try2/src/libstd/str.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,8 +1107,8 @@ pub mod raw {
11071107
Some(limit) => (true, limit),
11081108
None => (false, 0)
11091109
};
1110-
while(((limited_count && ctr < limit) || !limited_count)
1111-
&& *(curr_ptr as *libc::c_char) != 0 as libc::c_char) {
1110+
while(*(curr_ptr as *libc::c_char) != 0 as libc::c_char
1111+
&& ((limited_count && ctr < limit) || !limited_count)) {
11121112
let env_pair = from_c_str(
11131113
curr_ptr as *libc::c_char);
11141114
result.push(env_pair);

branches/try2/src/libsyntax/parse/lexer.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,7 @@ fn next_token_inner(rdr: @mut StringReader) -> token::Token {
699699
'\\' => { c2 = '\\'; }
700700
'\'' => { c2 = '\''; }
701701
'"' => { c2 = '"'; }
702+
'0' => { c2 = '\x00'; }
702703
'x' => { c2 = scan_numeric_escape(rdr, 2u); }
703704
'u' => { c2 = scan_numeric_escape(rdr, 4u); }
704705
'U' => { c2 = scan_numeric_escape(rdr, 8u); }
@@ -738,6 +739,7 @@ fn next_token_inner(rdr: @mut StringReader) -> token::Token {
738739
'\'' => accum_str.push_char('\''),
739740
'"' => accum_str.push_char('"'),
740741
'\n' => consume_whitespace(rdr),
742+
'0' => accum_str.push_char('\x00'),
741743
'x' => {
742744
accum_str.push_char(scan_numeric_escape(rdr, 2u));
743745
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
pub fn main()
12+
{
13+
let all_nuls1 = "\0\x00\u0000\U00000000";
14+
let all_nuls2 = "\U00000000\u0000\x00\0";
15+
let all_nuls3 = "\u0000\U00000000\x00\0";
16+
let all_nuls4 = "\x00\u0000\0\U00000000";
17+
18+
// sizes for two should suffice
19+
assert_eq!(all_nuls1.len(), 4);
20+
assert_eq!(all_nuls2.len(), 4);
21+
22+
// string equality should pass between the strings
23+
assert_eq!(all_nuls1, all_nuls2);
24+
assert_eq!(all_nuls2, all_nuls3);
25+
assert_eq!(all_nuls3, all_nuls4);
26+
27+
// all extracted characters in all_nuls are equivalent to each other
28+
for c1 in all_nuls1.iter()
29+
{
30+
for c2 in all_nuls1.iter()
31+
{
32+
assert_eq!(c1,c2);
33+
}
34+
}
35+
36+
// testing equality between explicit character literals
37+
assert_eq!('\0', '\x00');
38+
assert_eq!('\u0000', '\x00');
39+
assert_eq!('\u0000', '\U00000000');
40+
41+
// NUL characters should make a difference
42+
assert!("Hello World" != "Hello \0World");
43+
assert!("Hello World" != "Hello World\0");
44+
}

0 commit comments

Comments
 (0)