1 // SPDX-License-Identifier: Apache-2.0 OR MIT
3 //! The contents of this file come from the Rust standard library, hosted in
4 //! the <https://github.com/rust-lang/rust> repository, licensed under
5 //! "Apache-2.0 OR MIT" and adapted for kernel use. For copyright details,
6 //! see <https://github.com/rust-lang/rust/blob/master/COPYRIGHT>.
8 /// [`std::dbg`], but using [`pr_info`] instead of [`eprintln`].
10 /// Prints and returns the value of a given expression for quick and dirty
17 /// # #[allow(clippy::dbg_macro)]
18 /// let b = dbg!(a * 2) + 1;
19 /// // ^-- prints: [src/main.rs:2] a * 2 = 4
23 /// The macro works by using the `Debug` implementation of the type of
24 /// the given expression to print the value with [`printk`] along with the
25 /// source location of the macro invocation as well as the source code
26 /// of the expression.
28 /// Invoking the macro on an expression moves and takes ownership of it
29 /// before returning the evaluated expression unchanged. If the type
30 /// of the expression does not implement `Copy` and you don't want
31 /// to give up ownership, you can instead borrow with `dbg!(&expr)`
32 /// for some expression `expr`.
34 /// The `dbg!` macro works exactly the same in release builds.
35 /// This is useful when debugging issues that only occur in release
36 /// builds or when debugging in release mode is significantly faster.
38 /// Note that the macro is intended as a temporary debugging tool to be
39 /// used during development. Therefore, avoid committing `dbg!` macro
40 /// invocations into the kernel tree.
42 /// For debug output that is intended to be kept in the kernel tree,
43 /// use [`pr_debug`] and similar facilities instead.
47 /// The exact output printed by this macro should not be relied upon
48 /// and is subject to future changes.
50 /// # Further examples
52 /// With a method call:
55 /// # #[allow(clippy::dbg_macro)]
56 /// fn foo(n: usize) {
57 /// if dbg!(n.checked_sub(4)).is_some() {
65 /// This prints to the kernel log:
68 /// [src/main.rs:4] n.checked_sub(4) = None
71 /// Naive factorial implementation:
74 /// # #[allow(clippy::dbg_macro)]
76 /// fn factorial(n: u32) -> u32 {
80 /// dbg!(n * factorial(n - 1))
84 /// dbg!(factorial(4));
88 /// This prints to the kernel log:
91 /// [src/main.rs:3] n <= 1 = false
92 /// [src/main.rs:3] n <= 1 = false
93 /// [src/main.rs:3] n <= 1 = false
94 /// [src/main.rs:3] n <= 1 = true
95 /// [src/main.rs:4] 1 = 1
96 /// [src/main.rs:5] n * factorial(n - 1) = 2
97 /// [src/main.rs:5] n * factorial(n - 1) = 6
98 /// [src/main.rs:5] n * factorial(n - 1) = 24
99 /// [src/main.rs:11] factorial(4) = 24
102 /// The `dbg!(..)` macro moves the input:
105 /// /// A wrapper around `usize` which importantly is not Copyable.
107 /// struct NoCopy(usize);
109 /// let a = NoCopy(42);
110 /// let _ = dbg!(a); // <-- `a` is moved here.
111 /// let _ = dbg!(a); // <-- `a` is moved again; error!
114 /// You can also use `dbg!()` without a value to just print the
115 /// file and line whenever it's reached.
117 /// Finally, if you want to `dbg!(..)` multiple values, it will treat them as
118 /// a tuple (and return it, too):
121 /// # #[allow(clippy::dbg_macro)]
122 /// assert_eq!(dbg!(1usize, 2u32), (1, 2));
125 /// However, a single argument with a trailing comma will still not be treated
126 /// as a tuple, following the convention of ignoring trailing commas in macro
127 /// invocations. You can use a 1-tuple directly if you need one:
130 /// # #[allow(clippy::dbg_macro)]
132 /// assert_eq!(1, dbg!(1u32,)); // trailing comma ignored
133 /// assert_eq!((1,), dbg!((1u32,))); // 1-tuple
137 /// [`std::dbg`]: https://doc.rust-lang.org/std/macro.dbg.html
138 /// [`eprintln`]: https://doc.rust-lang.org/std/macro.eprintln.html
139 /// [`printk`]: https://www.kernel.org/doc/html/latest/core-api/printk-basics.html
140 /// [`pr_info`]: crate::pr_info!
141 /// [`pr_debug`]: crate::pr_debug!
144 // NOTE: We cannot use `concat!` to make a static string as a format argument
145 // of `pr_info!` because `file!` could contain a `{` or
146 // `$val` expression could be a block (`{ .. }`), in which case the `pr_info!`
147 // will be malformed.
149 $crate::pr_info!("[{}:{}]\n", ::core::file!(), ::core::line!())
151 ($val:expr $(,)?) => {
152 // Use of `match` here is intentional because it affects the lifetimes
153 // of temporaries - https://stackoverflow.com/a/48732525/1063961
156 $crate::pr_info!("[{}:{}] {} = {:#?}\n",
157 ::core::file!(), ::core::line!(), ::core::stringify!($val), &tmp);
162 ($($val:expr),+ $(,)?) => {
163 ($($crate::dbg!($val)),+,)