riscv/csr/
minstret.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Licensed under the Apache License, Version 2.0 or the MIT License.
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2022.

use kernel::utilities::registers::register_bitfields;

// minstret is the lower XLEN bits of the number of elapsed instructions
register_bitfields![usize,
    pub minstret [
        minstret OFFSET(0) NUMBITS(crate::XLEN) []
    ]
];

// `minstreth` is the higher XLEN bits of the number of elapsed instructions.
// It does not exist on riscv64.
#[cfg(not(target_arch = "riscv64"))]
register_bitfields![usize,
    pub minstreth [
        minstreth OFFSET(0) NUMBITS(crate::XLEN) []
    ]
];