mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
layout: Stop doing unsafe transmutes between refcell references.
This commit splits the style and layout data in two separate refcells. These transmutes have been a source of trouble (for example on Android), and they feel like a hack anyway. Fixes #16982
This commit is contained in:
parent
bb310efbb9
commit
deaa935f5b
9 changed files with 79 additions and 94 deletions
|
@ -17,7 +17,7 @@ use StyleArc;
|
||||||
use app_units::Au;
|
use app_units::Au;
|
||||||
use block::BlockFlow;
|
use block::BlockFlow;
|
||||||
use context::{LayoutContext, with_thread_local_font_context};
|
use context::{LayoutContext, with_thread_local_font_context};
|
||||||
use data::{HAS_NEWLY_CONSTRUCTED_FLOW, PersistentLayoutData};
|
use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutData};
|
||||||
use flex::FlexFlow;
|
use flex::FlexFlow;
|
||||||
use floats::FloatKind;
|
use floats::FloatKind;
|
||||||
use flow::{self, AbsoluteDescendants, Flow, FlowClass, ImmutableFlowUtils};
|
use flow::{self, AbsoluteDescendants, Flow, FlowClass, ImmutableFlowUtils};
|
||||||
|
@ -1621,7 +1621,7 @@ trait NodeUtils {
|
||||||
/// Returns true if this node doesn't render its kids and false otherwise.
|
/// Returns true if this node doesn't render its kids and false otherwise.
|
||||||
fn is_replaced_content(&self) -> bool;
|
fn is_replaced_content(&self) -> bool;
|
||||||
|
|
||||||
fn construction_result_mut(self, layout_data: &mut PersistentLayoutData) -> &mut ConstructionResult;
|
fn construction_result_mut(self, layout_data: &mut LayoutData) -> &mut ConstructionResult;
|
||||||
|
|
||||||
/// Sets the construction result of a flow.
|
/// Sets the construction result of a flow.
|
||||||
fn set_flow_construction_result(self, result: ConstructionResult);
|
fn set_flow_construction_result(self, result: ConstructionResult);
|
||||||
|
@ -1645,7 +1645,7 @@ impl<ConcreteThreadSafeLayoutNode> NodeUtils for ConcreteThreadSafeLayoutNode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn construction_result_mut(self, data: &mut PersistentLayoutData) -> &mut ConstructionResult {
|
fn construction_result_mut(self, data: &mut LayoutData) -> &mut ConstructionResult {
|
||||||
match self.get_pseudo_element_type() {
|
match self.get_pseudo_element_type() {
|
||||||
PseudoElementType::Before(_) => &mut data.before_flow_construction_result,
|
PseudoElementType::Before(_) => &mut data.before_flow_construction_result,
|
||||||
PseudoElementType::After(_) => &mut data.after_flow_construction_result,
|
PseudoElementType::After(_) => &mut data.after_flow_construction_result,
|
||||||
|
|
|
@ -2,16 +2,32 @@
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* 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/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
use atomic_refcell::AtomicRefCell;
|
||||||
use construct::ConstructionResult;
|
use construct::ConstructionResult;
|
||||||
use script_layout_interface::PartialPersistentLayoutData;
|
use script_layout_interface::StyleData;
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct StyleAndLayoutData {
|
||||||
|
/// Data accessed by script_layout_interface. This must be first to allow
|
||||||
|
/// casting between StyleAndLayoutData and StyleData.
|
||||||
|
pub style_data: StyleData,
|
||||||
|
/// The layout data associated with a node.
|
||||||
|
pub layout_data: AtomicRefCell<LayoutData>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl StyleAndLayoutData {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self {
|
||||||
|
style_data: StyleData::new(),
|
||||||
|
layout_data: AtomicRefCell::new(LayoutData::new()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Data that layout associates with a node.
|
/// Data that layout associates with a node.
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub struct PersistentLayoutData {
|
pub struct LayoutData {
|
||||||
/// Data accessed by script_layout_interface. This must be first to allow
|
|
||||||
/// casting between PersistentLayoutData and PartialPersistentLayoutData.
|
|
||||||
pub base: PartialPersistentLayoutData,
|
|
||||||
|
|
||||||
/// The current results of flow construction for this node. This is either a
|
/// The current results of flow construction for this node. This is either a
|
||||||
/// flow or a `ConstructionItem`. See comments in `construct.rs` for more
|
/// flow or a `ConstructionItem`. See comments in `construct.rs` for more
|
||||||
/// details.
|
/// details.
|
||||||
|
@ -29,11 +45,10 @@ pub struct PersistentLayoutData {
|
||||||
pub flags: LayoutDataFlags,
|
pub flags: LayoutDataFlags,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PersistentLayoutData {
|
impl LayoutData {
|
||||||
/// Creates new layout data.
|
/// Creates new layout data.
|
||||||
pub fn new() -> PersistentLayoutData {
|
pub fn new() -> LayoutData {
|
||||||
PersistentLayoutData {
|
Self {
|
||||||
base: PartialPersistentLayoutData::new(),
|
|
||||||
flow_construction_result: ConstructionResult::None,
|
flow_construction_result: ConstructionResult::None,
|
||||||
before_flow_construction_result: ConstructionResult::None,
|
before_flow_construction_result: ConstructionResult::None,
|
||||||
after_flow_construction_result: ConstructionResult::None,
|
after_flow_construction_result: ConstructionResult::None,
|
||||||
|
|
|
@ -93,7 +93,7 @@ pub mod wrapper;
|
||||||
// For unit tests:
|
// For unit tests:
|
||||||
pub use fragment::Fragment;
|
pub use fragment::Fragment;
|
||||||
pub use fragment::SpecificFragmentInfo;
|
pub use fragment::SpecificFragmentInfo;
|
||||||
pub use self::data::PersistentLayoutData;
|
pub use self::data::LayoutData;
|
||||||
|
|
||||||
/// Returns whether the two arguments point to the same value.
|
/// Returns whether the two arguments point to the same value.
|
||||||
///
|
///
|
||||||
|
|
|
@ -30,39 +30,37 @@
|
||||||
|
|
||||||
#![allow(unsafe_code)]
|
#![allow(unsafe_code)]
|
||||||
|
|
||||||
use atomic_refcell::{AtomicRef, AtomicRefCell, AtomicRefMut};
|
use atomic_refcell::{AtomicRef, AtomicRefMut};
|
||||||
use core::nonzero::NonZero;
|
use core::nonzero::NonZero;
|
||||||
use data::{LayoutDataFlags, PersistentLayoutData};
|
use data::{LayoutData, LayoutDataFlags, StyleAndLayoutData};
|
||||||
use script_layout_interface::{OpaqueStyleAndLayoutData, PartialPersistentLayoutData};
|
use script_layout_interface::{OpaqueStyleAndLayoutData, StyleData};
|
||||||
use script_layout_interface::wrapper_traits::{LayoutNode, ThreadSafeLayoutElement, ThreadSafeLayoutNode};
|
use script_layout_interface::wrapper_traits::{LayoutNode, ThreadSafeLayoutElement, ThreadSafeLayoutNode};
|
||||||
use script_layout_interface::wrapper_traits::GetLayoutData;
|
use script_layout_interface::wrapper_traits::GetLayoutData;
|
||||||
use style::computed_values::content::{self, ContentItem};
|
use style::computed_values::content::{self, ContentItem};
|
||||||
use style::dom::{NodeInfo, TNode};
|
use style::dom::{NodeInfo, TNode};
|
||||||
use style::selector_parser::RestyleDamage;
|
use style::selector_parser::RestyleDamage;
|
||||||
|
|
||||||
pub type NonOpaqueStyleAndLayoutData = AtomicRefCell<PersistentLayoutData>;
|
|
||||||
|
|
||||||
pub unsafe fn drop_style_and_layout_data(data: OpaqueStyleAndLayoutData) {
|
pub unsafe fn drop_style_and_layout_data(data: OpaqueStyleAndLayoutData) {
|
||||||
let ptr: *mut AtomicRefCell<PartialPersistentLayoutData> = data.ptr.get();
|
let ptr: *mut StyleData = data.ptr.get();
|
||||||
let non_opaque: *mut NonOpaqueStyleAndLayoutData = ptr as *mut _;
|
let non_opaque: *mut StyleAndLayoutData = ptr as *mut _;
|
||||||
let _ = Box::from_raw(non_opaque);
|
let _ = Box::from_raw(non_opaque);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait LayoutNodeLayoutData {
|
pub trait LayoutNodeLayoutData {
|
||||||
/// Similar to borrow_data*, but returns the full PersistentLayoutData rather
|
/// Similar to borrow_data*, but returns the full PersistentLayoutData rather
|
||||||
/// than only the style::data::ElementData.
|
/// than only the style::data::ElementData.
|
||||||
fn borrow_layout_data(&self) -> Option<AtomicRef<PersistentLayoutData>>;
|
fn borrow_layout_data(&self) -> Option<AtomicRef<LayoutData>>;
|
||||||
fn mutate_layout_data(&self) -> Option<AtomicRefMut<PersistentLayoutData>>;
|
fn mutate_layout_data(&self) -> Option<AtomicRefMut<LayoutData>>;
|
||||||
fn flow_debug_id(self) -> usize;
|
fn flow_debug_id(self) -> usize;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: GetLayoutData> LayoutNodeLayoutData for T {
|
impl<T: GetLayoutData> LayoutNodeLayoutData for T {
|
||||||
fn borrow_layout_data(&self) -> Option<AtomicRef<PersistentLayoutData>> {
|
fn borrow_layout_data(&self) -> Option<AtomicRef<LayoutData>> {
|
||||||
self.get_raw_data().map(|d| d.borrow())
|
self.get_raw_data().map(|d| d.layout_data.borrow())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn mutate_layout_data(&self) -> Option<AtomicRefMut<PersistentLayoutData>> {
|
fn mutate_layout_data(&self) -> Option<AtomicRefMut<LayoutData>> {
|
||||||
self.get_raw_data().map(|d| d.borrow_mut())
|
self.get_raw_data().map(|d| d.layout_data.borrow_mut())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn flow_debug_id(self) -> usize {
|
fn flow_debug_id(self) -> usize {
|
||||||
|
@ -71,13 +69,13 @@ impl<T: GetLayoutData> LayoutNodeLayoutData for T {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait GetRawData {
|
pub trait GetRawData {
|
||||||
fn get_raw_data(&self) -> Option<&NonOpaqueStyleAndLayoutData>;
|
fn get_raw_data(&self) -> Option<&StyleAndLayoutData>;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: GetLayoutData> GetRawData for T {
|
impl<T: GetLayoutData> GetRawData for T {
|
||||||
fn get_raw_data(&self) -> Option<&NonOpaqueStyleAndLayoutData> {
|
fn get_raw_data(&self) -> Option<&StyleAndLayoutData> {
|
||||||
self.get_style_and_layout_data().map(|opaque| {
|
self.get_style_and_layout_data().map(|opaque| {
|
||||||
let container = opaque.ptr.get() as *mut NonOpaqueStyleAndLayoutData;
|
let container = opaque.ptr.get() as *mut StyleAndLayoutData;
|
||||||
unsafe { &*container }
|
unsafe { &*container }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -91,10 +89,10 @@ pub trait LayoutNodeHelpers {
|
||||||
impl<T: LayoutNode> LayoutNodeHelpers for T {
|
impl<T: LayoutNode> LayoutNodeHelpers for T {
|
||||||
fn initialize_data(&self) {
|
fn initialize_data(&self) {
|
||||||
if self.get_raw_data().is_none() {
|
if self.get_raw_data().is_none() {
|
||||||
let ptr: *mut NonOpaqueStyleAndLayoutData =
|
let ptr: *mut StyleAndLayoutData =
|
||||||
Box::into_raw(box AtomicRefCell::new(PersistentLayoutData::new()));
|
Box::into_raw(Box::new(StyleAndLayoutData::new()));
|
||||||
let opaque = OpaqueStyleAndLayoutData {
|
let opaque = OpaqueStyleAndLayoutData {
|
||||||
ptr: unsafe { NonZero::new(ptr as *mut AtomicRefCell<PartialPersistentLayoutData>) }
|
ptr: unsafe { NonZero::new(ptr as *mut StyleData) }
|
||||||
};
|
};
|
||||||
unsafe { self.init_style_and_layout_data(opaque) };
|
unsafe { self.init_style_and_layout_data(opaque) };
|
||||||
};
|
};
|
||||||
|
@ -171,21 +169,25 @@ impl<T: ThreadSafeLayoutNode> ThreadSafeLayoutNodeHelpers for T {
|
||||||
debug_assert!(node.is_element());
|
debug_assert!(node.is_element());
|
||||||
}
|
}
|
||||||
|
|
||||||
let data = node.borrow_layout_data().unwrap();
|
let damage = {
|
||||||
if let Some(r) = data.base.style_data.get_restyle() {
|
let data = node.get_raw_data().unwrap();
|
||||||
// We're reflowing a node that just got a restyle, and so the
|
if let Some(r) = data.style_data.element_data.borrow().get_restyle() {
|
||||||
// damage has been computed and stored in the RestyleData.
|
// We're reflowing a node that just got a restyle, and so the
|
||||||
r.damage
|
// damage has been computed and stored in the RestyleData.
|
||||||
} else if !data.flags.contains(::data::HAS_BEEN_TRAVERSED) {
|
r.damage
|
||||||
// We're reflowing a node that was styled for the first time and
|
} else if !data.layout_data.borrow().flags.contains(::data::HAS_BEEN_TRAVERSED) {
|
||||||
// has never been visited by layout. Return rebuild_and_reflow,
|
// We're reflowing a node that was styled for the first time and
|
||||||
// because that's what the code expects.
|
// has never been visited by layout. Return rebuild_and_reflow,
|
||||||
RestyleDamage::rebuild_and_reflow()
|
// because that's what the code expects.
|
||||||
} else {
|
RestyleDamage::rebuild_and_reflow()
|
||||||
// We're reflowing a node whose style data didn't change, but whose
|
} else {
|
||||||
// layout may change due to changes in ancestors or descendants.
|
// We're reflowing a node whose style data didn't change, but whose
|
||||||
RestyleDamage::empty()
|
// layout may change due to changes in ancestors or descendants.
|
||||||
}
|
RestyleDamage::empty()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
damage
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1173,7 +1173,7 @@ impl LayoutThread {
|
||||||
|
|
||||||
// If we haven't styled this node yet, we don't need to track a
|
// If we haven't styled this node yet, we don't need to track a
|
||||||
// restyle.
|
// restyle.
|
||||||
let mut data = match el.mutate_layout_data() {
|
let style_data = match el.get_data() {
|
||||||
Some(d) => d,
|
Some(d) => d,
|
||||||
None => {
|
None => {
|
||||||
unsafe { el.unset_snapshot_flags() };
|
unsafe { el.unset_snapshot_flags() };
|
||||||
|
@ -1186,7 +1186,7 @@ impl LayoutThread {
|
||||||
map.insert(el.as_node().opaque(), s);
|
map.insert(el.as_node().opaque(), s);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut style_data = &mut data.base.style_data;
|
let mut style_data = style_data.borrow_mut();
|
||||||
let mut restyle_data = style_data.ensure_restyle();
|
let mut restyle_data = style_data.ensure_restyle();
|
||||||
|
|
||||||
// Stash the data on the element for processing by the style system.
|
// Stash the data on the element for processing by the style system.
|
||||||
|
|
|
@ -47,7 +47,7 @@ use html5ever::{LocalName, Namespace};
|
||||||
use msg::constellation_msg::{BrowsingContextId, PipelineId};
|
use msg::constellation_msg::{BrowsingContextId, PipelineId};
|
||||||
use range::Range;
|
use range::Range;
|
||||||
use script_layout_interface::{HTMLCanvasData, LayoutNodeType, SVGSVGData, TrustedNodeAddress};
|
use script_layout_interface::{HTMLCanvasData, LayoutNodeType, SVGSVGData, TrustedNodeAddress};
|
||||||
use script_layout_interface::{OpaqueStyleAndLayoutData, PartialPersistentLayoutData};
|
use script_layout_interface::{OpaqueStyleAndLayoutData, StyleData};
|
||||||
use script_layout_interface::wrapper_traits::{DangerousThreadSafeLayoutNode, GetLayoutData, LayoutNode};
|
use script_layout_interface::wrapper_traits::{DangerousThreadSafeLayoutNode, GetLayoutData, LayoutNode};
|
||||||
use script_layout_interface::wrapper_traits::{PseudoElementType, ThreadSafeLayoutElement, ThreadSafeLayoutNode};
|
use script_layout_interface::wrapper_traits::{PseudoElementType, ThreadSafeLayoutElement, ThreadSafeLayoutNode};
|
||||||
use selectors::attr::{AttrSelectorOperation, NamespaceConstraint};
|
use selectors::attr::{AttrSelectorOperation, NamespaceConstraint};
|
||||||
|
@ -452,12 +452,12 @@ impl<'le> TElement for ServoLayoutElement<'le> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn store_children_to_process(&self, n: isize) {
|
fn store_children_to_process(&self, n: isize) {
|
||||||
let data = self.get_partial_layout_data().unwrap().borrow();
|
let data = self.get_style_data().unwrap();
|
||||||
data.parallel.children_to_process.store(n, Ordering::Relaxed);
|
data.parallel.children_to_process.store(n, Ordering::Relaxed);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn did_process_child(&self) -> isize {
|
fn did_process_child(&self) -> isize {
|
||||||
let data = self.get_partial_layout_data().unwrap().borrow();
|
let data = self.get_style_data().unwrap();
|
||||||
let old_value = data.parallel.children_to_process.fetch_sub(1, Ordering::Relaxed);
|
let old_value = data.parallel.children_to_process.fetch_sub(1, Ordering::Relaxed);
|
||||||
debug_assert!(old_value >= 1);
|
debug_assert!(old_value >= 1);
|
||||||
old_value - 1
|
old_value - 1
|
||||||
|
@ -466,9 +466,7 @@ impl<'le> TElement for ServoLayoutElement<'le> {
|
||||||
fn get_data(&self) -> Option<&AtomicRefCell<ElementData>> {
|
fn get_data(&self) -> Option<&AtomicRefCell<ElementData>> {
|
||||||
unsafe {
|
unsafe {
|
||||||
self.get_style_and_layout_data().map(|d| {
|
self.get_style_and_layout_data().map(|d| {
|
||||||
let ppld: &AtomicRefCell<PartialPersistentLayoutData> = &*d.ptr.get();
|
&(*d.ptr.get()).element_data
|
||||||
let psd: &AtomicRefCell<ElementData> = transmute(ppld);
|
|
||||||
psd
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -537,7 +535,7 @@ impl<'le> ServoLayoutElement<'le> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_partial_layout_data(&self) -> Option<&AtomicRefCell<PartialPersistentLayoutData>> {
|
fn get_style_data(&self) -> Option<&StyleData> {
|
||||||
unsafe {
|
unsafe {
|
||||||
self.get_style_and_layout_data().map(|d| &*d.ptr.get())
|
self.get_style_and_layout_data().map(|d| &*d.ptr.get())
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,35 +51,32 @@ use std::sync::atomic::AtomicIsize;
|
||||||
use style::data::ElementData;
|
use style::data::ElementData;
|
||||||
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub struct PartialPersistentLayoutData {
|
pub struct StyleData {
|
||||||
/// Data that the style system associates with a node. When the
|
/// Data that the style system associates with a node. When the
|
||||||
/// style system is being used standalone, this is all that hangs
|
/// style system is being used standalone, this is all that hangs
|
||||||
/// off the node. This must be first to permit the various
|
/// off the node. This must be first to permit the various
|
||||||
/// transmutations between ElementData and PersistentLayoutData.
|
/// transmutations between ElementData and PersistentLayoutData.
|
||||||
pub style_data: ElementData,
|
pub element_data: AtomicRefCell<ElementData>,
|
||||||
|
|
||||||
/// Information needed during parallel traversals.
|
/// Information needed during parallel traversals.
|
||||||
pub parallel: DomParallelInfo,
|
pub parallel: DomParallelInfo,
|
||||||
|
|
||||||
// Required alignment for safe transmutes between PersistentLayoutData and PartialPersistentLayoutData.
|
|
||||||
_align: [u64; 0]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PartialPersistentLayoutData {
|
impl StyleData {
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
PartialPersistentLayoutData {
|
Self {
|
||||||
style_data: ElementData::new(None),
|
element_data: AtomicRefCell::new(ElementData::new(None)),
|
||||||
parallel: DomParallelInfo::new(),
|
parallel: DomParallelInfo::new(),
|
||||||
_align: [],
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Copy, Clone, HeapSizeOf)]
|
#[derive(Copy, Clone, HeapSizeOf)]
|
||||||
pub struct OpaqueStyleAndLayoutData {
|
pub struct OpaqueStyleAndLayoutData {
|
||||||
|
// NB: We really store a `StyleAndLayoutData` here, so be careful!
|
||||||
#[ignore_heap_size_of = "TODO(#6910) Box value that should be counted but \
|
#[ignore_heap_size_of = "TODO(#6910) Box value that should be counted but \
|
||||||
the type lives in layout"]
|
the type lives in layout"]
|
||||||
pub ptr: NonZero<*mut AtomicRefCell<PartialPersistentLayoutData>>
|
pub ptr: NonZero<*mut StyleData>
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unsafe_code)]
|
#[allow(unsafe_code)]
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
/* 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/. */
|
|
||||||
|
|
||||||
use atomic_refcell::AtomicRefCell;
|
|
||||||
use layout::PersistentLayoutData;
|
|
||||||
use script_layout_interface::PartialPersistentLayoutData;
|
|
||||||
use std::mem::align_of;
|
|
||||||
|
|
||||||
fn check_layout_alignment(expected: usize, current: usize) {
|
|
||||||
if current != expected {
|
|
||||||
panic!("Your changes have altered the mem alignment of the PartialPersistentLayoutData \
|
|
||||||
struct to {}, but it must match the {}-alignment of PersistentLayoutData struct. \
|
|
||||||
Please fix alignment in components/script_layout_interface/lib.rs",
|
|
||||||
current, expected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_persistent_layout_data_alignment() {
|
|
||||||
check_layout_alignment(align_of::<PersistentLayoutData>(),
|
|
||||||
align_of::<PartialPersistentLayoutData>());
|
|
||||||
|
|
||||||
check_layout_alignment(align_of::<AtomicRefCell<PersistentLayoutData>>(),
|
|
||||||
align_of::<AtomicRefCell<PartialPersistentLayoutData>>());
|
|
||||||
}
|
|
|
@ -7,5 +7,4 @@ extern crate layout;
|
||||||
extern crate script_layout_interface;
|
extern crate script_layout_interface;
|
||||||
#[macro_use] extern crate size_of_test;
|
#[macro_use] extern crate size_of_test;
|
||||||
|
|
||||||
#[cfg(test)] mod align_of;
|
|
||||||
#[cfg(all(test, target_pointer_width = "64"))] mod size_of;
|
#[cfg(all(test, target_pointer_width = "64"))] mod size_of;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue