From e6b8bf5481a0e54ce7ded463d5befdf6152b59a9 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 11 Jun 2020 22:49:00 +0200 Subject: [PATCH] provide many move __aeabi_* calls --- src/runtime/src/kernel.rs | 81 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/src/runtime/src/kernel.rs b/src/runtime/src/kernel.rs index 46c61977..cd5f6572 100644 --- a/src/runtime/src/kernel.rs +++ b/src/runtime/src/kernel.rs @@ -152,14 +152,17 @@ macro_rules! api { fn resolve(required: &[u8]) -> Option { let api = &[ + // timing api!(now_mu = rtio::now_mu), api!(at_mu = rtio::at_mu), api!(delay_mu = rtio::delay_mu), + // rpc api!(rpc_send = rpc_send), api!(rpc_send_async = rpc_send_async), api!(rpc_recv = rpc_recv), + // rtio api!(rtio_init = rtio::init), api!(rtio_get_destination_status = rtio::get_destination_status), api!(rtio_get_counter = rtio::get_counter), @@ -169,8 +172,86 @@ fn resolve(required: &[u8]) -> Option { api!(rtio_input_data = rtio::input_data), api!(rtio_input_timestamped_data = rtio::input_timestamped_data), + // Double-precision floating-point arithmetic helper functions + // RTABI chapter 4.1.2, Table 2 + api!(__aeabi_dadd), + api!(__aeabi_ddiv), + api!(__aeabi_dmul), + api!(__aeabi_dsub), + // Double-precision floating-point comparison helper functions + // RTABI chapter 4.1.2, Table 3 + api!(__aeabi_dcmpeq), + api!(__aeabi_dcmpeq), + api!(__aeabi_dcmplt), + api!(__aeabi_dcmple), + api!(__aeabi_dcmpge), + api!(__aeabi_dcmpgt), + api!(__aeabi_dcmpun), + // Single-precision floating-point arithmetic helper functions + // RTABI chapter 4.1.2, Table 4 + api!(__aeabi_fadd), + api!(__aeabi_fdiv), + api!(__aeabi_fmul), + api!(__aeabi_fsub), + // Single-precision floating-point comparison helper functions + // RTABI chapter 4.1.2, Table 5 + api!(__aeabi_fcmpeq), + api!(__aeabi_fcmpeq), + api!(__aeabi_fcmplt), + api!(__aeabi_fcmple), + api!(__aeabi_fcmpge), + api!(__aeabi_fcmpgt), + api!(__aeabi_fcmpun), + // Floating-point to integer conversions. + // RTABI chapter 4.1.2, Table 6 + api!(__aeabi_d2iz), + api!(__aeabi_d2uiz), + api!(__aeabi_d2lz), + api!(__aeabi_d2ulz), + api!(__aeabi_f2iz), + api!(__aeabi_f2uiz), + api!(__aeabi_f2lz), + api!(__aeabi_f2ulz), + // Conversions between floating types. + // RTABI chapter 4.1.2, Table 7 + api!(__aeabi_f2d), + // Integer to floating-point conversions. + // RTABI chapter 4.1.2, Table 8 + api!(__aeabi_i2d), + api!(__aeabi_ui2d), api!(__aeabi_l2d), + api!(__aeabi_ul2d), + api!(__aeabi_i2f), + api!(__aeabi_ui2f), + api!(__aeabi_l2f), + api!(__aeabi_ul2f), + // Long long helper functions + // RTABI chapter 4.2, Table 9 + api!(__aeabi_lmul), + api!(__aeabi_llsl), + api!(__aeabi_llsr), + api!(__aeabi_lasr), + // Integer division functions + // RTABI chapter 4.3.1 + api!(__aeabi_idiv), + api!(__aeabi_ldivmod), + api!(__aeabi_uidiv), + api!(__aeabi_uldivmod), + // 4.3.4 Memory copying, clearing, and setting + api!(__aeabi_memcpy8), + api!(__aeabi_memcpy4), + api!(__aeabi_memcpy), + api!(__aeabi_memmove8), + api!(__aeabi_memmove4), + api!(__aeabi_memmove), + api!(__aeabi_memset8), + api!(__aeabi_memset4), + api!(__aeabi_memset), + api!(__aeabi_memclr8), + api!(__aeabi_memclr4), + api!(__aeabi_memclr), + // ARTIQ api!(_Unwind_Resume = exception_unimplemented), api!(__artiq_personality = exception_unimplemented), api!(__artiq_raise = exception_unimplemented),