Details
Details
Diff Detail
Diff Detail
Event Timeline
lldb/source/Plugins/Instruction/RISCV/RISCVInstructions.h | ||
---|---|---|
250 | I assume this means whether we're 64 bit or 32 bit only? I'd prefer an enum that encodes the choices rather than a number if so. Or an bool 64_bit_only if that makes more sense in context. |
Comment Actions
How do the RV32/RV64 instructions split? Is it the case that the majority are one or the other, or that the majority are both and only a few will be 32 or 64 specific?
I expected to see a "both" in the enum or something saying "RV64 can be either", maybe I just missed it.
I assume this means whether we're 64 bit or 32 bit only? I'd prefer an enum that encodes the choices rather than a number if so.
Or an bool 64_bit_only if that makes more sense in context.