| 79 | }(); |
| 80 | |
| 81 | static std::string gpr_to_string(int gpr_index) { |
| 82 | if (gpr_index == 0) { |
| 83 | return "0"; |
| 84 | } |
| 85 | return fmt::format("ctx->r{}", gpr_index); |
| 86 | } |
| 87 | |
| 88 | static std::string fpr_to_string(int fpr_index) { |
| 89 | return fmt::format("ctx->f{}.fl", fpr_index); |
no outgoing calls
no test coverage detected