wasmtime/runtime/vm/table.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
//! Memory management for tables.
//!
//! `Table` is to WebAssembly tables what `LinearMemory` is to WebAssembly linear memories.
#![cfg_attr(feature = "gc", allow(irrefutable_let_patterns))]
use crate::prelude::*;
use crate::runtime::vm::vmcontext::{VMFuncRef, VMTableDefinition};
use crate::runtime::vm::{GcStore, SendSyncPtr, VMGcRef, VMStore};
use core::alloc::Layout;
use core::mem;
use core::ops::Range;
use core::ptr::{self, NonNull};
use core::slice;
use core::{cmp, usize};
use sptr::Strict;
use wasmtime_environ::{
IndexType, Trap, Tunables, WasmHeapTopType, WasmRefType, FUNCREF_INIT_BIT, FUNCREF_MASK,
};
/// An element going into or coming out of a table.
///
/// Table elements are stored as pointers and are default-initialized with
/// `ptr::null_mut`.
pub enum TableElement {
/// A `funcref`.
FuncRef(Option<NonNull<VMFuncRef>>),
/// A GC reference.
GcRef(Option<VMGcRef>),
/// An uninitialized funcref value. This should never be exposed
/// beyond the `wasmtime` crate boundary; the upper-level code
/// (which has access to the info needed for lazy initialization)
/// will replace it when fetched.
UninitFunc,
}
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub enum TableElementType {
Func,
GcRef,
}
impl TableElementType {
fn matches(&self, val: &TableElement) -> bool {
match (val, self) {
(TableElement::FuncRef(_), TableElementType::Func) => true,
(TableElement::GcRef(_), TableElementType::GcRef) => true,
_ => false,
}
}
}
// The usage of `*mut VMFuncRef` is safe w.r.t. thread safety, this just relies
// on thread-safety of `VMGcRef` itself.
unsafe impl Send for TableElement where VMGcRef: Send {}
unsafe impl Sync for TableElement where VMGcRef: Sync {}
impl TableElement {
/// Consumes a table element into a pointer/reference, as it
/// exists outside the table itself. This strips off any tag bits
/// or other information that only lives inside the table.
///
/// Can only be done to an initialized table element; lazy init
/// must occur first. (In other words, lazy values do not survive
/// beyond the table, as every table read path initializes them.)
///
/// # Safety
///
/// The same warnings as for `into_table_values()` apply.
pub(crate) unsafe fn into_func_ref_asserting_initialized(self) -> Option<NonNull<VMFuncRef>> {
match self {
Self::FuncRef(e) => e,
Self::UninitFunc => panic!("Uninitialized table element value outside of table slot"),
Self::GcRef(_) => panic!("GC reference is not a function reference"),
}
}
/// Indicates whether this value is the "uninitialized element"
/// value.
pub(crate) fn is_uninit(&self) -> bool {
match self {
Self::UninitFunc => true,
_ => false,
}
}
}
impl From<Option<NonNull<VMFuncRef>>> for TableElement {
fn from(f: Option<NonNull<VMFuncRef>>) -> TableElement {
TableElement::FuncRef(f)
}
}
impl From<Option<VMGcRef>> for TableElement {
fn from(x: Option<VMGcRef>) -> TableElement {
TableElement::GcRef(x)
}
}
impl From<VMGcRef> for TableElement {
fn from(x: VMGcRef) -> TableElement {
TableElement::GcRef(Some(x))
}
}
#[derive(Copy, Clone)]
#[repr(transparent)]
struct TaggedFuncRef(*mut VMFuncRef);
impl TaggedFuncRef {
const UNINIT: TaggedFuncRef = TaggedFuncRef(ptr::null_mut());
/// Converts the given `ptr`, a valid funcref pointer, into a tagged pointer
/// by adding in the `FUNCREF_INIT_BIT`.
fn from(ptr: Option<NonNull<VMFuncRef>>, lazy_init: bool) -> Self {
let ptr = ptr.map(|p| p.as_ptr()).unwrap_or(ptr::null_mut());
if lazy_init {
let masked = Strict::map_addr(ptr, |a| a | FUNCREF_INIT_BIT);
TaggedFuncRef(masked)
} else {
TaggedFuncRef(ptr)
}
}
/// Converts a tagged pointer into a `TableElement`, returning `UninitFunc`
/// for null (not a tagged value) or `FuncRef` for otherwise tagged values.
fn into_table_element(self, lazy_init: bool) -> TableElement {
let ptr = self.0;
if lazy_init && ptr.is_null() {
TableElement::UninitFunc
} else {
// Masking off the tag bit is harmless whether the table uses lazy
// init or not.
let unmasked = Strict::map_addr(ptr, |a| a & FUNCREF_MASK);
TableElement::FuncRef(NonNull::new(unmasked))
}
}
}
pub type FuncTableElem = Option<SendSyncPtr<VMFuncRef>>;
pub enum StaticTable {
Func(StaticFuncTable),
GcRef(StaticGcRefTable),
}
impl From<StaticFuncTable> for StaticTable {
fn from(value: StaticFuncTable) -> Self {
Self::Func(value)
}
}
impl From<StaticGcRefTable> for StaticTable {
fn from(value: StaticGcRefTable) -> Self {
Self::GcRef(value)
}
}
pub struct StaticFuncTable {
/// Where data for this table is stored. The length of this list is the
/// maximum size of the table.
data: SendSyncPtr<[FuncTableElem]>,
/// The current size of the table.
size: usize,
/// Whether elements of this table are initialized lazily.
lazy_init: bool,
}
pub struct StaticGcRefTable {
/// Where data for this table is stored. The length of this list is the
/// maximum size of the table.
data: SendSyncPtr<[Option<VMGcRef>]>,
/// The current size of the table.
size: usize,
}
pub enum DynamicTable {
Func(DynamicFuncTable),
GcRef(DynamicGcRefTable),
}
impl From<DynamicFuncTable> for DynamicTable {
fn from(value: DynamicFuncTable) -> Self {
Self::Func(value)
}
}
impl From<DynamicGcRefTable> for DynamicTable {
fn from(value: DynamicGcRefTable) -> Self {
Self::GcRef(value)
}
}
pub struct DynamicFuncTable {
/// Dynamically managed storage space for this table. The length of this
/// vector is the current size of the table.
elements: Vec<FuncTableElem>,
/// Maximum size that `elements` can grow to.
maximum: Option<usize>,
/// Whether elements of this table are initialized lazily.
lazy_init: bool,
}
pub struct DynamicGcRefTable {
/// Dynamically managed storage space for this table. The length of this
/// vector is the current size of the table.
elements: Vec<Option<VMGcRef>>,
/// Maximum size that `elements` can grow to.
maximum: Option<usize>,
}
/// Represents an instance's table.
pub enum Table {
/// A "static" table where storage space is managed externally, currently
/// used with the pooling allocator.
Static(StaticTable),
/// A "dynamic" table where table storage space is dynamically allocated via
/// `malloc` (aka Rust's `Vec`).
Dynamic(DynamicTable),
}
impl From<StaticTable> for Table {
fn from(value: StaticTable) -> Self {
Self::Static(value)
}
}
impl From<StaticFuncTable> for Table {
fn from(value: StaticFuncTable) -> Self {
let t: StaticTable = value.into();
t.into()
}
}
impl From<StaticGcRefTable> for Table {
fn from(value: StaticGcRefTable) -> Self {
let t: StaticTable = value.into();
t.into()
}
}
impl From<DynamicTable> for Table {
fn from(value: DynamicTable) -> Self {
Self::Dynamic(value)
}
}
impl From<DynamicFuncTable> for Table {
fn from(value: DynamicFuncTable) -> Self {
let t: DynamicTable = value.into();
t.into()
}
}
impl From<DynamicGcRefTable> for Table {
fn from(value: DynamicGcRefTable) -> Self {
let t: DynamicTable = value.into();
t.into()
}
}
fn wasm_to_table_type(ty: WasmRefType) -> TableElementType {
match ty.heap_type.top() {
WasmHeapTopType::Func => TableElementType::Func,
WasmHeapTopType::Any | WasmHeapTopType::Extern => TableElementType::GcRef,
WasmHeapTopType::Cont => todo!(), // FIXME: #10248 stack switching support.
}
}
/// Allocate dynamic table elements of the given length.
///
/// Relies on the fact that our tables' elements are initialized to `None`,
/// which is represented by zero, to allocate pre-zeroed memory from the global
/// allocator and avoid manual zero-initialization.
///
/// # Safety
///
/// Should only ever be called with a `T` that is a table element type and where
/// `Option<T>`'s `None` variant is represented with zero.
unsafe fn alloc_dynamic_table_elements<T>(len: usize) -> Result<Vec<Option<T>>> {
debug_assert!(
core::mem::MaybeUninit::<Option<T>>::zeroed()
.assume_init()
.is_none(),
"null table elements are represented with zeroed memory"
);
if len == 0 {
return Ok(vec![]);
}
let align = mem::align_of::<Option<T>>();
let size = mem::size_of::<Option<T>>();
let size = size.next_multiple_of(align);
let size = size.checked_mul(len).unwrap();
let layout = Layout::from_size_align(size, align)?;
let ptr = alloc::alloc::alloc_zeroed(layout);
ensure!(!ptr.is_null(), "failed to allocate memory for table");
let elems = Vec::<Option<T>>::from_raw_parts(ptr.cast(), len, len);
debug_assert!(elems.iter().all(|e| e.is_none()));
Ok(elems)
}
impl Table {
/// Create a new dynamic (movable) table instance for the specified table plan.
pub fn new_dynamic(
ty: &wasmtime_environ::Table,
tunables: &Tunables,
store: &mut dyn VMStore,
) -> Result<Self> {
let (minimum, maximum) = Self::limit_new(ty, store)?;
match wasm_to_table_type(ty.ref_type) {
TableElementType::Func => Ok(Self::from(DynamicFuncTable {
elements: unsafe { alloc_dynamic_table_elements(minimum)? },
maximum,
lazy_init: tunables.table_lazy_init,
})),
TableElementType::GcRef => Ok(Self::from(DynamicGcRefTable {
elements: unsafe { alloc_dynamic_table_elements(minimum)? },
maximum,
})),
}
}
/// Create a new static (immovable) table instance for the specified table plan.
pub unsafe fn new_static(
ty: &wasmtime_environ::Table,
tunables: &Tunables,
data: SendSyncPtr<[u8]>,
store: &mut dyn VMStore,
) -> Result<Self> {
let (minimum, maximum) = Self::limit_new(ty, store)?;
let size = minimum;
let max = maximum.unwrap_or(usize::MAX);
match wasm_to_table_type(ty.ref_type) {
TableElementType::Func => {
let len = {
let data = data.as_non_null().as_ref();
let (before, data, after) = data.align_to::<FuncTableElem>();
assert!(before.is_empty());
assert!(after.is_empty());
data.len()
};
ensure!(
usize::try_from(ty.limits.min).unwrap() <= len,
"initial table size of {} exceeds the pooling allocator's \
configured maximum table size of {len} elements",
ty.limits.min,
);
let data = SendSyncPtr::new(NonNull::slice_from_raw_parts(
data.as_non_null().cast::<FuncTableElem>(),
cmp::min(len, max),
));
Ok(Self::from(StaticFuncTable {
data,
size,
lazy_init: tunables.table_lazy_init,
}))
}
TableElementType::GcRef => {
let len = {
let data = data.as_non_null().as_ref();
let (before, data, after) = data.align_to::<Option<VMGcRef>>();
assert!(before.is_empty());
assert!(after.is_empty());
data.len()
};
ensure!(
usize::try_from(ty.limits.min).unwrap() <= len,
"initial table size of {} exceeds the pooling allocator's \
configured maximum table size of {len} elements",
ty.limits.min,
);
let data = SendSyncPtr::new(NonNull::slice_from_raw_parts(
data.as_non_null().cast::<Option<VMGcRef>>(),
cmp::min(len, max),
));
Ok(Self::from(StaticGcRefTable { data, size }))
}
}
}
// Calls the `store`'s limiter to optionally prevent the table from being created.
//
// Returns the minimum and maximum size of the table if the table can be created.
fn limit_new(
ty: &wasmtime_environ::Table,
store: &mut dyn VMStore,
) -> Result<(usize, Option<usize>)> {
// No matter how the table limits are specified
// The table size is limited by the host's pointer size
let absolute_max = usize::MAX;
// If the minimum overflows the host's pointer size, then we can't satisfy this request.
// We defer the error to later so the `store` can be informed.
let minimum = usize::try_from(ty.limits.min).ok();
// The maximum size of the table is limited by:
// * the host's pointer size.
// * the table's maximum size if defined.
// * if the table is 64-bit.
let maximum = match (ty.limits.max, ty.idx_type) {
(Some(max), _) => usize::try_from(max).ok(),
(None, IndexType::I64) => usize::try_from(u64::MAX).ok(),
(None, IndexType::I32) => usize::try_from(u32::MAX).ok(),
};
// Inform the store's limiter what's about to happen.
if !store.table_growing(0, minimum.unwrap_or(absolute_max), maximum)? {
bail!(
"table minimum size of {} elements exceeds table limits",
ty.limits.min
);
}
// At this point we need to actually handle overflows, so bail out with
// an error if we made it this far.
let minimum = minimum.ok_or_else(|| {
format_err!(
"table minimum size of {} elements exceeds table limits",
ty.limits.min
)
})?;
Ok((minimum, maximum))
}
/// Returns the type of the elements in this table.
pub fn element_type(&self) -> TableElementType {
match self {
Table::Static(StaticTable::Func(_)) | Table::Dynamic(DynamicTable::Func(_)) => {
TableElementType::Func
}
Table::Static(StaticTable::GcRef(_)) | Table::Dynamic(DynamicTable::GcRef(_)) => {
TableElementType::GcRef
}
}
}
/// Returns whether or not the underlying storage of the table is "static".
#[cfg(feature = "pooling-allocator")]
pub(crate) fn is_static(&self) -> bool {
matches!(self, Table::Static(_))
}
/// Returns the number of allocated elements.
pub fn size(&self) -> usize {
match self {
Table::Static(StaticTable::Func(StaticFuncTable { size, .. })) => *size,
Table::Static(StaticTable::GcRef(StaticGcRefTable { size, .. })) => *size,
Table::Dynamic(DynamicTable::Func(DynamicFuncTable { elements, .. })) => elements.len(),
Table::Dynamic(DynamicTable::GcRef(DynamicGcRefTable { elements, .. })) => {
elements.len()
}
}
}
/// Returns the maximum number of elements at runtime.
///
/// Returns `None` if the table is unbounded.
///
/// The runtime maximum may not be equal to the maximum from the table's Wasm type
/// when it is being constrained by an instance allocator.
pub fn maximum(&self) -> Option<usize> {
match self {
Table::Static(StaticTable::Func(StaticFuncTable { data, .. })) => Some(data.len()),
Table::Static(StaticTable::GcRef(StaticGcRefTable { data, .. })) => Some(data.len()),
Table::Dynamic(DynamicTable::Func(DynamicFuncTable { maximum, .. })) => *maximum,
Table::Dynamic(DynamicTable::GcRef(DynamicGcRefTable { maximum, .. })) => *maximum,
}
}
/// Initializes the contents of this table to the specified function
///
/// # Panics
///
/// Panics if the table is not a function table.
pub fn init_func(
&mut self,
dst: u64,
items: impl ExactSizeIterator<Item = Option<NonNull<VMFuncRef>>>,
) -> Result<(), Trap> {
let dst = usize::try_from(dst).map_err(|_| Trap::TableOutOfBounds)?;
let (funcrefs, lazy_init) = self.funcrefs_mut();
let elements = funcrefs
.get_mut(dst..)
.and_then(|s| s.get_mut(..items.len()))
.ok_or(Trap::TableOutOfBounds)?;
for (item, slot) in items.zip(elements) {
*slot = TaggedFuncRef::from(item, lazy_init);
}
Ok(())
}
/// Fill `table[dst..]` with values from `items`
///
/// Returns a trap error on out-of-bounds accesses.
pub fn init_gc_refs(
&mut self,
dst: u64,
items: impl ExactSizeIterator<Item = Option<VMGcRef>>,
) -> Result<(), Trap> {
let dst = usize::try_from(dst).map_err(|_| Trap::TableOutOfBounds)?;
let elements = self
.gc_refs_mut()
.get_mut(dst..)
.and_then(|s| s.get_mut(..items.len()))
.ok_or(Trap::TableOutOfBounds)?;
for (item, slot) in items.zip(elements) {
*slot = item;
}
Ok(())
}
/// Fill `table[dst..dst + len]` with `val`.
///
/// Returns a trap error on out-of-bounds accesses.
///
/// # Panics
///
/// Panics if `val` does not have a type that matches this table, or if
/// `gc_store.is_none()` and this is a table of GC references.
pub fn fill(
&mut self,
gc_store: Option<&mut GcStore>,
dst: u64,
val: TableElement,
len: u64,
) -> Result<(), Trap> {
let start = usize::try_from(dst).map_err(|_| Trap::TableOutOfBounds)?;
let len = usize::try_from(len).map_err(|_| Trap::TableOutOfBounds)?;
let end = start
.checked_add(len)
.ok_or_else(|| Trap::TableOutOfBounds)?;
if end > self.size() {
return Err(Trap::TableOutOfBounds);
}
match val {
TableElement::FuncRef(f) => {
let (funcrefs, lazy_init) = self.funcrefs_mut();
funcrefs[start..end].fill(TaggedFuncRef::from(f, lazy_init));
}
TableElement::GcRef(r) => {
let gc_store =
gc_store.expect("must provide a GcStore for tables of GC references");
// Clone the init GC reference into each table slot.
for slot in &mut self.gc_refs_mut()[start..end] {
gc_store.write_gc_ref(slot, r.as_ref());
}
// Drop the init GC reference, since we aren't holding onto this
// reference anymore, only the clones in the table.
if let Some(r) = r {
gc_store.drop_gc_ref(r);
}
}
TableElement::UninitFunc => {
let (funcrefs, _lazy_init) = self.funcrefs_mut();
funcrefs[start..end].fill(TaggedFuncRef::UNINIT);
}
}
Ok(())
}
/// Grow table by the specified amount of elements.
///
/// Returns the previous size of the table if growth is successful.
///
/// Returns `None` if table can't be grown by the specified amount of
/// elements, or if the `init_value` is the wrong kind of table element.
///
/// # Panics
///
/// Panics if `init_value` does not have a type that matches this table.
///
/// # Unsafety
///
/// Resizing the table can reallocate its internal elements buffer. This
/// table's instance's `VMContext` has raw pointers to the elements buffer
/// that are used by Wasm, and they need to be fixed up before we call into
/// Wasm again. Failure to do so will result in use-after-free inside Wasm.
///
/// Generally, prefer using `InstanceHandle::table_grow`, which encapsulates
/// this unsafety.
pub unsafe fn grow(
&mut self,
delta: u64,
init_value: TableElement,
store: &mut dyn VMStore,
) -> Result<Option<usize>, Error> {
let old_size = self.size();
// Don't try to resize the table if its size isn't changing, just return
// success.
if delta == 0 {
return Ok(Some(old_size));
}
// Cannot return `Trap::TableOutOfBounds` here because `impl std::error::Error for Trap` is not available in no-std.
let delta =
usize::try_from(delta).map_err(|_| format_err!("delta exceeds host pointer size"))?;
let new_size = match old_size.checked_add(delta) {
Some(s) => s,
None => {
store.table_grow_failed(format_err!("overflow calculating new table size"))?;
return Ok(None);
}
};
if !store.table_growing(old_size, new_size, self.maximum())? {
return Ok(None);
}
// The WebAssembly spec requires failing a `table.grow` request if
// it exceeds the declared limits of the table. We may have set lower
// limits in the instance allocator as well.
if let Some(max) = self.maximum() {
if new_size > max {
store.table_grow_failed(format_err!("Table maximum size exceeded"))?;
return Ok(None);
}
}
debug_assert!(self.type_matches(&init_value));
// First resize the storage and then fill with the init value
match self {
Table::Static(StaticTable::Func(StaticFuncTable { data, size, .. })) => {
unsafe {
debug_assert!(data.as_ref()[*size..new_size].iter().all(|x| x.is_none()));
}
*size = new_size;
}
Table::Static(StaticTable::GcRef(StaticGcRefTable { data, size })) => {
unsafe {
debug_assert!(data.as_ref()[*size..new_size].iter().all(|x| x.is_none()));
}
*size = new_size;
}
// These calls to `resize` could move the base address of
// `elements`. If this table's limits declare it to be fixed-size,
// then during AOT compilation we may have promised Cranelift that
// the table base address won't change, so it is allowed to optimize
// loading the base address. However, in that case the above checks
// that delta is non-zero and the new size doesn't exceed the
// maximum mean we can't get here.
Table::Dynamic(DynamicTable::Func(DynamicFuncTable { elements, .. })) => {
elements.resize(usize::try_from(new_size).unwrap(), None);
}
Table::Dynamic(DynamicTable::GcRef(DynamicGcRefTable { elements, .. })) => {
elements.resize_with(usize::try_from(new_size).unwrap(), || None);
}
}
self.fill(
store.store_opaque_mut().optional_gc_store_mut()?,
u64::try_from(old_size).unwrap(),
init_value,
u64::try_from(delta).unwrap(),
)
.expect("table should not be out of bounds");
Ok(Some(old_size))
}
/// Get reference to the specified element.
///
/// Returns `None` if the index is out of bounds.
///
/// Panics if this is a table of GC references and `gc_store` is `None`.
pub fn get(&self, gc_store: Option<&mut GcStore>, index: u64) -> Option<TableElement> {
let index = usize::try_from(index).ok()?;
match self.element_type() {
TableElementType::Func => {
let (funcrefs, lazy_init) = self.funcrefs();
funcrefs
.get(index)
.copied()
.map(|e| e.into_table_element(lazy_init))
}
TableElementType::GcRef => self.gc_refs().get(index).map(|r| {
let r = r.as_ref().map(|r| gc_store.unwrap().clone_gc_ref(r));
TableElement::GcRef(r)
}),
}
}
/// Set reference to the specified element.
///
/// # Errors
///
/// Returns an error if `index` is out of bounds or if this table type does
/// not match the element type.
///
/// # Panics
///
/// Panics if `elem` is not of the right type for this table.
pub fn set(&mut self, index: u64, elem: TableElement) -> Result<(), ()> {
let index: usize = index.try_into().map_err(|_| ())?;
match elem {
TableElement::FuncRef(f) => {
let (funcrefs, lazy_init) = self.funcrefs_mut();
*funcrefs.get_mut(index).ok_or(())? = TaggedFuncRef::from(f, lazy_init);
}
TableElement::UninitFunc => {
let (funcrefs, _lazy_init) = self.funcrefs_mut();
*funcrefs.get_mut(index).ok_or(())? = TaggedFuncRef::UNINIT;
}
TableElement::GcRef(e) => {
*self.gc_refs_mut().get_mut(index).ok_or(())? = e;
}
}
Ok(())
}
/// Copy `len` elements from `src_table[src_index..]` into `dst_table[dst_index..]`.
///
/// # Errors
///
/// Returns an error if the range is out of bounds of either the source or
/// destination tables.
pub unsafe fn copy(
gc_store: Option<&mut GcStore>,
dst_table: *mut Self,
src_table: *mut Self,
dst_index: u64,
src_index: u64,
len: u64,
) -> Result<(), Trap> {
// https://webassembly.github.io/bulk-memory-operations/core/exec/instructions.html#exec-table-copy
let src_index = usize::try_from(src_index).map_err(|_| Trap::TableOutOfBounds)?;
let dst_index = usize::try_from(dst_index).map_err(|_| Trap::TableOutOfBounds)?;
let len = usize::try_from(len).map_err(|_| Trap::TableOutOfBounds)?;
if src_index
.checked_add(len)
.map_or(true, |n| n > (*src_table).size())
|| dst_index
.checked_add(len)
.map_or(true, |m| m > (*dst_table).size())
{
return Err(Trap::TableOutOfBounds);
}
debug_assert!(
(*dst_table).element_type() == (*src_table).element_type(),
"table element type mismatch"
);
let src_range = src_index..src_index + len;
let dst_range = dst_index..dst_index + len;
// Check if the tables are the same as we cannot mutably borrow and also borrow the same `RefCell`
if ptr::eq(dst_table, src_table) {
(*dst_table).copy_elements_within(gc_store, dst_range, src_range);
} else {
Self::copy_elements(gc_store, &mut *dst_table, &*src_table, dst_range, src_range);
}
Ok(())
}
/// Return a `VMTableDefinition` for exposing the table to compiled wasm code.
pub fn vmtable(&mut self) -> VMTableDefinition {
match self {
Table::Static(StaticTable::Func(StaticFuncTable { data, size, .. })) => {
VMTableDefinition {
base: data.cast().into(),
current_elements: *size,
}
}
Table::Static(StaticTable::GcRef(StaticGcRefTable { data, size })) => {
VMTableDefinition {
base: data.cast().into(),
current_elements: *size,
}
}
Table::Dynamic(DynamicTable::Func(DynamicFuncTable { elements, .. })) => {
VMTableDefinition {
base: NonNull::<[FuncTableElem]>::from(&mut elements[..])
.cast()
.into(),
current_elements: elements.len(),
}
}
Table::Dynamic(DynamicTable::GcRef(DynamicGcRefTable { elements, .. })) => {
VMTableDefinition {
base: NonNull::<[Option<VMGcRef>]>::from(&mut elements[..])
.cast()
.into(),
current_elements: elements.len(),
}
}
}
}
fn type_matches(&self, val: &TableElement) -> bool {
self.element_type().matches(val)
}
fn funcrefs(&self) -> (&[TaggedFuncRef], bool) {
assert_eq!(self.element_type(), TableElementType::Func);
match self {
Self::Dynamic(DynamicTable::Func(DynamicFuncTable {
elements,
lazy_init,
..
})) => (
unsafe { slice::from_raw_parts(elements.as_ptr().cast(), elements.len()) },
*lazy_init,
),
Self::Static(StaticTable::Func(StaticFuncTable {
data,
size,
lazy_init,
})) => (
unsafe {
slice::from_raw_parts(data.as_ptr().cast(), usize::try_from(*size).unwrap())
},
*lazy_init,
),
_ => unreachable!(),
}
}
fn funcrefs_mut(&mut self) -> (&mut [TaggedFuncRef], bool) {
assert_eq!(self.element_type(), TableElementType::Func);
match self {
Self::Dynamic(DynamicTable::Func(DynamicFuncTable {
elements,
lazy_init,
..
})) => (
unsafe { slice::from_raw_parts_mut(elements.as_mut_ptr().cast(), elements.len()) },
*lazy_init,
),
Self::Static(StaticTable::Func(StaticFuncTable {
data,
size,
lazy_init,
})) => (
unsafe {
slice::from_raw_parts_mut(data.as_ptr().cast(), usize::try_from(*size).unwrap())
},
*lazy_init,
),
_ => unreachable!(),
}
}
fn gc_refs(&self) -> &[Option<VMGcRef>] {
assert_eq!(self.element_type(), TableElementType::GcRef);
match self {
Self::Dynamic(DynamicTable::GcRef(DynamicGcRefTable { elements, .. })) => elements,
Self::Static(StaticTable::GcRef(StaticGcRefTable { data, size })) => unsafe {
&data.as_non_null().as_ref()[..usize::try_from(*size).unwrap()]
},
_ => unreachable!(),
}
}
/// Get this table's GC references as a slice.
///
/// Panics if this is not a table of GC references.
pub fn gc_refs_mut(&mut self) -> &mut [Option<VMGcRef>] {
assert_eq!(self.element_type(), TableElementType::GcRef);
match self {
Self::Dynamic(DynamicTable::GcRef(DynamicGcRefTable { elements, .. })) => elements,
Self::Static(StaticTable::GcRef(StaticGcRefTable { data, size })) => unsafe {
&mut data.as_non_null().as_mut()[..usize::try_from(*size).unwrap()]
},
_ => unreachable!(),
}
}
fn copy_elements(
gc_store: Option<&mut GcStore>,
dst_table: &mut Self,
src_table: &Self,
dst_range: Range<usize>,
src_range: Range<usize>,
) {
// This can only be used when copying between different tables
debug_assert!(!ptr::eq(dst_table, src_table));
let ty = dst_table.element_type();
match ty {
TableElementType::Func => {
// `funcref` are `Copy`, so just do a mempcy
let (dst_funcrefs, _lazy_init) = dst_table.funcrefs_mut();
let (src_funcrefs, _lazy_init) = src_table.funcrefs();
dst_funcrefs[dst_range].copy_from_slice(&src_funcrefs[src_range]);
}
TableElementType::GcRef => {
assert_eq!(
dst_range.end - dst_range.start,
src_range.end - src_range.start
);
assert!(dst_range.end <= dst_table.gc_refs().len());
assert!(src_range.end <= src_table.gc_refs().len());
let gc_store = gc_store.unwrap();
for (dst, src) in dst_range.zip(src_range) {
gc_store.write_gc_ref(
&mut dst_table.gc_refs_mut()[dst],
src_table.gc_refs()[src].as_ref(),
);
}
}
}
}
fn copy_elements_within(
&mut self,
gc_store: Option<&mut GcStore>,
dst_range: Range<usize>,
src_range: Range<usize>,
) {
assert_eq!(
dst_range.end - dst_range.start,
src_range.end - src_range.start
);
// This is a no-op.
if src_range.start == dst_range.start {
return;
}
let ty = self.element_type();
match ty {
TableElementType::Func => {
// `funcref` are `Copy`, so just do a memmove
let (funcrefs, _lazy_init) = self.funcrefs_mut();
funcrefs.copy_within(src_range, dst_range.start);
}
TableElementType::GcRef => {
let gc_store = gc_store.unwrap();
// We need to clone each `externref` while handling overlapping
// ranges
let elements = self.gc_refs_mut();
if dst_range.start < src_range.start {
for (d, s) in dst_range.zip(src_range) {
let (ds, ss) = elements.split_at_mut(s);
let dst = &mut ds[d];
let src = ss[0].as_ref();
gc_store.write_gc_ref(dst, src);
}
} else {
for (s, d) in src_range.rev().zip(dst_range.rev()) {
let (ss, ds) = elements.split_at_mut(d);
let dst = &mut ds[0];
let src = ss[s].as_ref();
gc_store.write_gc_ref(dst, src);
}
}
}
}
}
}
// The default table representation is an empty funcref table that cannot grow.
impl Default for Table {
fn default() -> Self {
Self::from(StaticFuncTable {
data: SendSyncPtr::new(NonNull::from(&mut [])),
size: 0,
lazy_init: false,
})
}
}