rune/runtime/function.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
use core::fmt;
use core::future::Future;
use ::rust_alloc::sync::Arc;
use crate as rune;
use crate::alloc::fmt::TryWrite;
use crate::alloc::prelude::*;
use crate::alloc::{self, Box, Vec};
use crate::function;
use crate::runtime;
use crate::runtime::vm::Isolated;
use crate::shared::AssertSend;
use crate::Any;
use crate::Hash;
use super::{
Args, Call, ConstValue, Dynamic, Formatter, FromValue, FunctionHandler, GuardedArgs,
InstAddress, Output, OwnedTuple, Rtti, RuntimeContext, RuntimeError, Stack, Unit, Value, Vm,
VmCall, VmErrorKind, VmHalt, VmResult,
};
/// The type of a function in Rune.
///
/// Functions can be called using call expression syntax, such as `<expr>()`.
///
/// There are multiple different kind of things which can be coerced into a
/// function in Rune:
/// * Regular functions.
/// * Closures (which might or might not capture their environment).
/// * Built-in constructors for tuple types (tuple structs, tuple variants).
///
/// # Examples
///
/// ```rune
/// // Captures the constructor for the `Some(<value>)` tuple variant.
/// let build_some = Some;
/// assert_eq!(build_some(42), Some(42));
///
/// fn build(value) {
/// Some(value)
/// }
///
/// // Captures the function previously defined.
/// let build_some = build;
/// assert_eq!(build_some(42), Some(42));
/// ```
#[derive(Any, TryClone)]
#[repr(transparent)]
#[rune(item = ::std::ops)]
pub struct Function(FunctionImpl<Value>);
impl Function {
/// Construct a [Function] from a Rust closure.
///
/// # Examples
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::Function;
/// use std::sync::Arc;
///
/// let mut sources = rune::sources! {
/// entry => {
/// pub fn main(function) {
/// function(41)
/// }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
///
/// let function = Function::new(|value: u32| value + 1);
///
/// assert_eq!(function.type_hash(), Hash::EMPTY);
///
/// let value = vm.call(["main"], (function,))?;
/// let value: u32 = rune::from_value(value)?;
/// assert_eq!(value, 42);
/// # Ok::<_, rune::support::Error>(())
/// ```
///
/// Asynchronous functions:
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::Function;
/// use std::sync::Arc;
///
/// # futures_executor::block_on(async move {
/// let mut sources = rune::sources! {
/// entry => {
/// pub async fn main(function) {
/// function(41).await
/// }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
///
/// let function = Function::new(|value: u32| async move { value + 1 });
///
/// assert_eq!(function.type_hash(), Hash::EMPTY);
///
/// let value = vm.async_call(["main"], (function,)).await?;
/// let value: u32 = rune::from_value(value)?;
/// assert_eq!(value, 42);
/// # Ok::<_, rune::support::Error>(())
/// # })?;
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn new<F, A, K>(f: F) -> Self
where
F: function::Function<A, K>,
K: function::FunctionKind,
{
Self(FunctionImpl {
inner: Inner::FnHandler(FnHandler {
handler: Arc::new(move |stack, addr, args, output| {
f.fn_call(stack, addr, args, output)
}),
hash: Hash::EMPTY,
}),
})
}
/// See [`Function::new`].
#[deprecated = "Use Function::new() instead"]
pub fn function<F, A, K>(f: F) -> Self
where
F: function::Function<A, K>,
K: function::FunctionKind,
{
Self::new(f)
}
/// See [`Function::function`].
#[deprecated = "Use Function::new() instead"]
pub fn async_function<F, A>(f: F) -> Self
where
F: function::Function<A, function::Async>,
{
Self::new(f)
}
/// Perform an asynchronous call over the function which also implements
/// [Send].
pub async fn async_send_call<A, T>(&self, args: A) -> VmResult<T>
where
A: Send + GuardedArgs,
T: Send + FromValue,
{
self.0.async_send_call(args).await
}
/// Perform a call over the function represented by this function pointer.
///
/// # Examples
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::Function;
/// use std::sync::Arc;
///
/// let mut sources = rune::sources! {
/// entry => {
/// fn add(a, b) {
/// a + b
/// }
///
/// pub fn main() { add }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
/// let value = vm.call(["main"], ())?;
///
/// let value: Function = rune::from_value(value)?;
/// assert_eq!(value.call::<u32>((1, 2)).into_result()?, 3);
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn call<T>(&self, args: impl GuardedArgs) -> VmResult<T>
where
T: FromValue,
{
self.0.call(args)
}
/// Call with the given virtual machine. This allows for certain
/// optimizations, like avoiding the allocation of a new vm state in case
/// the call is internal.
///
/// A stop reason will be returned in case the function call results in
/// a need to suspend the execution.
pub(crate) fn call_with_vm(
&self,
vm: &mut Vm,
addr: InstAddress,
args: usize,
out: Output,
) -> VmResult<Option<VmHalt>> {
self.0.call_with_vm(vm, addr, args, out)
}
/// Create a function pointer from a handler.
pub(crate) fn from_handler(handler: Arc<FunctionHandler>, hash: Hash) -> Self {
Self(FunctionImpl::from_handler(handler, hash))
}
/// Create a function pointer from an offset.
pub(crate) fn from_vm_offset(
context: Arc<RuntimeContext>,
unit: Arc<Unit>,
offset: usize,
call: Call,
args: usize,
hash: Hash,
) -> Self {
Self(FunctionImpl::from_offset(
context, unit, offset, call, args, hash,
))
}
/// Create a function pointer from an offset.
pub(crate) fn from_vm_closure(
context: Arc<RuntimeContext>,
unit: Arc<Unit>,
offset: usize,
call: Call,
args: usize,
environment: Box<[Value]>,
hash: Hash,
) -> Self {
Self(FunctionImpl::from_closure(
context,
unit,
offset,
call,
args,
environment,
hash,
))
}
/// Create a function pointer from an offset.
pub(crate) fn from_unit_struct(rtti: Arc<Rtti>) -> Self {
Self(FunctionImpl::from_unit_struct(rtti))
}
/// Create a function pointer from an offset.
pub(crate) fn from_tuple_struct(rtti: Arc<Rtti>, args: usize) -> Self {
Self(FunctionImpl::from_tuple_struct(rtti, args))
}
/// Type [Hash][struct@Hash] of the underlying function.
///
/// # Examples
///
/// The type hash of a top-level function matches what you get out of
/// [Hash::type_hash].
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::Function;
/// use std::sync::Arc;
///
/// let mut sources = rune::sources! {
/// entry => {
/// fn pony() { }
///
/// pub fn main() { pony }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
/// let pony = vm.call(["main"], ())?;
/// let pony: Function = rune::from_value(pony)?;
///
/// assert_eq!(pony.type_hash(), Hash::type_hash(["pony"]));
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn type_hash(&self) -> Hash {
self.0.type_hash()
}
/// Try to convert into a [SyncFunction]. This might not be possible if this
/// function is something which is not [Sync], like a closure capturing
/// context which is not thread-safe.
///
/// # Examples
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::Function;
/// use std::sync::Arc;
///
/// let mut sources = rune::sources! {
/// entry => {
/// fn pony() { }
///
/// pub fn main() { pony }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
/// let pony = vm.call(["main"], ())?;
/// let pony: Function = rune::from_value(pony)?;
///
/// // This is fine, since `pony` is a free function.
/// let pony = pony.into_sync()?;
///
/// assert_eq!(pony.type_hash(), Hash::type_hash(["pony"]));
/// # Ok::<_, rune::support::Error>(())
/// ```
///
/// The following *does not* work, because we return a closure which tries
/// to make use of a [Generator][crate::runtime::Generator] which is not a
/// constant value.
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::Function;
/// use std::sync::Arc;
///
/// let mut sources = rune::sources! {
/// entry => {
/// fn generator() {
/// yield 42;
/// }
///
/// pub fn main() {
/// let g = generator();
///
/// move || {
/// g.next()
/// }
/// }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
/// let closure = vm.call(["main"], ())?;
/// let closure: Function = rune::from_value(closure)?;
///
/// // This is *not* fine since the returned closure has captured a
/// // generator which is not a constant value.
/// assert!(closure.into_sync().is_err());
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn into_sync(self) -> Result<SyncFunction, RuntimeError> {
Ok(SyncFunction(self.0.into_sync()?))
}
/// Clone a function.
///
/// # Examples
///
/// ```rune
/// fn function() {
/// 42
/// }
///
/// let a = function;
/// let b = a.clone();
/// assert_eq!(a(), b());
/// ```
#[rune::function(keep, protocol = CLONE)]
fn clone(&self) -> VmResult<Function> {
VmResult::Ok(vm_try!(self.try_clone()))
}
/// Debug format a function.
///
/// # Examples
///
/// ```rune
/// fn function() {
/// 42
/// }
///
/// println!("{function:?}");
/// ``
#[rune::function(keep, protocol = DEBUG_FMT)]
fn debug_fmt(&self, f: &mut Formatter) -> VmResult<()> {
vm_write!(f, "{self:?}")
}
}
/// A callable sync function. This currently only supports a subset of values
/// that are supported by the Vm.
#[repr(transparent)]
pub struct SyncFunction(FunctionImpl<ConstValue>);
assert_impl!(SyncFunction: Send + Sync);
impl SyncFunction {
/// Perform an asynchronous call over the function which also implements
/// [Send].
///
/// # Examples
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::SyncFunction;
/// use std::sync::Arc;
///
/// # futures_executor::block_on(async move {
/// let mut sources = rune::sources! {
/// entry => {
/// async fn add(a, b) {
/// a + b
/// }
///
/// pub fn main() { add }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
/// let add = vm.call(["main"], ())?;
/// let add: SyncFunction = rune::from_value(add)?;
///
/// let value = add.async_send_call::<u32>((1, 2)).await.into_result()?;
/// assert_eq!(value, 3);
/// # Ok::<_, rune::support::Error>(())
/// # })?;
/// # Ok::<_, rune::support::Error>(())
/// ```
pub async fn async_send_call<T>(&self, args: impl GuardedArgs + Send) -> VmResult<T>
where
T: Send + FromValue,
{
self.0.async_send_call(args).await
}
/// Perform a call over the function represented by this function pointer.
///
/// # Examples
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::SyncFunction;
/// use std::sync::Arc;
///
/// let mut sources = rune::sources! {
/// entry => {
/// fn add(a, b) {
/// a + b
/// }
///
/// pub fn main() { add }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
/// let add = vm.call(["main"], ())?;
/// let add: SyncFunction = rune::from_value(add)?;
///
/// assert_eq!(add.call::<u32>((1, 2)).into_result()?, 3);
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn call<T>(&self, args: impl GuardedArgs) -> VmResult<T>
where
T: FromValue,
{
self.0.call(args)
}
/// Type [Hash][struct@Hash] of the underlying function.
///
/// # Examples
///
/// The type hash of a top-level function matches what you get out of
/// [Hash::type_hash].
///
/// ```
/// use rune::{Hash, Vm};
/// use rune::runtime::SyncFunction;
/// use std::sync::Arc;
///
/// let mut sources = rune::sources! {
/// entry => {
/// fn pony() { }
///
/// pub fn main() { pony }
/// }
/// };
///
/// let unit = rune::prepare(&mut sources).build()?;
/// let mut vm = Vm::without_runtime(Arc::new(unit));
/// let pony = vm.call(["main"], ())?;
/// let pony: SyncFunction = rune::from_value(pony)?;
///
/// assert_eq!(pony.type_hash(), Hash::type_hash(["pony"]));
/// # Ok::<_, rune::support::Error>(())
/// ```
pub fn type_hash(&self) -> Hash {
self.0.type_hash()
}
}
impl TryClone for SyncFunction {
fn try_clone(&self) -> alloc::Result<Self> {
Ok(Self(self.0.try_clone()?))
}
}
/// A stored function, of some specific kind.
struct FunctionImpl<V> {
inner: Inner<V>,
}
impl<V> TryClone for FunctionImpl<V>
where
V: TryClone,
{
#[inline]
fn try_clone(&self) -> alloc::Result<Self> {
Ok(Self {
inner: self.inner.try_clone()?,
})
}
}
impl<V> FunctionImpl<V>
where
V: TryClone,
OwnedTuple: TryFrom<Box<[V]>>,
VmErrorKind: From<<OwnedTuple as TryFrom<Box<[V]>>>::Error>,
{
fn call<T>(&self, args: impl GuardedArgs) -> VmResult<T>
where
T: FromValue,
{
let value = match &self.inner {
Inner::FnHandler(handler) => {
let count = args.count();
let size = count.max(1);
// Ensure we have space for the return value.
let mut stack = vm_try!(Stack::with_capacity(size));
let _guard = vm_try!(unsafe { args.guarded_into_stack(&mut stack) });
vm_try!(stack.resize(size));
vm_try!((handler.handler)(
&mut stack,
InstAddress::ZERO,
count,
InstAddress::ZERO.output()
));
stack.at(InstAddress::ZERO).clone()
}
Inner::FnOffset(fn_offset) => {
vm_try!(fn_offset.call(args, ()))
}
Inner::FnClosureOffset(closure) => {
let environment = vm_try!(closure.environment.try_clone());
let environment = vm_try!(OwnedTuple::try_from(environment));
vm_try!(closure.fn_offset.call(args, (environment,)))
}
Inner::FnUnitStruct(empty) => {
vm_try!(check_args(args.count(), 0));
vm_try!(Value::empty_struct(empty.rtti.clone()))
}
Inner::FnTupleStruct(tuple) => {
vm_try!(check_args(args.count(), tuple.args));
// SAFETY: We don't let the guard outlive the value.
let (args, _guard) = vm_try!(unsafe { args.guarded_into_vec() });
vm_try!(Value::tuple_struct(tuple.rtti.clone(), args))
}
};
VmResult::Ok(vm_try!(T::from_value(value)))
}
fn async_send_call<'a, A, T>(&'a self, args: A) -> impl Future<Output = VmResult<T>> + Send + 'a
where
A: 'a + Send + GuardedArgs,
T: 'a + Send + FromValue,
{
let future = async move {
let value: Value = vm_try!(self.call(args));
let value = match vm_try!(value.try_borrow_mut::<runtime::Future>()) {
Some(future) => vm_try!(future.await),
None => value,
};
VmResult::Ok(vm_try!(T::from_value(value)))
};
// Safety: Future is send because there is no way to call this
// function in a manner which allows any values from the future
// to escape outside of this future, hence it can only be
// scheduled by one thread at a time.
unsafe { AssertSend::new(future) }
}
/// Call with the given virtual machine. This allows for certain
/// optimizations, like avoiding the allocation of a new vm state in case
/// the call is internal.
///
/// A stop reason will be returned in case the function call results in
/// a need to suspend the execution.
pub(crate) fn call_with_vm(
&self,
vm: &mut Vm,
addr: InstAddress,
args: usize,
out: Output,
) -> VmResult<Option<VmHalt>> {
let reason = match &self.inner {
Inner::FnHandler(handler) => {
vm_try!((handler.handler)(vm.stack_mut(), addr, args, out));
None
}
Inner::FnOffset(fn_offset) => {
if let Some(vm_call) = vm_try!(fn_offset.call_with_vm(vm, addr, args, (), out)) {
return VmResult::Ok(Some(VmHalt::VmCall(vm_call)));
}
None
}
Inner::FnClosureOffset(closure) => {
let environment = vm_try!(closure.environment.try_clone());
let environment = vm_try!(OwnedTuple::try_from(environment));
if let Some(vm_call) =
vm_try!(closure
.fn_offset
.call_with_vm(vm, addr, args, (environment,), out))
{
return VmResult::Ok(Some(VmHalt::VmCall(vm_call)));
}
None
}
Inner::FnUnitStruct(empty) => {
vm_try!(check_args(args, 0));
vm_try!(out.store(vm.stack_mut(), || Value::empty_struct(empty.rtti.clone())));
None
}
Inner::FnTupleStruct(tuple) => {
vm_try!(check_args(args, tuple.args));
let seq = vm_try!(vm.stack().slice_at(addr, args));
let data = seq.iter().cloned();
let value = vm_try!(Dynamic::new(tuple.rtti.clone(), data));
vm_try!(out.store(vm.stack_mut(), value));
None
}
};
VmResult::Ok(reason)
}
/// Create a function pointer from a handler.
pub(crate) fn from_handler(handler: Arc<FunctionHandler>, hash: Hash) -> Self {
Self {
inner: Inner::FnHandler(FnHandler { handler, hash }),
}
}
/// Create a function pointer from an offset.
pub(crate) fn from_offset(
context: Arc<RuntimeContext>,
unit: Arc<Unit>,
offset: usize,
call: Call,
args: usize,
hash: Hash,
) -> Self {
Self {
inner: Inner::FnOffset(FnOffset {
context,
unit,
offset,
call,
args,
hash,
}),
}
}
/// Create a function pointer from an offset.
pub(crate) fn from_closure(
context: Arc<RuntimeContext>,
unit: Arc<Unit>,
offset: usize,
call: Call,
args: usize,
environment: Box<[V]>,
hash: Hash,
) -> Self {
Self {
inner: Inner::FnClosureOffset(FnClosureOffset {
fn_offset: FnOffset {
context,
unit,
offset,
call,
args,
hash,
},
environment,
}),
}
}
/// Create a function pointer from an offset.
pub(crate) fn from_unit_struct(rtti: Arc<Rtti>) -> Self {
Self {
inner: Inner::FnUnitStruct(FnUnitStruct { rtti }),
}
}
/// Create a function pointer from an offset.
pub(crate) fn from_tuple_struct(rtti: Arc<Rtti>, args: usize) -> Self {
Self {
inner: Inner::FnTupleStruct(FnTupleStruct { rtti, args }),
}
}
#[inline]
fn type_hash(&self) -> Hash {
match &self.inner {
Inner::FnHandler(FnHandler { hash, .. }) | Inner::FnOffset(FnOffset { hash, .. }) => {
*hash
}
Inner::FnClosureOffset(fco) => fco.fn_offset.hash,
Inner::FnUnitStruct(func) => func.rtti.type_hash(),
Inner::FnTupleStruct(func) => func.rtti.type_hash(),
}
}
}
impl FunctionImpl<Value> {
/// Try to convert into a [SyncFunction].
fn into_sync(self) -> Result<FunctionImpl<ConstValue>, RuntimeError> {
let inner = match self.inner {
Inner::FnClosureOffset(closure) => {
let mut env = Vec::try_with_capacity(closure.environment.len())?;
for value in Vec::from(closure.environment) {
env.try_push(FromValue::from_value(value)?)?;
}
Inner::FnClosureOffset(FnClosureOffset {
fn_offset: closure.fn_offset,
environment: env.try_into_boxed_slice()?,
})
}
Inner::FnHandler(inner) => Inner::FnHandler(inner),
Inner::FnOffset(inner) => Inner::FnOffset(inner),
Inner::FnUnitStruct(inner) => Inner::FnUnitStruct(inner),
Inner::FnTupleStruct(inner) => Inner::FnTupleStruct(inner),
};
Ok(FunctionImpl { inner })
}
}
impl fmt::Debug for Function {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match &self.0.inner {
Inner::FnHandler(handler) => {
write!(f, "native function ({:p})", handler.handler.as_ref())?;
}
Inner::FnOffset(offset) => {
write!(f, "{} function (at: 0x{:x})", offset.call, offset.offset)?;
}
Inner::FnClosureOffset(closure) => {
write!(
f,
"closure (at: 0x{:x}, env:{:?})",
closure.fn_offset.offset, closure.environment
)?;
}
Inner::FnUnitStruct(empty) => {
write!(f, "empty {}", empty.rtti.item)?;
}
Inner::FnTupleStruct(tuple) => {
write!(f, "tuple {}", tuple.rtti.item)?;
}
}
Ok(())
}
}
#[derive(Debug)]
enum Inner<V> {
/// A native function handler.
/// This is wrapped as an `Arc<dyn FunctionHandler>`.
FnHandler(FnHandler),
/// The offset to a free function.
///
/// This also captures the context and unit it belongs to allow for external
/// calls.
FnOffset(FnOffset),
/// A closure with a captured environment.
///
/// This also captures the context and unit it belongs to allow for external
/// calls.
FnClosureOffset(FnClosureOffset<V>),
/// Constructor for a unit struct.
FnUnitStruct(FnUnitStruct),
/// Constructor for a tuple.
FnTupleStruct(FnTupleStruct),
}
impl<V> TryClone for Inner<V>
where
V: TryClone,
{
fn try_clone(&self) -> alloc::Result<Self> {
Ok(match self {
Inner::FnHandler(inner) => Inner::FnHandler(inner.clone()),
Inner::FnOffset(inner) => Inner::FnOffset(inner.clone()),
Inner::FnClosureOffset(inner) => Inner::FnClosureOffset(inner.try_clone()?),
Inner::FnUnitStruct(inner) => Inner::FnUnitStruct(inner.clone()),
Inner::FnTupleStruct(inner) => Inner::FnTupleStruct(inner.clone()),
})
}
}
#[derive(Clone, TryClone)]
struct FnHandler {
/// The function handler.
handler: Arc<FunctionHandler>,
/// Hash for the function type
hash: Hash,
}
impl fmt::Debug for FnHandler {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "FnHandler")
}
}
#[derive(Clone, TryClone)]
struct FnOffset {
context: Arc<RuntimeContext>,
/// The unit where the function resides.
unit: Arc<Unit>,
/// The offset of the function.
offset: usize,
/// The calling convention.
call: Call,
/// The number of arguments the function takes.
args: usize,
/// Hash for the function type
hash: Hash,
}
impl FnOffset {
/// Perform a call into the specified offset and return the produced value.
#[tracing::instrument(skip_all, fields(args = args.count(), extra = extra.count(), ?self.offset, ?self.call, ?self.args, ?self.hash))]
fn call(&self, args: impl GuardedArgs, extra: impl Args) -> VmResult<Value> {
vm_try!(check_args(
args.count().wrapping_add(extra.count()),
self.args
));
let mut vm = Vm::new(self.context.clone(), self.unit.clone());
vm.set_ip(self.offset);
let _guard = vm_try!(unsafe { args.guarded_into_stack(vm.stack_mut()) });
vm_try!(extra.into_stack(vm.stack_mut()));
self.call.call_with_vm(vm)
}
/// Perform a potentially optimized call into the specified vm.
///
/// This will cause a halt in case the vm being called into isn't the same
/// as the context and unit of the function.
#[tracing::instrument(skip_all, fields(args, extra = extra.count(), keep, ?self.offset, ?self.call, ?self.args, ?self.hash))]
fn call_with_vm(
&self,
vm: &mut Vm,
addr: InstAddress,
args: usize,
extra: impl Args,
out: Output,
) -> VmResult<Option<VmCall>> {
vm_try!(check_args(args.wrapping_add(extra.count()), self.args));
let same_unit = matches!(self.call, Call::Immediate if vm.is_same_unit(&self.unit));
let same_context =
matches!(self.call, Call::Immediate if vm.is_same_context(&self.context));
vm_try!(vm.push_call_frame(self.offset, addr, args, Isolated::new(!same_context), out));
vm_try!(extra.into_stack(vm.stack_mut()));
// Fast path, just allocate a call frame and keep running.
if same_context && same_unit {
tracing::trace!("same context and unit");
return VmResult::Ok(None);
}
VmResult::Ok(Some(VmCall::new(
self.call,
(!same_context).then(|| self.context.clone()),
(!same_unit).then(|| self.unit.clone()),
out,
)))
}
}
impl fmt::Debug for FnOffset {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("FnOffset")
.field("context", &(&self.context as *const _))
.field("unit", &(&self.unit as *const _))
.field("offset", &self.offset)
.field("call", &self.call)
.field("args", &self.args)
.finish()
}
}
#[derive(Debug)]
struct FnClosureOffset<V> {
/// The offset in the associated unit that the function lives.
fn_offset: FnOffset,
/// Captured environment.
environment: Box<[V]>,
}
impl<V> TryClone for FnClosureOffset<V>
where
V: TryClone,
{
#[inline]
fn try_clone(&self) -> alloc::Result<Self> {
Ok(Self {
fn_offset: self.fn_offset.clone(),
environment: self.environment.try_clone()?,
})
}
}
#[derive(Debug, Clone, TryClone)]
struct FnUnitStruct {
/// The type of the empty.
rtti: Arc<Rtti>,
}
#[derive(Debug, Clone, TryClone)]
struct FnTupleStruct {
/// The type of the tuple.
rtti: Arc<Rtti>,
/// The number of arguments the tuple takes.
args: usize,
}
impl FromValue for SyncFunction {
#[inline]
fn from_value(value: Value) -> Result<Self, RuntimeError> {
value.downcast::<Function>()?.into_sync()
}
}
fn check_args(actual: usize, expected: usize) -> VmResult<()> {
if actual != expected {
return VmResult::err(VmErrorKind::BadArgumentCount { expected, actual });
}
VmResult::Ok(())
}