Skip to content

Commit ba2f112

Browse files
committed
---
yaml --- r: 150799 b: refs/heads/try2 c: 8a4ffbf h: refs/heads/master i: 150797: cab5fe9 150795: 4750e9a 150791: 65cdfdc 150783: 8303ec4 v: v3
1 parent 0a96969 commit ba2f112

File tree

739 files changed

+5956
-5263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

739 files changed

+5956
-5263
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: d1eb0e393fb252edd8daa4977c07f30b7f203742
8+
refs/heads/try2: 8a4ffbf625774a5ebf210d2851f47338ed91bbfe
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/mk/docs.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ LIB_DOC_DEP_$(1) = $$(CRATEFILE_$(1)) $$(RSINPUTS_$(1))
269269
endif
270270

271271
$(2) += doc/$(1)/index.html
272+
doc/$(1)/index.html: CFG_COMPILER_HOST_TRIPLE = $(CFG_TARGET)
272273
doc/$(1)/index.html: $$(LIB_DOC_DEP_$(1))
273274
@$$(call E, rustdoc $$@)
274275
$$(Q)$$(RUSTDOC) --cfg dox --cfg stage2 $$<

branches/try2/mk/main.mk

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -349,25 +349,44 @@ EXTRAFLAGS_STAGE$(1) = $$(RUSTFLAGS_STAGE$(1))
349349

350350
CFGFLAG$(1)_T_$(2)_H_$(3) = stage$(1)
351351

352+
endef
353+
354+
# Same macro/variables as above, but defined in a separate loop so it can use
355+
# all the varibles above for all archs. The RPATH_VAR setup sometimes needs to
356+
# reach across triples to get things in order.
357+
define SREQ_CMDS
358+
359+
ifeq ($$(OSTYPE_$(3)),apple-darwin)
360+
RPATH_VAR$(1)_T_$(2)_H_$(3) := \
361+
DYLD_LIBRARY_PATH="$$$$DYLD_LIBRARY_PATH:$$(CURDIR)/$$(HLIB$(1)_H_$(3))"
362+
else
363+
RPATH_VAR$(1)_T_$(2)_H_$(3) := \
364+
LD_LIBRARY_PATH="$$$$LD_LIBRARY_PATH:$$(CURDIR)/$$(HLIB$(1)_H_$(3))"
365+
endif
366+
352367
# Pass --cfg stage0 only for the build->host part of stage0;
353368
# if you're building a cross config, the host->* parts are
354369
# effectively stage1, since it uses the just-built stage0.
370+
#
371+
# This logic is similar to how the LD_LIBRARY_PATH variable must
372+
# change be slightly different when doing cross compilations.
373+
# The build doesn't copy over all target libraries into
374+
# a new directory, so we need to point the library path at
375+
# the build directory where all the target libraries came
376+
# from (the stage0 build host). Otherwise the relative rpaths
377+
# inside of the rustc binary won't get resolved correctly.
355378
ifeq ($(1),0)
356379
ifneq ($(strip $(CFG_BUILD)),$(strip $(3)))
357380
CFGFLAG$(1)_T_$(2)_H_$(3) = stage1
358-
endif
359-
endif
360381

361-
ifdef CFG_DISABLE_RPATH
362382
ifeq ($$(OSTYPE_$(3)),apple-darwin)
363383
RPATH_VAR$(1)_T_$(2)_H_$(3) := \
364-
DYLD_LIBRARY_PATH="$$$$DYLD_LIBRARY_PATH:$$(CURDIR)/$$(HLIB$(1)_H_$(3))"
384+
DYLD_LIBRARY_PATH="$$$$DYLD_LIBRARY_PATH:$$(CURDIR)/$$(TLIB1_T_$(2)_H_$(CFG_BUILD))"
365385
else
366386
RPATH_VAR$(1)_T_$(2)_H_$(3) := \
367-
LD_LIBRARY_PATH="$$$$LD_LIBRARY_PATH:$$(CURDIR)/$$(HLIB$(1)_H_$(3))"
387+
LD_LIBRARY_PATH="$$$$LD_LIBRARY_PATH:$$(CURDIR)/$$(TLIB1_T_$(2)_H_$(CFG_BUILD))"
388+
endif
368389
endif
369-
else
370-
RPATH_VAR$(1)_T_$(2)_H_$(3) :=
371390
endif
372391

373392
STAGE$(1)_T_$(2)_H_$(3) := \
@@ -394,6 +413,11 @@ $(foreach build,$(CFG_HOST), \
394413
$(eval $(foreach stage,$(STAGES), \
395414
$(eval $(call SREQ,$(stage),$(target),$(build))))))))
396415

416+
$(foreach build,$(CFG_HOST), \
417+
$(eval $(foreach target,$(CFG_TARGET), \
418+
$(eval $(foreach stage,$(STAGES), \
419+
$(eval $(call SREQ_CMDS,$(stage),$(target),$(build))))))))
420+
397421
######################################################################
398422
# rustc-H-targets
399423
#

branches/try2/src/compiletest/runtest.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ use std::io::timer;
3131
use std::io;
3232
use std::os;
3333
use std::str;
34+
use std::strbuf::StrBuf;
3435
use std::task;
3536
use std::slice;
3637
use test::MetricMap;
@@ -328,10 +329,10 @@ fn run_debuginfo_test(config: &config, props: &TestProps, testfile: &Path) {
328329
}
329330

330331
let args = split_maybe_args(&config.target_rustcflags);
331-
let mut tool_path:~str = ~"";
332+
let mut tool_path = StrBuf::new();
332333
for arg in args.iter() {
333334
if arg.contains("android-cross-path=") {
334-
tool_path = arg.replace("android-cross-path=","");
335+
tool_path = StrBuf::from_str(arg.replace("android-cross-path=", ""));
335336
break;
336337
}
337338
}
@@ -348,7 +349,7 @@ fn run_debuginfo_test(config: &config, props: &TestProps, testfile: &Path) {
348349
let gdb_path = tool_path.append("/bin/arm-linux-androideabi-gdb");
349350
let procsrv::Result{ out, err, status }=
350351
procsrv::run("",
351-
gdb_path,
352+
gdb_path.as_slice(),
352353
debugger_opts.as_slice(),
353354
vec!((~"",~"")),
354355
None)
@@ -451,7 +452,7 @@ fn run_debuginfo_test(config: &config, props: &TestProps, testfile: &Path) {
451452
let options_to_remove = [~"-O", ~"-g", ~"--debuginfo"];
452453
let new_options = split_maybe_args(options).move_iter()
453454
.filter(|x| !options_to_remove.contains(x))
454-
.collect::<~[~str]>()
455+
.collect::<Vec<~str>>()
455456
.connect(" ");
456457
Some(new_options)
457458
}

branches/try2/src/doc/guide-ffi.md

Lines changed: 71 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ snappy includes a C interface (documented in
1111
The following is a minimal example of calling a foreign function which will
1212
compile if snappy is installed:
1313

14-
~~~~ {.ignore}
14+
~~~~
1515
extern crate libc;
1616
use libc::size_t;
1717
1818
#[link(name = "snappy")]
19+
# #[cfg(ignore_this)]
1920
extern {
2021
fn snappy_max_compressed_length(source_length: size_t) -> size_t;
2122
}
23+
# unsafe fn snappy_max_compressed_length(a: size_t) -> size_t { a }
2224
2325
fn main() {
2426
let x = unsafe { snappy_max_compressed_length(100) };
@@ -78,7 +80,11 @@ vectors as pointers to memory. Rust's vectors are guaranteed to be a contiguous
7880
length is number of elements currently contained, and the capacity is the total size in elements of
7981
the allocated memory. The length is less than or equal to the capacity.
8082

81-
~~~~ {.ignore}
83+
~~~~
84+
# extern crate libc;
85+
# use libc::{c_int, size_t};
86+
# unsafe fn snappy_validate_compressed_buffer(_: *u8, _: size_t) -> c_int { 0 }
87+
# fn main() {}
8288
pub fn validate_compressed_buffer(src: &[u8]) -> bool {
8389
unsafe {
8490
snappy_validate_compressed_buffer(src.as_ptr(), src.len() as size_t) == 0
@@ -98,14 +104,20 @@ required capacity to hold the compressed output. The vector can then be passed t
98104
`snappy_compress` function as an output parameter. An output parameter is also passed to retrieve
99105
the true length after compression for setting the length.
100106

101-
~~~~ {.ignore}
102-
pub fn compress(src: &[u8]) -> ~[u8] {
107+
~~~~
108+
# extern crate libc;
109+
# use libc::{size_t, c_int};
110+
# unsafe fn snappy_compress(a: *u8, b: size_t, c: *mut u8,
111+
# d: *mut size_t) -> c_int { 0 }
112+
# unsafe fn snappy_max_compressed_length(a: size_t) -> size_t { a }
113+
# fn main() {}
114+
pub fn compress(src: &[u8]) -> Vec<u8> {
103115
unsafe {
104116
let srclen = src.len() as size_t;
105117
let psrc = src.as_ptr();
106118
107119
let mut dstlen = snappy_max_compressed_length(srclen);
108-
let mut dst = slice::with_capacity(dstlen as uint);
120+
let mut dst = Vec::with_capacity(dstlen as uint);
109121
let pdst = dst.as_mut_ptr();
110122
111123
snappy_compress(psrc, srclen, pdst, &mut dstlen);
@@ -118,16 +130,26 @@ pub fn compress(src: &[u8]) -> ~[u8] {
118130
Decompression is similar, because snappy stores the uncompressed size as part of the compression
119131
format and `snappy_uncompressed_length` will retrieve the exact buffer size required.
120132

121-
~~~~ {.ignore}
122-
pub fn uncompress(src: &[u8]) -> Option<~[u8]> {
133+
~~~~
134+
# extern crate libc;
135+
# use libc::{size_t, c_int};
136+
# unsafe fn snappy_uncompress(compressed: *u8,
137+
# compressed_length: size_t,
138+
# uncompressed: *mut u8,
139+
# uncompressed_length: *mut size_t) -> c_int { 0 }
140+
# unsafe fn snappy_uncompressed_length(compressed: *u8,
141+
# compressed_length: size_t,
142+
# result: *mut size_t) -> c_int { 0 }
143+
# fn main() {}
144+
pub fn uncompress(src: &[u8]) -> Option<Vec<u8>> {
123145
unsafe {
124146
let srclen = src.len() as size_t;
125147
let psrc = src.as_ptr();
126148
127149
let mut dstlen: size_t = 0;
128150
snappy_uncompressed_length(psrc, srclen, &mut dstlen);
129151
130-
let mut dst = slice::with_capacity(dstlen as uint);
152+
let mut dst = Vec::with_capacity(dstlen as uint);
131153
let pdst = dst.as_mut_ptr();
132154
133155
if snappy_uncompress(psrc, srclen, pdst, &mut dstlen) == 0 {
@@ -187,16 +209,19 @@ A basic example is:
187209

188210
Rust code:
189211

190-
~~~~ {.ignore}
212+
~~~~
191213
extern fn callback(a:i32) {
192214
println!("I'm called from C with value {0}", a);
193215
}
194216
195217
#[link(name = "extlib")]
218+
# #[cfg(ignore)]
196219
extern {
197-
fn register_callback(cb: extern "C" fn(i32)) -> i32;
220+
fn register_callback(cb: extern fn(i32)) -> i32;
198221
fn trigger_callback();
199222
}
223+
# unsafe fn register_callback(cb: extern fn(i32)) -> i32 { 0 }
224+
# unsafe fn trigger_callback() { }
200225
201226
fn main() {
202227
unsafe {
@@ -240,33 +265,39 @@ referenced Rust object.
240265

241266
Rust code:
242267

243-
~~~~ {.ignore}
268+
~~~~
244269
245270
struct RustObject {
246271
a: i32,
247272
// other members
248273
}
249274
250-
extern fn callback(target: *RustObject, a:i32) {
275+
extern fn callback(target: *mut RustObject, a:i32) {
251276
println!("I'm called from C with value {0}", a);
252-
(*target).a = a; // Update the value in RustObject with the value received from the callback
277+
unsafe {
278+
// Update the value in RustObject with the value received from the callback
279+
(*target).a = a;
280+
}
253281
}
254282
255283
#[link(name = "extlib")]
284+
# #[cfg(ignore)]
256285
extern {
257-
fn register_callback(target: *RustObject, cb: extern "C" fn(*RustObject, i32)) -> i32;
286+
fn register_callback(target: *mut RustObject,
287+
cb: extern fn(*mut RustObject, i32)) -> i32;
258288
fn trigger_callback();
259289
}
290+
# unsafe fn register_callback(a: *mut RustObject,
291+
# b: extern fn(*mut RustObject, i32)) -> i32 { 0 }
292+
# unsafe fn trigger_callback() {}
260293
261294
fn main() {
262295
// Create the object that will be referenced in the callback
263-
let rust_object = ~RustObject{a: 5, ...};
296+
let mut rust_object = ~RustObject{ a: 5 };
264297
265298
unsafe {
266-
// Gets a raw pointer to the object
267-
let target_addr:*RustObject = ptr::to_unsafe_ptr(rust_object);
268-
register_callback(target_addr, callback);
269-
trigger_callback(); // Triggers the callback
299+
register_callback(&mut *rust_object, callback);
300+
trigger_callback();
270301
}
271302
}
272303
~~~~
@@ -403,13 +434,15 @@ Foreign APIs often export a global variable which could do something like track
403434
global state. In order to access these variables, you declare them in `extern`
404435
blocks with the `static` keyword:
405436

406-
~~~{.ignore}
437+
~~~
407438
extern crate libc;
408439
409440
#[link(name = "readline")]
441+
# #[cfg(ignore)]
410442
extern {
411443
static rl_readline_version: libc::c_int;
412444
}
445+
# static rl_readline_version: libc::c_int = 0;
413446
414447
fn main() {
415448
println!("You have readline version {} installed.",
@@ -421,21 +454,23 @@ Alternatively, you may need to alter global state provided by a foreign
421454
interface. To do this, statics can be declared with `mut` so rust can mutate
422455
them.
423456

424-
~~~{.ignore}
457+
~~~
425458
extern crate libc;
426459
use std::ptr;
427460
428461
#[link(name = "readline")]
462+
# #[cfg(ignore)]
429463
extern {
430464
static mut rl_prompt: *libc::c_char;
431465
}
466+
# static mut rl_prompt: *libc::c_char = 0 as *libc::c_char;
432467
433468
fn main() {
434-
do "[my-awesome-shell] $".as_c_str |buf| {
469+
"[my-awesome-shell] $".with_c_str(|buf| {
435470
unsafe { rl_prompt = buf; }
436471
// get a line, process it
437472
unsafe { rl_prompt = ptr::null(); }
438-
}
473+
});
439474
}
440475
~~~
441476

@@ -496,3 +531,16 @@ NUL-terminated string for interoperability with C, you should use the `c_str::to
496531

497532
The standard library includes type aliases and function definitions for the C standard library in
498533
the `libc` module, and Rust links against `libc` and `libm` by default.
534+
535+
# The "nullable pointer optimization"
536+
537+
Certain types are defined to not be `null`. This includes references (`&T`,
538+
`&mut T`), owning pointers (`~T`), and function pointers (`extern "abi"
539+
fn()`). When interfacing with C, pointers that might be null are often used.
540+
As a special case, a generic `enum` that contains exactly two variants, one of
541+
which contains no data and the other containing a single field, is eligible
542+
for the "nullable pointer optimization". When such an enum is instantiated
543+
with one of the non-nullable types, it is represented as a single pointer,
544+
and the non-data variant is represented as the null pointer. So
545+
`Option<extern "C" fn(c_int) -> c_int>` is how one represents a nullable
546+
function pointer using the C ABI.

branches/try2/src/doc/guide-macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ As an example, `loop` and `for-loop` labels (discussed in the lifetimes guide)
407407
will not clash. The following code will print "Hello!" only once:
408408

409409
~~~
410-
#[feature(macro_rules)];
410+
#![feature(macro_rules)]
411411
412412
macro_rules! loop_x (
413413
($e: expr) => (

branches/try2/src/doc/guide-pointers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ struct.
250250
# Managed Pointers
251251

252252
> **Note**: the `@` form of managed pointers is deprecated and behind a
253-
> feature gate (it requires a `#[feature(managed_pointers)];` attribute on
253+
> feature gate (it requires a `#![feature(managed_pointers)]` attribute on
254254
> the crate root; remember the semicolon!). There are replacements, currently
255255
> there is `std::rc::Rc` and `std::gc::Gc` for shared ownership via reference
256256
> counting and garbage collection respectively.

0 commit comments

Comments
 (0)