|
@@ -2,50 +2,104 @@
|
|
|
|
|
|
use core::fmt::{self, Write};
|
|
use core::fmt::{self, Write};
|
|
|
|
|
|
|
|
+#[cfg(feature = "machine-mode")]
|
|
use riscv::interrupt;
|
|
use riscv::interrupt;
|
|
|
|
|
|
use crate::hio::{self, HostStream};
|
|
use crate::hio::{self, HostStream};
|
|
|
|
|
|
static mut HSTDOUT: Option<HostStream> = None;
|
|
static mut HSTDOUT: Option<HostStream> = None;
|
|
|
|
|
|
-pub fn hstdout_str(s: &str) {
|
|
|
|
- let _result = interrupt::free(|_| unsafe {
|
|
|
|
- if HSTDOUT.is_none() {
|
|
|
|
- HSTDOUT = Some(hio::hstdout()?);
|
|
|
|
|
|
+#[cfg(not(feature = "no-semihosting"))]
|
|
|
|
+cfg_if::cfg_if! {
|
|
|
|
+ if #[cfg(feature="machine-mode")] {
|
|
|
|
+ pub fn hstdout_str(s: &str) {
|
|
|
|
+ let _result = interrupt::free(|_| unsafe {
|
|
|
|
+ if HSTDOUT.is_none() {
|
|
|
|
+ HSTDOUT = Some(hio::hstdout()?);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ HSTDOUT.as_mut().unwrap().write_str(s).map_err(drop)
|
|
|
|
+ });
|
|
}
|
|
}
|
|
|
|
|
|
- HSTDOUT.as_mut().unwrap().write_str(s).map_err(drop)
|
|
|
|
- });
|
|
|
|
-}
|
|
|
|
|
|
+ pub fn hstdout_fmt(args: fmt::Arguments) {
|
|
|
|
+ let _result = interrupt::free(|_| unsafe {
|
|
|
|
+ if HSTDOUT.is_none() {
|
|
|
|
+ HSTDOUT = Some(hio::hstdout()?);
|
|
|
|
+ }
|
|
|
|
|
|
-pub fn hstdout_fmt(args: fmt::Arguments) {
|
|
|
|
- let _result = interrupt::free(|_| unsafe {
|
|
|
|
- if HSTDOUT.is_none() {
|
|
|
|
- HSTDOUT = Some(hio::hstdout()?);
|
|
|
|
|
|
+ HSTDOUT.as_mut().unwrap().write_fmt(args).map_err(drop)
|
|
|
|
+ });
|
|
}
|
|
}
|
|
|
|
|
|
- HSTDOUT.as_mut().unwrap().write_fmt(args).map_err(drop)
|
|
|
|
- });
|
|
|
|
-}
|
|
|
|
|
|
+ static mut HSTDERR: Option<HostStream> = None;
|
|
|
|
|
|
-static mut HSTDERR: Option<HostStream> = None;
|
|
|
|
|
|
+ pub fn hstderr_str(s: &str) {
|
|
|
|
+ let _result = interrupt::free(|_| unsafe {
|
|
|
|
+ if HSTDERR.is_none() {
|
|
|
|
+ HSTDERR = Some(hio::hstderr()?);
|
|
|
|
+ }
|
|
|
|
|
|
-pub fn hstderr_str(s: &str) {
|
|
|
|
- let _result = interrupt::free(|_| unsafe {
|
|
|
|
- if HSTDERR.is_none() {
|
|
|
|
- HSTDERR = Some(hio::hstderr()?);
|
|
|
|
|
|
+ HSTDERR.as_mut().unwrap().write_str(s).map_err(drop)
|
|
|
|
+ });
|
|
}
|
|
}
|
|
|
|
|
|
- HSTDERR.as_mut().unwrap().write_str(s).map_err(drop)
|
|
|
|
- });
|
|
|
|
-}
|
|
|
|
|
|
+ pub fn hstderr_fmt(args: fmt::Arguments) {
|
|
|
|
+ let _result = interrupt::free(|_| unsafe {
|
|
|
|
+ if HSTDERR.is_none() {
|
|
|
|
+ HSTDERR = Some(hio::hstderr()?);
|
|
|
|
+ }
|
|
|
|
|
|
-pub fn hstderr_fmt(args: fmt::Arguments) {
|
|
|
|
- let _result = interrupt::free(|_| unsafe {
|
|
|
|
- if HSTDERR.is_none() {
|
|
|
|
- HSTDERR = Some(hio::hstderr()?);
|
|
|
|
|
|
+ HSTDERR.as_mut().unwrap().write_fmt(args).map_err(drop)
|
|
|
|
+ });
|
|
}
|
|
}
|
|
|
|
+ }
|
|
|
|
+ else if #[cfg(feature = "user-mode")] {
|
|
|
|
+ pub fn hstdout_str(s: &str) {
|
|
|
|
+ let _result = unsafe {
|
|
|
|
+ if HSTDOUT.is_none() {
|
|
|
|
+ HSTDOUT = Some(hio::hstdout().unwrap());
|
|
|
|
+ }
|
|
|
|
|
|
- HSTDERR.as_mut().unwrap().write_fmt(args).map_err(drop)
|
|
|
|
- });
|
|
|
|
|
|
+ HSTDOUT.as_mut().unwrap().write_str(s).map_err(drop)
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ pub fn hstdout_fmt(args: fmt::Arguments) {
|
|
|
|
+ let _result = unsafe {
|
|
|
|
+ if HSTDOUT.is_none() {
|
|
|
|
+ HSTDOUT = Some(hio::hstdout().unwrap());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ HSTDOUT.as_mut().unwrap().write_fmt(args).map_err(drop)
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ static mut HSTDERR: Option<HostStream> = None;
|
|
|
|
+
|
|
|
|
+ pub fn hstderr_str(s: &str) {
|
|
|
|
+ let _result = unsafe {
|
|
|
|
+ if HSTDERR.is_none() {
|
|
|
|
+ HSTDERR = Some(hio::hstderr().unwrap());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ HSTDERR.as_mut().unwrap().write_str(s).map_err(drop)
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ pub fn hstderr_fmt(args: fmt::Arguments) {
|
|
|
|
+ let _result = unsafe {
|
|
|
|
+ if HSTDERR.is_none() {
|
|
|
|
+ HSTDERR = Some(hio::hstderr().unwrap());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ HSTDERR.as_mut().unwrap().write_fmt(args).map_err(drop)
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ compile_error!("A privilege level has not been selected. Enable either \
|
|
|
|
+ the machine-mode or user-mode features as appropriate \
|
|
|
|
+ for your use case.");
|
|
|
|
+ }
|
|
}
|
|
}
|