Lines Matching refs:expr
324 (@get u8 $reg:expr) => ($reg.get_i32() as u8); in call_indirect_host()
325 (@get u32 $reg:expr) => ($reg.get_u32()); in call_indirect_host()
326 (@get u64 $reg:expr) => ($reg.get_u64()); in call_indirect_host()
327 (@get f32 $reg:expr) => (unreachable::<f32, _>($reg)); in call_indirect_host()
328 (@get f64 $reg:expr) => (unreachable::<f64, _>($reg)); in call_indirect_host()
329 (@get i8x16 $reg:expr) => (unreachable::<i8x16, _>($reg)); in call_indirect_host()
330 (@get f32x4 $reg:expr) => (unreachable::<f32x4, _>($reg)); in call_indirect_host()
331 (@get f64x2 $reg:expr) => (unreachable::<f64x2, _>($reg)); in call_indirect_host()
332 (@get vmctx $reg:expr) => ($reg.get_ptr()); in call_indirect_host()
333 (@get pointer $reg:expr) => ($reg.get_ptr()); in call_indirect_host()
334 (@get ptr $reg:expr) => ($reg.get_ptr()); in call_indirect_host()
335 (@get nonnull $reg:expr) => (NonNull::new($reg.get_ptr()).unwrap()); in call_indirect_host()
336 (@get ptr_u8 $reg:expr) => ($reg.get_ptr()); in call_indirect_host()
337 (@get ptr_u16 $reg:expr) => ($reg.get_ptr()); in call_indirect_host()
338 (@get ptr_size $reg:expr) => ($reg.get_ptr()); in call_indirect_host()
339 (@get size $reg:expr) => ($reg.get_ptr::<u8>() as usize); in call_indirect_host()
343 (@set bool $src:expr => $dst:expr) => ($dst.set_i32(i32::from($src))); in call_indirect_host()
344 (@set u32 $src:expr => $dst:expr) => ($dst.set_u32($src)); in call_indirect_host()
345 (@set u64 $src:expr => $dst:expr) => ($dst.set_u64($src)); in call_indirect_host()
346 (@set f32 $src:expr => $dst:expr) => (unreachable::<f32, _>(($dst, $src))); in call_indirect_host()
347 (@set f64 $src:expr => $dst:expr) => (unreachable::<f64, _>(($dst, $src))); in call_indirect_host()
348 (@set i8x16 $src:expr => $dst:expr) => (unreachable::<i8x16, _>(($dst, $src))); in call_indirect_host()
349 (@set f32x4 $src:expr => $dst:expr) => (unreachable::<f32x4, _>(($dst, $src))); in call_indirect_host()
350 (@set f64x2 $src:expr => $dst:expr) => (unreachable::<f64x2, _>(($dst, $src))); in call_indirect_host()
351 (@set pointer $src:expr => $dst:expr) => ($dst.set_ptr($src)); in call_indirect_host()
352 (@set size $src:expr => $dst:expr) => ($dst.set_ptr($src as *mut u8)); in call_indirect_host()