macros.rs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /// Variable argument version of `syscall`
  2. #[macro_export]
  3. macro_rules! syscall {
  4. ($nr:ident) => {
  5. $crate::syscall1($crate::nr::$nr, 0)
  6. };
  7. ($nr:ident, $a1:expr) => {
  8. $crate::syscall($crate::nr::$nr, &[$a1 as usize])
  9. };
  10. ($nr:ident, $a1:expr, $a2:expr) => {
  11. $crate::syscall($crate::nr::$nr, &[$a1 as usize, $a2 as usize])
  12. };
  13. ($nr:ident, $a1:expr, $a2:expr, $a3:expr) => {
  14. $crate::syscall($crate::nr::$nr, &[$a1 as usize, $a2 as usize, $a3 as usize])
  15. };
  16. ($nr:ident, $a1:expr, $a2:expr, $a3:expr, $a4:expr) => {
  17. $crate::syscall(
  18. $crate::nr::$nr,
  19. &[$a1 as usize, $a2 as usize, $a3 as usize, $a4 as usize],
  20. )
  21. };
  22. }
  23. /// Macro version of `syscall1`.
  24. #[macro_export]
  25. macro_rules! syscall1 {
  26. ($nr:ident, $a1:expr) => {
  27. $crate::syscall1($crate::nr::$nr, $a1 as usize)
  28. };
  29. }
  30. /// Macro for printing to the HOST standard output.
  31. ///
  32. /// This is similar to the `print!` macro in the standard library. Both will panic on any failure to
  33. /// print.
  34. #[macro_export]
  35. macro_rules! hprint {
  36. ($s:expr) => {
  37. $crate::export::hstdout_str($s)
  38. };
  39. ($($tt:tt)*) => {
  40. $crate::export::hstdout_fmt(format_args!($($tt)*))
  41. };
  42. }
  43. /// Macro for printing to the HOST standard output, with a newline.
  44. ///
  45. /// This is similar to the `println!` macro in the standard library. Both will panic on any failure to
  46. /// print.
  47. #[macro_export]
  48. macro_rules! hprintln {
  49. () => {
  50. $crate::export::hstdout_str("\n")
  51. };
  52. ($s:expr) => {
  53. $crate::export::hstdout_str(concat!($s, "\n"))
  54. };
  55. ($s:expr, $($tt:tt)*) => {
  56. $crate::export::hstdout_fmt(format_args!(concat!($s, "\n"), $($tt)*))
  57. };
  58. }
  59. /// Macro for printing to the HOST standard error.
  60. ///
  61. /// This is similar to the `eprint!` macro in the standard library. Both will panic on any failure
  62. /// to print.
  63. #[macro_export]
  64. macro_rules! heprint {
  65. ($s:expr) => {
  66. $crate::export::hstderr_str($s)
  67. };
  68. ($($tt:tt)*) => {
  69. $crate::export::hstderr_fmt(format_args!($($tt)*))
  70. };
  71. }
  72. /// Macro for printing to the HOST standard error, with a newline.
  73. ///
  74. /// This is similar to the `eprintln!` macro in the standard library. Both will panic on any failure
  75. /// to print.
  76. #[macro_export]
  77. macro_rules! heprintln {
  78. () => {
  79. $crate::export::hstderr_str("\n")
  80. };
  81. ($s:expr) => {
  82. $crate::export::hstderr_str(concat!($s, "\n"))
  83. };
  84. ($s:expr, $($tt:tt)*) => {
  85. $crate::export::hstderr_fmt(format_args!(concat!($s, "\n"), $($tt)*))
  86. };
  87. }
  88. /// Macro that prints and returns the value of a given expression for quick and
  89. /// dirty debugging.
  90. ///
  91. /// Works exactly like `dbg!` in the standard library, replacing `eprintln!`
  92. /// with `heprintln!`.
  93. #[macro_export]
  94. macro_rules! dbg {
  95. () => {
  96. $crate::heprintln!("[{}:{}]", file!(), line!());
  97. };
  98. ($val:expr) => {
  99. // Use of `match` here is intentional because it affects the lifetimes
  100. // of temporaries - https://stackoverflow.com/a/48732525/1063961
  101. match $val {
  102. tmp => {
  103. $crate::heprintln!("[{}:{}] {} = {:#?}",
  104. file!(), line!(), stringify!($val), &tmp);
  105. tmp
  106. }
  107. }
  108. };
  109. // Trailing comma with single argument is ignored
  110. ($val:expr,) => { $crate::dbg!($val) };
  111. ($($val:expr),+ $(,)?) => {
  112. ($($crate::dbg!($val)),+,)
  113. };
  114. }