| 146 | bool recompile_function_live(LiveGenerator& generator, const Context& context, size_t function_index, std::ostream& output_file, std::span<std::vector<uint32_t>> static_funcs_out, bool tag_reference_relocs); |
| 147 | |
| 148 | class ShimFunction { |
| 149 | private: |
| 150 | void* code; |
| 151 | recomp_func_t* func; |
| 152 | public: |
| 153 | ShimFunction(recomp_func_ext_t* to_shim, uintptr_t value); |
| 154 | ~ShimFunction(); |
| 155 | recomp_func_t* get_func() { return func; } |
| 156 | }; |
| 157 | } |
| 158 | |
| 159 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected