Bug 1475252 - Update for API changes in WR PR 2871. r=kats

This change has WrClipId contain the ClipId type (except for clip
chains, which are handled separately) in the least significant bit of
the size_t. On 32-bit systems this limits the number of clip and spatial
nodes to 2,147,483,648 which is likely more than what WebRender can
handle.

MozReview-Commit-ID: 1cpZCBt1wL7

--HG--
extra : rebase_source : 8183570e37bf6da69a3e7335d63fc47cad191fe9
This commit is contained in:
Martin Robinson 2018-07-04 13:27:59 +02:00
Родитель 2e759049d9
Коммит b4ca607f57
1 изменённых файлов: 38 добавлений и 41 удалений

Просмотреть файл

@ -1656,7 +1656,7 @@ pub extern "C" fn wr_dp_push_stacking_context(state: &mut WrState,
let clip_node_id_ref = unsafe { clip_node_id.as_ref() }; let clip_node_id_ref = unsafe { clip_node_id.as_ref() };
let clip_node_id = match clip_node_id_ref { let clip_node_id = match clip_node_id_ref {
Some(clip_node_id) => Some(ClipId::Clip(*clip_node_id, state.pipeline_id)), Some(clip_node_id) => Some(unpack_clip_id(*clip_node_id, state.pipeline_id)),
None => None, None => None,
}; };
@ -1710,13 +1710,7 @@ pub extern "C" fn wr_dp_push_stacking_context(state: &mut WrState,
let ref_frame_id = state.frame_builder let ref_frame_id = state.frame_builder
.dl_builder .dl_builder
.push_reference_frame(&prim_info, transform_binding, perspective); .push_reference_frame(&prim_info, transform_binding, perspective);
match ref_frame_id { *out_reference_frame_id = pack_clip_id(ref_frame_id);
ClipId::Clip(id, pipeline_id) => {
assert!(pipeline_id == state.pipeline_id);
*out_reference_frame_id = id;
},
_ => panic!("Pushing a reference frame must produce a ClipId::Clip"),
}
prim_info.rect.origin = LayoutPoint::zero(); prim_info.rect.origin = LayoutPoint::zero();
prim_info.clip_rect.origin = LayoutPoint::zero(); prim_info.clip_rect.origin = LayoutPoint::zero();
@ -1755,7 +1749,11 @@ pub extern "C" fn wr_dp_define_clipchain(state: &mut WrState,
-> u64 { -> u64 {
debug_assert!(unsafe { is_in_main_thread() }); debug_assert!(unsafe { is_in_main_thread() });
let parent = unsafe { parent_clipchain_id.as_ref() }.map(|id| ClipChainId(*id, state.pipeline_id)); let parent = unsafe { parent_clipchain_id.as_ref() }.map(|id| ClipChainId(*id, state.pipeline_id));
let clips_slice : Vec<ClipId> = make_slice(clips, clips_count).iter().map(|id| ClipId::Clip(*id, state.pipeline_id)).collect(); let clips_slice : Vec<ClipId> = make_slice(clips, clips_count)
.iter()
.map(|id| unpack_clip_id(*id, state.pipeline_id))
.collect();
let clipchain_id = state.frame_builder.dl_builder.define_clip_chain(parent, clips_slice); let clipchain_id = state.frame_builder.dl_builder.define_clip_chain(parent, clips_slice);
assert!(clipchain_id.1 == state.pipeline_id); assert!(clipchain_id.1 == state.pipeline_id);
clipchain_id.0 clipchain_id.0
@ -1778,26 +1776,19 @@ pub extern "C" fn wr_dp_define_clip(state: &mut WrState,
let clip_id = if let Some(&pid) = parent_id { let clip_id = if let Some(&pid) = parent_id {
state.frame_builder.dl_builder.define_clip_with_parent( state.frame_builder.dl_builder.define_clip_with_parent(
ClipId::Clip(pid, state.pipeline_id), unpack_clip_id(pid, state.pipeline_id),
clip_rect, complex_iter, mask) clip_rect, complex_iter, mask)
} else { } else {
state.frame_builder.dl_builder.define_clip(clip_rect, complex_iter, mask) state.frame_builder.dl_builder.define_clip(clip_rect, complex_iter, mask)
}; };
// return the usize id value from inside the ClipId::Clip(..) pack_clip_id(clip_id)
match clip_id {
ClipId::Clip(id, pipeline_id) => {
assert!(pipeline_id == state.pipeline_id);
id
},
_ => panic!("Got unexpected clip id type"),
}
} }
#[no_mangle] #[no_mangle]
pub extern "C" fn wr_dp_push_clip(state: &mut WrState, pub extern "C" fn wr_dp_push_clip(state: &mut WrState,
clip_id: usize) { clip_id: usize) {
debug_assert!(unsafe { is_in_main_thread() }); debug_assert!(unsafe { is_in_main_thread() });
state.frame_builder.dl_builder.push_clip_id(ClipId::Clip(clip_id, state.pipeline_id)); state.frame_builder.dl_builder.push_clip_id(unpack_clip_id(clip_id, state.pipeline_id));
} }
#[no_mangle] #[no_mangle]
@ -1826,13 +1817,7 @@ pub extern "C" fn wr_dp_define_sticky_frame(state: &mut WrState,
unsafe { left_margin.as_ref() }.cloned() unsafe { left_margin.as_ref() }.cloned()
), ),
vertical_bounds, horizontal_bounds, applied_offset); vertical_bounds, horizontal_bounds, applied_offset);
match clip_id { pack_clip_id(clip_id)
ClipId::Clip(id, pipeline_id) => {
assert!(pipeline_id == state.pipeline_id);
id
},
_ => panic!("Got unexpected clip id type"),
}
} }
#[no_mangle] #[no_mangle]
@ -1848,7 +1833,7 @@ pub extern "C" fn wr_dp_define_scroll_layer(state: &mut WrState,
let new_id = if let Some(&pid) = parent_id { let new_id = if let Some(&pid) = parent_id {
state.frame_builder.dl_builder.define_scroll_frame_with_parent( state.frame_builder.dl_builder.define_scroll_frame_with_parent(
ClipId::Clip(pid, state.pipeline_id), unpack_clip_id(pid, state.pipeline_id),
Some(ExternalScrollId(scroll_id, state.pipeline_id)), Some(ExternalScrollId(scroll_id, state.pipeline_id)),
content_rect, content_rect,
clip_rect, clip_rect,
@ -1867,20 +1852,14 @@ pub extern "C" fn wr_dp_define_scroll_layer(state: &mut WrState,
) )
}; };
match new_id { pack_clip_id(new_id)
ClipId::Clip(id, pipeline_id) => {
assert!(pipeline_id == state.pipeline_id);
id
},
_ => panic!("Got unexpected clip id type"),
}
} }
#[no_mangle] #[no_mangle]
pub extern "C" fn wr_dp_push_scroll_layer(state: &mut WrState, pub extern "C" fn wr_dp_push_scroll_layer(state: &mut WrState,
scroll_id: usize) { scroll_id: usize) {
debug_assert!(unsafe { is_in_main_thread() }); debug_assert!(unsafe { is_in_main_thread() });
let clip_id = ClipId::Clip(scroll_id, state.pipeline_id); let clip_id = unpack_clip_id(scroll_id, state.pipeline_id);
state.frame_builder.dl_builder.push_clip_id(clip_id); state.frame_builder.dl_builder.push_clip_id(clip_id);
} }
@ -1899,11 +1878,10 @@ pub extern "C" fn wr_dp_push_clip_and_scroll_info(state: &mut WrState,
let clip_chain_id = unsafe { clip_chain_id.as_ref() }; let clip_chain_id = unsafe { clip_chain_id.as_ref() };
let info = if let Some(&ccid) = clip_chain_id { let info = if let Some(&ccid) = clip_chain_id {
ClipAndScrollInfo::new( ClipAndScrollInfo::new(
ClipId::Clip(scroll_id, state.pipeline_id), unpack_clip_id(scroll_id, state.pipeline_id),
ClipId::ClipChain(ClipChainId(ccid, state.pipeline_id))) ClipId::ClipChain(ClipChainId(ccid, state.pipeline_id)))
} else { } else {
ClipAndScrollInfo::simple( ClipAndScrollInfo::simple(unpack_clip_id(scroll_id, state.pipeline_id))
ClipId::Clip(scroll_id, state.pipeline_id))
}; };
state.frame_builder.dl_builder.push_clip_and_scroll_info(info); state.frame_builder.dl_builder.push_clip_and_scroll_info(info);
} }
@ -2463,8 +2441,27 @@ extern "C" {
pub extern "C" fn wr_root_scroll_node_id() -> usize { pub extern "C" fn wr_root_scroll_node_id() -> usize {
// The PipelineId doesn't matter here, since we just want the numeric part of the id // The PipelineId doesn't matter here, since we just want the numeric part of the id
// produced for any given root reference frame. // produced for any given root reference frame.
match ClipId::root_scroll_node(PipelineId(0, 0)) { pack_clip_id(ClipId::root_scroll_node(PipelineId(0, 0)))
ClipId::Clip(id, _) => id, }
_ => unreachable!("Got a non Clip ClipId for root reference frame."),
fn pack_clip_id(id: ClipId) -> usize {
let (id, type_value) = match id {
ClipId::Spatial(id, _) => (id, 0),
ClipId::Clip(id, _) => (id, 1),
ClipId::ClipChain(..) => unreachable!("Tried to pack a clip chain id"),
};
assert!(id <= usize::max_value() >> 1);
return (id << 1) + type_value;
}
fn unpack_clip_id(id: usize, pipeline_id: PipelineId) -> ClipId {
let type_value = id & 0b01;
let id = id >> 1;
match type_value {
0 => ClipId::Spatial(id, pipeline_id),
1 => ClipId::Clip(id, pipeline_id),
_ => unreachable!("Got a bizarre value for the clip type"),
} }
} }