mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Auto merge of #18386 - bholley:unchecked_cssom_get, r=upsuper
Bypass the lock in get_property_value This measurably improves performance - see https://bugzilla.mozilla.org/show_bug.cgi?id=1355599#c21 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18386) <!-- Reviewable:end -->
This commit is contained in:
commit
e3568ba07a
2 changed files with 29 additions and 3 deletions
|
@ -176,6 +176,13 @@ impl<T> Locked<T> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Access the data for reading without verifying the lock. Use with caution.
|
||||
#[cfg(feature = "gecko")]
|
||||
pub unsafe fn read_unchecked<'a>(&'a self) -> &'a T {
|
||||
let ptr = self.data.get();
|
||||
&*ptr
|
||||
}
|
||||
|
||||
/// Access the data for writing.
|
||||
pub fn write_with<'a>(&'a self, guard: &'a mut SharedRwLockWriteGuard) -> &'a mut T {
|
||||
assert!(self.same_lock_as(&guard.0),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue