auto merge of #1567 : pcwalton/servo/quicksort-selector-matching, r=larsbergstrom

17% improvement in selector matching on the rainbow page.

r? @larsbergstrom
This commit is contained in:
bors-servo 2014-01-30 04:01:44 -08:00
commit 0777f211df
3 changed files with 112 additions and 7 deletions

View file

@ -9,6 +9,7 @@ use std::str;
use std::to_bytes; use std::to_bytes;
use servo_util::namespace; use servo_util::namespace;
use servo_util::sort;
use media_queries::{Device, Screen}; use media_queries::{Device, Screen};
use node::{TElement, TNode}; use node::{TElement, TNode};
@ -147,13 +148,7 @@ impl SelectorMap {
}); });
// Sort only the rules we just added. // Sort only the rules we just added.
matching_rules_list.mut_slice_from(init_len).sort_by(|a, b| { sort::quicksort(matching_rules_list.mut_slice_from(init_len));
if a < b {
Less
} else {
Greater
}
});
} }
fn get_matching_rules_from_hash<E:TElement, fn get_matching_rules_from_hash<E:TElement,
@ -495,6 +490,15 @@ impl Ord for Rule {
} }
} }
impl Eq for Rule {
#[inline]
fn eq(&self, other: &Rule) -> bool {
let this_rank = (self.specificity, self.source_order);
let other_rank = (other.specificity, other.source_order);
this_rank == other_rank
}
}
fn matches_compound_selector<E:TElement,N:TNode<E>>(selector: &CompoundSelector, element: &N) fn matches_compound_selector<E:TElement,N:TNode<E>>(selector: &CompoundSelector, element: &N)
-> bool { -> bool {
if !selector.simple_selectors.iter().all(|simple_selector| { if !selector.simple_selectors.iter().all(|simple_selector| {

100
src/components/util/sort.rs Normal file
View file

@ -0,0 +1,100 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! In-place sorting.
fn quicksort_helper<T:Ord + Eq>(arr: &mut [T], left: int, right: int) {
if right <= left {
return
}
let mut i: int = left - 1;
let mut j: int = right;
let mut p: int = i;
let mut q: int = j;
unsafe {
let v: *mut T = &mut arr[right];
loop {
i += 1;
while arr[i] < (*v) {
i += 1
}
j -= 1;
while (*v) < arr[j] {
if j == left {
break
}
j -= 1;
}
if i >= j {
break
}
arr.swap(i as uint, j as uint);
if arr[i] == (*v) {
p += 1;
arr.swap(p as uint, i as uint)
}
if (*v) == arr[j] {
q -= 1;
arr.swap(j as uint, q as uint)
}
}
}
arr.swap(i as uint, right as uint);
j = i - 1;
i += 1;
let mut k: int = left;
while k < p {
arr.swap(k as uint, j as uint);
k += 1;
j -= 1;
assert!(k < arr.len() as int);
}
k = right - 1;
while k > q {
arr.swap(i as uint, k as uint);
k -= 1;
i += 1;
assert!(k != 0);
}
quicksort_helper(arr, left, j);
quicksort_helper(arr, i, right);
}
/// An in-place quicksort.
///
/// The algorithm is from Sedgewick and Bentley, "Quicksort is Optimal":
/// http://www.cs.princeton.edu/~rs/talks/QuicksortIsOptimal.pdf
pub fn quicksort<T:Ord + Eq>(arr: &mut [T]) {
if arr.len() <= 1 {
return
}
let len = arr.len();
quicksort_helper(arr, 0, (len - 1) as int);
}
#[cfg(test)]
pub mod test {
use std::rand::{Rng, task_rng};
use std::rand;
use sort;
#[test]
pub fn random() {
let mut rng = rand::task_rng();
for _ in range(0, 50000) {
let len: uint = rng.gen();
let mut v: ~[int] = rng.gen_vec((len % 32) + 1);
sort::quicksort(v);
for i in range(0, v.len() - 1) {
assert!(v[i] <= v[i + 1])
}
}
}
}

View file

@ -22,3 +22,4 @@ pub mod io;
pub mod task; pub mod task;
pub mod workqueue; pub mod workqueue;
pub mod namespace; pub mod namespace;
pub mod sort;