| 227 | } |
| 228 | |
| 229 | constexpr int get_gpr_context_offset(int gpr_index) { |
| 230 | return offsetof(recomp_context, r0) + sizeof(recomp_context::r0) * gpr_index; |
| 231 | } |
| 232 | |
| 233 | constexpr int get_fpr_single_context_offset(int fpr_index) { |
| 234 | return offsetof(recomp_context, f0.fl) + sizeof(recomp_context::f0) * fpr_index; |
no outgoing calls
no test coverage detected