Browse Source

video_core/macro_interpreter: Simplify GetRegister()

Given we already ensure nothing can set the zeroth register in
SetRegister(), we don't need to check if the index is zero and special
case it. We can just access the register normally, since it's already
going to be zero.

We can also replace the assertion with .at() to perform the equivalent
behavior inline as part of the API.
nce_cpp
Lioncash 7 years ago
parent
commit
d2143cb59c
  1. 17
      src/video_core/macro_interpreter.cpp

17
src/video_core/macro_interpreter.cpp

@ -228,22 +228,17 @@ u32 MacroInterpreter::FetchParameter() {
}
u32 MacroInterpreter::GetRegister(u32 register_id) const {
// Register 0 is supposed to always return 0.
if (register_id == 0)
return 0;
ASSERT(register_id < registers.size());
return registers[register_id];
return registers.at(register_id);
}
void MacroInterpreter::SetRegister(u32 register_id, u32 value) {
// Register 0 is supposed to always return 0. NOP is implemented as a store to the zero
// register.
if (register_id == 0)
// Register 0 is hardwired as the zero register.
// Ensure no writes to it actually occur.
if (register_id == 0) {
return;
}
ASSERT(register_id < registers.size());
registers[register_id] = value;
registers.at(register_id) = value;
}
void MacroInterpreter::SetMethodAddress(u32 address) {

Loading…
Cancel
Save