Skip to content

Commit f9c9447

Browse files
committed
---
yaml --- r: 212031 b: refs/heads/tmp c: c516eee h: refs/heads/master i: 212029: 1cb6c05 212027: a18231e 212023: 88aba40 212015: 7c2de22 211999: bee6436 211967: 1401657 v: v3
1 parent cedaa68 commit f9c9447

File tree

7 files changed

+57
-336
lines changed

7 files changed

+57
-336
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3232
refs/heads/beta: 62e70d35be3fe532c26a400b499c58a18f18dd3a
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
35-
refs/heads/tmp: 42a59aef710c66e17627e00cc4d00cf29a7b46ed
35+
refs/heads/tmp: c516eee503ae643ead9553fed70528230feb2b1f
3636
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3737
refs/tags/homu-tmp: b77d60adb019bb5de05e884a99f3290ec4694137
3838
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412

branches/tmp/CONTRIBUTING.md

Lines changed: 2 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ feature. We use the 'fork and pull' model described there.
8484
Please make pull requests against the `master` branch.
8585

8686
All pull requests are reviewed by another person. We have a bot,
87-
@rust-highfive, that will automatically assign a random person to review your
88-
request.
87+
@rust-highfive, that will automatically assign a random person to review your request.
8988

9089
If you want to request that a specific person reviews your pull request,
9190
you can add an `r?` to the message. For example, Steve usually reviews
@@ -125,10 +124,6 @@ To save @bors some work, and to get small changes through more quickly, when
125124
the other rollup-eligible patches too, and they'll get tested and merged at
126125
the same time.
127126

128-
To find documentation-related issues, sort by the [A-docs label][adocs].
129-
130-
[adocs]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AA-docs
131-
132127
## Issue Triage
133128

134129
Sometimes, an issue will stay open, even though the bug has been fixed. And
@@ -137,40 +132,8 @@ meantime.
137132

138133
It can be helpful to go through older bug reports and make sure that they are
139134
still valid. Load up an older issue, double check that it's still true, and
140-
leave a comment letting us know if it is or is not. The [least recently
141-
updated sort][lru] is good for finding issues like this.
142-
143-
Contributors with sufficient permissions on the Rust repo can help by adding
144-
labels to triage issues:
145-
146-
* Yellow, **A**-prefixed labels state which **area** of the project an issue
147-
relates to.
148-
149-
* Magenta, **B**-prefixed labels identify bugs which **belong** elsewhere.
150-
151-
* Green, **E**-prefixed labels explain the level of **experience** necessary
152-
to fix the issue.
153-
154-
* Red, **I**-prefixed labels indicate the **importance** of the issue. The
155-
[I-nominated][inom] label indicates that an issue has been nominated for
156-
prioritizing at the next triage meeting.
157-
158-
* Orange, **P**-prefixed labels indicate a bug's **priority**. These labels
159-
are only assigned during triage meetings, and replace the [I-nominated][inom]
160-
label.
161-
162-
* Blue, **T**-prefixed bugs denote which **team** the issue belongs to.
163-
164-
* Dark blue, **beta-** labels track changes which need to be backported into
165-
the beta branches.
166-
167-
* The purple **metabug** label marks lists of bugs collected by other
168-
categories.
169-
170-
If you're looking for somewhere to start, check out the [E-easy][eeasy] tag.
135+
leave a comment letting us know if it is or is not. The [least recently updated sort][lru] is good for finding issues like this.
171136

172-
[inom]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AI-nominated
173-
[eeasy]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy
174137
[lru]: https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-asc
175138

176139
## Out-of-tree Contributions

branches/tmp/src/libcollections/binary_heap.rs

Lines changed: 25 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
use core::prelude::*;
154154

155155
use core::iter::{FromIterator};
156-
use core::mem::swap;
156+
use core::mem::{zeroed, replace, swap};
157157
use core::ptr;
158158

159159
use slice;
@@ -484,42 +484,46 @@ impl<T: Ord> BinaryHeap<T> {
484484

485485
// The implementations of sift_up and sift_down use unsafe blocks in
486486
// order to move an element out of the vector (leaving behind a
487-
// hole), shift along the others and move the removed element back into the
488-
// vector at the final location of the hole.
489-
// The `Hole` type is used to represent this, and make sure
490-
// the hole is filled back at the end of its scope, even on panic.
491-
// Using a hole reduces the constant factor compared to using swaps,
492-
// which involves twice as many moves.
493-
fn sift_up(&mut self, start: usize, pos: usize) {
487+
// zeroed element), shift along the others and move it back into the
488+
// vector over the junk element. This reduces the constant factor
489+
// compared to using swaps, which involves twice as many moves.
490+
fn sift_up(&mut self, start: usize, mut pos: usize) {
494491
unsafe {
495-
// Take out the value at `pos` and create a hole.
496-
let mut hole = Hole::new(&mut self.data, pos);
492+
let new = replace(&mut self.data[pos], zeroed());
497493

498-
while hole.pos() > start {
499-
let parent = (hole.pos() - 1) / 2;
500-
if hole.removed() <= hole.get(parent) { break }
501-
hole.move_to(parent);
494+
while pos > start {
495+
let parent = (pos - 1) >> 1;
496+
497+
if new <= self.data[parent] { break; }
498+
499+
let x = replace(&mut self.data[parent], zeroed());
500+
ptr::write(&mut self.data[pos], x);
501+
pos = parent;
502502
}
503+
ptr::write(&mut self.data[pos], new);
503504
}
504505
}
505506

506507
fn sift_down_range(&mut self, mut pos: usize, end: usize) {
507-
let start = pos;
508508
unsafe {
509-
let mut hole = Hole::new(&mut self.data, pos);
509+
let start = pos;
510+
let new = replace(&mut self.data[pos], zeroed());
511+
510512
let mut child = 2 * pos + 1;
511513
while child < end {
512514
let right = child + 1;
513-
if right < end && !(hole.get(child) > hole.get(right)) {
515+
if right < end && !(self.data[child] > self.data[right]) {
514516
child = right;
515517
}
516-
hole.move_to(child);
517-
child = 2 * hole.pos() + 1;
518+
let x = replace(&mut self.data[child], zeroed());
519+
ptr::write(&mut self.data[pos], x);
520+
pos = child;
521+
child = 2 * pos + 1;
518522
}
519523

520-
pos = hole.pos;
524+
ptr::write(&mut self.data[pos], new);
525+
self.sift_up(start, pos);
521526
}
522-
self.sift_up(start, pos);
523527
}
524528

525529
fn sift_down(&mut self, pos: usize) {
@@ -550,73 +554,6 @@ impl<T: Ord> BinaryHeap<T> {
550554
pub fn clear(&mut self) { self.drain(); }
551555
}
552556

553-
/// Hole represents a hole in a slice i.e. an index without valid value
554-
/// (because it was moved from or duplicated).
555-
/// In drop, `Hole` will restore the slice by filling the hole
556-
/// position with the value that was originally removed.
557-
struct Hole<'a, T: 'a> {
558-
data: &'a mut [T],
559-
/// `elt` is always `Some` from new until drop.
560-
elt: Option<T>,
561-
pos: usize,
562-
}
563-
564-
impl<'a, T> Hole<'a, T> {
565-
/// Create a new Hole at index `pos`.
566-
fn new(data: &'a mut [T], pos: usize) -> Self {
567-
unsafe {
568-
let elt = ptr::read(&data[pos]);
569-
Hole {
570-
data: data,
571-
elt: Some(elt),
572-
pos: pos,
573-
}
574-
}
575-
}
576-
577-
#[inline(always)]
578-
fn pos(&self) -> usize { self.pos }
579-
580-
/// Return a reference to the element removed
581-
#[inline(always)]
582-
fn removed(&self) -> &T {
583-
self.elt.as_ref().unwrap()
584-
}
585-
586-
/// Return a reference to the element at `index`.
587-
///
588-
/// Panics if the index is out of bounds.
589-
///
590-
/// Unsafe because index must not equal pos.
591-
#[inline(always)]
592-
unsafe fn get(&self, index: usize) -> &T {
593-
debug_assert!(index != self.pos);
594-
&self.data[index]
595-
}
596-
597-
/// Move hole to new location
598-
///
599-
/// Unsafe because index must not equal pos.
600-
#[inline(always)]
601-
unsafe fn move_to(&mut self, index: usize) {
602-
debug_assert!(index != self.pos);
603-
let index_ptr: *const _ = &self.data[index];
604-
let hole_ptr = &mut self.data[self.pos];
605-
ptr::copy_nonoverlapping(index_ptr, hole_ptr, 1);
606-
self.pos = index;
607-
}
608-
}
609-
610-
impl<'a, T> Drop for Hole<'a, T> {
611-
fn drop(&mut self) {
612-
// fill the hole again
613-
unsafe {
614-
let pos = self.pos;
615-
ptr::write(&mut self.data[pos], self.elt.take().unwrap());
616-
}
617-
}
618-
}
619-
620557
/// `BinaryHeap` iterator.
621558
#[stable(feature = "rust1", since = "1.0.0")]
622559
pub struct Iter <'a, T: 'a> {

branches/tmp/src/libcore/cell.rs

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
#![stable(feature = "rust1", since = "1.0.0")]
144144

145145
use clone::Clone;
146-
use cmp::{PartialEq, Eq};
146+
use cmp::PartialEq;
147147
use default::Default;
148148
use marker::{Copy, Send, Sync, Sized};
149149
use ops::{Deref, DerefMut, Drop};
@@ -263,9 +263,6 @@ impl<T:PartialEq + Copy> PartialEq for Cell<T> {
263263
}
264264
}
265265

266-
#[stable(feature = "cell_eq", since = "1.2.0")]
267-
impl<T:Eq + Copy> Eq for Cell<T> {}
268-
269266
/// A mutable memory location with dynamically checked borrow rules
270267
///
271268
/// See the [module-level documentation](index.html) for more.
@@ -276,7 +273,7 @@ pub struct RefCell<T: ?Sized> {
276273
}
277274

278275
/// An enumeration of values returned from the `state` method on a `RefCell<T>`.
279-
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
276+
#[derive(Copy, Clone, PartialEq, Debug)]
280277
#[unstable(feature = "std_misc")]
281278
pub enum BorrowState {
282279
/// The cell is currently being read, there is at least one active `borrow`.
@@ -482,9 +479,6 @@ impl<T: ?Sized + PartialEq> PartialEq for RefCell<T> {
482479
}
483480
}
484481

485-
#[stable(feature = "cell_eq", since = "1.2.0")]
486-
impl<T: ?Sized + Eq> Eq for RefCell<T> {}
487-
488482
struct BorrowRef<'b> {
489483
_borrow: &'b Cell<BorrowFlag>,
490484
}
@@ -551,13 +545,30 @@ impl<'b, T: ?Sized> Deref for Ref<'b, T> {
551545
///
552546
/// A `Clone` implementation would interfere with the widespread
553547
/// use of `r.borrow().clone()` to clone the contents of a `RefCell`.
548+
#[deprecated(since = "1.2.0", reason = "moved to a `Ref::clone` associated function")]
554549
#[unstable(feature = "core",
555550
reason = "likely to be moved to a method, pending language changes")]
556551
#[inline]
557552
pub fn clone_ref<'b, T:Clone>(orig: &Ref<'b, T>) -> Ref<'b, T> {
558-
Ref {
559-
_value: orig._value,
560-
_borrow: orig._borrow.clone(),
553+
Ref::clone(orig)
554+
}
555+
556+
impl<'b, T: ?Sized> Ref<'b, T> {
557+
/// Copies a `Ref`.
558+
///
559+
/// The `RefCell` is already immutably borrowed, so this cannot fail.
560+
///
561+
/// This is an associated function that needs to be used as `Ref::clone(...)`.
562+
/// A `Clone` implementation or a method would interfere with the widespread
563+
/// use of `r.borrow().clone()` to clone the contents of a `RefCell`.
564+
#[unstable(feature = "cell_extras",
565+
reason = "likely to be moved to a method, pending language changes")]
566+
#[inline]
567+
pub fn clone(orig: &Ref<'b, T>) -> Ref<'b, T> {
568+
Ref {
569+
_value: orig._value,
570+
_borrow: orig._borrow.clone(),
571+
}
561572
}
562573
}
563574

branches/tmp/src/libcoretest/cell.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,13 @@ fn discard_doesnt_unborrow() {
115115
}
116116

117117
#[test]
118-
fn clone_ref_updates_flag() {
118+
fn ref_clone_updates_flag() {
119119
let x = RefCell::new(0);
120120
{
121121
let b1 = x.borrow();
122122
assert_eq!(x.borrow_state(), BorrowState::Reading);
123123
{
124-
let _b2 = clone_ref(&b1);
124+
let _b2 = Ref::clone(&b1);
125125
assert_eq!(x.borrow_state(), BorrowState::Reading);
126126
}
127127
assert_eq!(x.borrow_state(), BorrowState::Reading);

0 commit comments

Comments
 (0)