| 890 | } |
| 891 | |
| 892 | std::string make_permutation_string(const std::vector<uint32_t> permutation) { |
| 893 | std::string str = ""; |
| 894 | |
| 895 | for (uint32_t opt : permutation) { |
| 896 | str += std::to_string(opt); |
| 897 | } |
| 898 | |
| 899 | return str; |
| 900 | } |
| 901 | |
| 902 | void create_overlay_swap_function(const std::string& function_name, std::ofstream& output_file, const std::vector<FunctionPermutation>& permutations, const RSPRecompilerConfig& config) { |
| 903 | // Includes and permutation protos |
no outgoing calls
no test coverage detected