mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
276 lines
7.4 KiB
276 lines
7.4 KiB
2 years ago
|
use std::cell::Cell;
|
||
|
use std::cmp::Ordering;
|
||
|
use std::fmt::{self, Debug, Display};
|
||
|
use std::hash::{Hash, Hasher};
|
||
|
use std::marker::PhantomData;
|
||
|
use std::ops::Deref;
|
||
|
use std::ptr::{self, addr_of_mut, NonNull};
|
||
|
use std::rc::Rc;
|
||
|
|
||
|
use crate::internals::GcBox;
|
||
|
use crate::trace::{Finalize, Trace};
|
||
|
use crate::{finalizer_safe, Allocator};
|
||
|
|
||
|
// Technically, this function is safe, since we're just modifying the address of a pointer without
|
||
|
// dereferencing it.
|
||
|
pub(crate) fn set_data_ptr<T: ?Sized, U>(mut ptr: *mut T, data: *mut U) -> *mut T {
|
||
|
// SAFETY: this should be safe as ptr must be a valid nonnull
|
||
|
unsafe {
|
||
|
ptr::write(addr_of_mut!(ptr).cast::<*mut u8>(), data.cast::<u8>());
|
||
|
}
|
||
|
ptr
|
||
|
}
|
||
|
|
||
|
/// A garbage-collected pointer type over an immutable value.
|
||
|
pub struct Gc<T: Trace + ?Sized + 'static> {
|
||
|
pub(crate) inner_ptr: Cell<NonNull<GcBox<T>>>,
|
||
|
pub(crate) marker: PhantomData<Rc<T>>,
|
||
|
}
|
||
|
|
||
|
impl<T: Trace> Gc<T> {
|
||
|
/// Constructs a new `Gc<T>` with the given value.
|
||
|
pub fn new(value: T) -> Self {
|
||
|
// Create GcBox and allocate it to heap.
|
||
|
//
|
||
|
// Note: Allocator can cause Collector to run
|
||
|
let inner_ptr = Allocator::allocate(GcBox::new(value));
|
||
|
// SAFETY: inner_ptr was just allocated, so it must be a valid value that implements [`Trace`]
|
||
|
unsafe { (*inner_ptr.as_ptr()).value().unroot() }
|
||
|
let gc = Self {
|
||
|
inner_ptr: Cell::new(inner_ptr),
|
||
|
marker: PhantomData,
|
||
|
};
|
||
|
gc.set_root();
|
||
|
gc
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> Gc<T> {
|
||
|
/// Returns `true` if the two `Gc`s point to the same allocation.
|
||
|
pub fn ptr_eq(this: &Self, other: &Self) -> bool {
|
||
|
GcBox::ptr_eq(this.inner(), other.inner())
|
||
|
}
|
||
|
|
||
|
/// Will return a new rooted `Gc` from a `GcBox` pointer
|
||
|
pub(crate) fn from_ptr(ptr: NonNull<GcBox<T>>) -> Self {
|
||
|
// SAFETY: the value provided as a pointer MUST be a valid GcBox.
|
||
|
unsafe {
|
||
|
ptr.as_ref().root_inner();
|
||
|
let gc = Self {
|
||
|
inner_ptr: Cell::new(ptr),
|
||
|
marker: PhantomData,
|
||
|
};
|
||
|
gc.set_root();
|
||
|
gc
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Returns the given pointer with its root bit cleared.
|
||
|
pub(crate) unsafe fn clear_root_bit<T: ?Sized + Trace>(
|
||
|
ptr: NonNull<GcBox<T>>,
|
||
|
) -> NonNull<GcBox<T>> {
|
||
|
let ptr = ptr.as_ptr();
|
||
|
let data = ptr.cast::<u8>();
|
||
|
let addr = data as isize;
|
||
|
let ptr = set_data_ptr(ptr, data.wrapping_offset((addr & !1) - addr));
|
||
|
// SAFETY: ptr must be a non null value
|
||
|
unsafe { NonNull::new_unchecked(ptr) }
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> Gc<T> {
|
||
|
fn rooted(&self) -> bool {
|
||
|
self.inner_ptr.get().as_ptr().cast::<u8>() as usize & 1 != 0
|
||
|
}
|
||
|
|
||
|
pub(crate) fn set_root(&self) {
|
||
|
let ptr = self.inner_ptr.get().as_ptr();
|
||
|
let data = ptr.cast::<u8>();
|
||
|
let addr = data as isize;
|
||
|
let ptr = set_data_ptr(ptr, data.wrapping_offset((addr | 1) - addr));
|
||
|
// SAFETY: ptr must be a non null value.
|
||
|
unsafe {
|
||
|
self.inner_ptr.set(NonNull::new_unchecked(ptr));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn clear_root(&self) {
|
||
|
// SAFETY: inner_ptr must be a valid non-null pointer to a live GcBox.
|
||
|
unsafe {
|
||
|
self.inner_ptr.set(clear_root_bit(self.inner_ptr.get()));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
pub(crate) fn inner_ptr(&self) -> NonNull<GcBox<T>> {
|
||
|
assert!(finalizer_safe());
|
||
|
// SAFETY: inner_ptr must be a live GcBox. Calling this on a dropped GcBox
|
||
|
// can result in Undefined Behavior.
|
||
|
unsafe { clear_root_bit(self.inner_ptr.get()) }
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
fn inner(&self) -> &GcBox<T> {
|
||
|
// SAFETY: Please see Gc::inner_ptr()
|
||
|
unsafe { self.inner_ptr().as_ref() }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> Finalize for Gc<T> {}
|
||
|
|
||
|
// SAFETY: `Gc` maintains it's own rootedness and implements all methods of
|
||
|
// Trace. It is not possible to root an already rooted `Gc` and vice versa.
|
||
|
unsafe impl<T: Trace + ?Sized> Trace for Gc<T> {
|
||
|
#[inline]
|
||
|
unsafe fn trace(&self) {
|
||
|
// SAFETY: Inner must be live and allocated GcBox.
|
||
|
unsafe {
|
||
|
self.inner().trace_inner();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
unsafe fn weak_trace(&self) {
|
||
|
self.inner().weak_trace_inner();
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
unsafe fn root(&self) {
|
||
|
assert!(!self.rooted(), "Can't double-root a Gc<T>");
|
||
|
// Try to get inner before modifying our state. Inner may be
|
||
|
// inaccessible due to this method being invoked during the sweeping
|
||
|
// phase, and we don't want to modify our state before panicking.
|
||
|
self.inner().root_inner();
|
||
|
self.set_root();
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
unsafe fn unroot(&self) {
|
||
|
assert!(self.rooted(), "Can't double-unroot a Gc<T>");
|
||
|
// Try to get inner before modifying our state. Inner may be
|
||
|
// inaccessible due to this method being invoked during the sweeping
|
||
|
// phase, and we don't want to modify our state before panicking.
|
||
|
self.inner().unroot_inner();
|
||
|
self.clear_root();
|
||
|
}
|
||
|
|
||
|
#[inline]
|
||
|
fn run_finalizer(&self) {
|
||
|
Finalize::finalize(self);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> Clone for Gc<T> {
|
||
|
#[inline]
|
||
|
fn clone(&self) -> Self {
|
||
|
Self::from_ptr(self.inner_ptr())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> Deref for Gc<T> {
|
||
|
type Target = T;
|
||
|
|
||
|
#[inline]
|
||
|
fn deref(&self) -> &T {
|
||
|
self.inner().value()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> Drop for Gc<T> {
|
||
|
#[inline]
|
||
|
fn drop(&mut self) {
|
||
|
// If this pointer was a root, we should unroot it.
|
||
|
if self.rooted() {
|
||
|
self.inner().unroot_inner();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + Default> Default for Gc<T> {
|
||
|
#[inline]
|
||
|
fn default() -> Self {
|
||
|
Self::new(Default::default())
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[allow(clippy::inline_always)]
|
||
|
impl<T: Trace + ?Sized + PartialEq> PartialEq for Gc<T> {
|
||
|
#[inline(always)]
|
||
|
fn eq(&self, other: &Self) -> bool {
|
||
|
**self == **other
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized + Eq> Eq for Gc<T> {}
|
||
|
|
||
|
#[allow(clippy::inline_always)]
|
||
|
impl<T: Trace + ?Sized + PartialOrd> PartialOrd for Gc<T> {
|
||
|
#[inline(always)]
|
||
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
||
|
(**self).partial_cmp(&**other)
|
||
|
}
|
||
|
|
||
|
#[inline(always)]
|
||
|
fn lt(&self, other: &Self) -> bool {
|
||
|
**self < **other
|
||
|
}
|
||
|
|
||
|
#[inline(always)]
|
||
|
fn le(&self, other: &Self) -> bool {
|
||
|
**self <= **other
|
||
|
}
|
||
|
|
||
|
#[inline(always)]
|
||
|
fn gt(&self, other: &Self) -> bool {
|
||
|
**self > **other
|
||
|
}
|
||
|
|
||
|
#[inline(always)]
|
||
|
fn ge(&self, other: &Self) -> bool {
|
||
|
**self >= **other
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized + Ord> Ord for Gc<T> {
|
||
|
#[inline]
|
||
|
fn cmp(&self, other: &Self) -> Ordering {
|
||
|
(**self).cmp(&**other)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized + Hash> Hash for Gc<T> {
|
||
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
||
|
(**self).hash(state);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized + Display> Display for Gc<T> {
|
||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||
|
Display::fmt(&**self, f)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized + Debug> Debug for Gc<T> {
|
||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||
|
Debug::fmt(&**self, f)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> fmt::Pointer for Gc<T> {
|
||
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||
|
fmt::Pointer::fmt(&self.inner(), f)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> std::borrow::Borrow<T> for Gc<T> {
|
||
|
fn borrow(&self) -> &T {
|
||
|
self
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<T: Trace + ?Sized> AsRef<T> for Gc<T> {
|
||
|
fn as_ref(&self) -> &T {
|
||
|
self
|
||
|
}
|
||
|
}
|