@@ -3918,13 +3918,13 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
3918
3918
mself_header hdr{};
3919
3919
3920
3920
if (mself.read (hdr) && hdr.get_count (mself.size ()))
3921
- {
3921
+ {
3922
+ std::set<u64> offs;
3923
+
3922
3924
for (u32 j = 0 ; j < hdr.count ; j++)
3923
3925
{
3924
3926
mself_record rec{};
3925
3927
3926
- std::set<u64> offs;
3927
-
3928
3928
if (mself.read (rec) && rec.get_pos (mself.size ()))
3929
3929
{
3930
3930
if (rec.size <= 0x20 )
@@ -4165,7 +4165,7 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
4165
4165
}
4166
4166
4167
4167
ppu_log.notice (" Failed to precompile '%s' (prx: %s, ovl: %s): Attempting compilation as executable file" , path, prx_err, ovl_err);
4168
- possible_exec_file_paths.push (path, offset, file_size );
4168
+ possible_exec_file_paths.push (file_queue[func_i] );
4169
4169
inc_fdone = 0 ;
4170
4170
}
4171
4171
@@ -4680,8 +4680,15 @@ bool ppu_initialize(const ppu_module& info, bool check_only, u64 file_size)
4680
4680
// Copy block or function entry
4681
4681
ppu_function& entry = part.funcs .emplace_back (func);
4682
4682
4683
+ u32 og_func = entry.addr ;
4684
+
4685
+ if (auto it = info.duplicate_map .find (entry.addr ); it != info.duplicate_map .end ())
4686
+ {
4687
+ og_func = it->second ;
4688
+ }
4689
+
4683
4690
// Fixup some information
4684
- entry.name = fmt::format (" __0x%x" , entry. addr - reloc);
4691
+ entry.name = fmt::format (" __0x%x" , og_func - reloc);
4685
4692
4686
4693
if (has_mfvscr && g_cfg.core .ppu_set_sat_bit )
4687
4694
{
@@ -4848,7 +4855,7 @@ bool ppu_initialize(const ppu_module& info, bool check_only, u64 file_size)
4848
4855
settings += ppu_settings::contains_symbol_resolver; // Avoid invalidating all modules for this purpose
4849
4856
4850
4857
// Write version, hash, CPU, settings
4851
- fmt::append (obj_name, " v6 -kusa-%s-%s-%s.obj" , fmt::base57 (output, 16 ), fmt::base57 (settings), jit_compiler::cpu (g_cfg.core .llvm_cpu ));
4858
+ fmt::append (obj_name, " v7 -kusa-%s-%s-%s.obj" , fmt::base57 (output, 16 ), fmt::base57 (settings), jit_compiler::cpu (g_cfg.core .llvm_cpu ));
4852
4859
}
4853
4860
4854
4861
if (cpu ? cpu->state .all_of (cpu_flag::exit ) : Emu.IsStopped ())
@@ -5086,6 +5093,9 @@ bool ppu_initialize(const ppu_module& info, bool check_only, u64 file_size)
5086
5093
jit_mod.symbol_resolver (vm::g_exec_addr, info.segs [0 ].addr );
5087
5094
5088
5095
// Find a BLR-only function in order to copy it to all BLRs (some games need it)
5096
+ bool early_exit = false ;
5097
+
5098
+ // Get and install function addresses
5089
5099
for (const auto & func : info.funcs )
5090
5100
{
5091
5101
if (func.size == 4 && *info.get_ptr <u32>(func.addr ) == ppu_instructions::BLR ())
@@ -5156,6 +5166,11 @@ static void ppu_initialize2(jit_compiler& jit, const ppu_module& module_part, co
5156
5166
{
5157
5167
if (func.size )
5158
5168
{
5169
+ if (auto it = module_part.duplicate_map .find (func.addr ); it != module_part.duplicate_map .end () && it->second != it->first )
5170
+ {
5171
+ continue ;
5172
+ }
5173
+
5159
5174
const auto f = cast<Function>(_module->getOrInsertFunction (func.name , _func).getCallee ());
5160
5175
f->setCallingConv (CallingConv::GHC);
5161
5176
f->addParamAttr (1 , llvm::Attribute::NoAlias);
@@ -5229,6 +5244,15 @@ static void ppu_initialize2(jit_compiler& jit, const ppu_module& module_part, co
5229
5244
5230
5245
if (module_part.funcs [fi].size )
5231
5246
{
5247
+ const u32 faddr = module_part.funcs [fi].addr ;
5248
+ auto it = module_part.duplicate_map .find (faddr);
5249
+
5250
+ if (it != module_part.duplicate_map .end () && it->second != faddr)
5251
+ {
5252
+ ppu_log.trace (" LLVM: Function 0x%x was skipped (duplicate)" , faddr);
5253
+ continue ;
5254
+ }
5255
+
5232
5256
// Translate
5233
5257
if (const auto func = translator.Translate (module_part.funcs [fi]))
5234
5258
{
0 commit comments