mhpmcounter9
Machine Hardware Performance Counter 9
Programmable hardware performance counter.
The hpmcounter9 CSR is a read-only shadow of this CSR. Access to hpmcounter9 is controlled with mcounteren.HPM9 , scounteren.HPM9 , and hcounteren.HPM9 as follows:
hpmcounter9 behavior |
||||||
|---|---|---|---|---|---|---|
S-mode |
U-mode |
VS-mode |
VU-mode |
|||
0 |
- |
- |
|
|
|
|
1 |
0 |
0 |
read-only |
|
|
|
1 |
1 |
0 |
read-only |
read-only |
|
|
1 |
0 |
1 |
read-only |
|
read-only |
|
1 |
1 |
1 |
read-only |
read-only |
read-only |
read-only |
Attributes
CSR Address |
0xb09 |
|---|---|
Defining extension |
(Sm && |
Length |
64-bit |
Privilege Mode |
M |
Fields
COUNT
- Location
-
mhpmcounter9[63:0] - Description
Performance counter for event selected in mhpmevent9.EVENT.
+ Increments every time event occurs unless:
+
* mcountinhibit.HPM9 or its alias scountinhibit.HPM9 is set
* mhpmevent9.MINH is set and the current privilege level is M
* mhpmevent9.SINH or its alias hpmevent9.SINH is set and the current privilege level is (H)S
* mhpmevent9.UINH or its alias hpmevent9.UINH is set and the current privilege level is U
* mhpmevent9.VSINH or its alias hpmevent9.VSINH is set and the current privilege level is VS
* mhpmevent9.VUINH or its alias hpmevent9.VUINH is set and the current privilege level is VU
+
Unimplemented performance counter. Must be read-only 0 (access does not cause trap).
- Type
RW-H |
Read-Write with Hardware update Field is writable by software. Any value that fits in the field is acceptable. Hardware also updates the field without an explicit software write. |
- Reset value
-
UNDEFINED_LEGAL
Software read
This CSR may return a value that is different from what is stored in hardware.
-
Pruned
-
Original
return read_hpm_counter(9);
if (HPM_COUNTER_EN[9]) {
return read_hpm_counter(9);
} else {
return 0;
}