mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
parent
0dc00b8104
commit
77594dc66c
13 changed files with 798 additions and 493 deletions
588
rpcs3/Emu/Cell/PPUAnalyser.cpp
Normal file
588
rpcs3/Emu/Cell/PPUAnalyser.cpp
Normal file
|
@ -0,0 +1,588 @@
|
|||
#include "stdafx.h"
|
||||
#include "PPUOpcodes.h"
|
||||
#include "PPUModule.h"
|
||||
#include "PPUAnalyser.h"
|
||||
|
||||
#include <unordered_set>
|
||||
|
||||
#include "yaml-cpp/yaml.h"
|
||||
|
||||
const ppu_decoder<ppu_itype> s_ppu_itype;
|
||||
const ppu_decoder<ppu_iname> s_ppu_iname;
|
||||
|
||||
void ppu_validate(const std::string& fname, const std::vector<ppu_function>& funcs, u32 reloc)
|
||||
{
|
||||
// Load custom PRX configuration if available
|
||||
if (fs::file yml{fname + ".yml"})
|
||||
{
|
||||
const auto cfg = YAML::Load(yml.to_string());
|
||||
|
||||
u32 index = 0;
|
||||
|
||||
// Validate detected functions using information provided
|
||||
for (const auto func : cfg["functions"])
|
||||
{
|
||||
const u32 addr = func["addr"].as<u32>(-1);
|
||||
const u32 size = func["size"].as<u32>(0);
|
||||
|
||||
if (addr != -1 && index < funcs.size())
|
||||
{
|
||||
u32 found = funcs[index].addr - reloc;
|
||||
|
||||
while (addr > found && index + 1 < funcs.size())
|
||||
{
|
||||
LOG_ERROR(LOADER, "%s.yml : validation failed at 0x%x (0x%x, 0x%x)", fname, found, addr, size);
|
||||
index++;
|
||||
found = funcs[index].addr - reloc;
|
||||
}
|
||||
|
||||
if (addr < found)
|
||||
{
|
||||
LOG_ERROR(LOADER, "%s.yml : function not found (0x%x, 0x%x)", fname, addr, size);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (size && size < funcs[index].size)
|
||||
{
|
||||
LOG_ERROR(LOADER, "%s.yml : function size mismatch at 0x%x(size=0x%x) (0x%x, 0x%x)", fname, found, funcs[index].size, addr, size);
|
||||
}
|
||||
|
||||
if (size > funcs[index].size)
|
||||
{
|
||||
LOG_ERROR(LOADER, "%s.yml : function size mismatch at 0x%x(size=0x%x) (0x%x, 0x%x)", fname, found, funcs[index].size, addr, size);
|
||||
}
|
||||
|
||||
index++;
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG_ERROR(LOADER, "%s.yml : function not found at the end (0x%x, 0x%x)", fname, addr, size);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!index)
|
||||
{
|
||||
return; // ???
|
||||
}
|
||||
|
||||
while (index < funcs.size())
|
||||
{
|
||||
if (funcs[index].size)
|
||||
{
|
||||
LOG_ERROR(LOADER, "%s.yml : function not covered at 0x%x (size=0x%x)", fname, funcs[index].addr, funcs[index].size);
|
||||
}
|
||||
|
||||
index++;
|
||||
}
|
||||
|
||||
LOG_SUCCESS(LOADER, "%s.yml : validation completed", fname);
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<ppu_function> ppu_analyse(const std::vector<std::pair<u32, u32>>& segs, const std::vector<std::pair<u32, u32>>& secs, u32 entry, u32 lib_toc)
|
||||
{
|
||||
// Assume first segment is executable
|
||||
const u32 start = segs[0].first;
|
||||
const u32 end = segs[0].first + segs[0].second;
|
||||
const u32 start_toc = entry ? +vm::read32(entry + 4) : lib_toc;
|
||||
|
||||
// Known TOCs (usually only 1)
|
||||
std::unordered_set<u32> TOCs;
|
||||
|
||||
// Known functions
|
||||
std::map<u32, ppu_function> funcs;
|
||||
|
||||
// Function analysis workload
|
||||
std::vector<std::reference_wrapper<ppu_function>> func_queue;
|
||||
|
||||
// Register new function
|
||||
auto add_func = [&](u32 addr, u32 toc, u32 origin) -> ppu_function&
|
||||
{
|
||||
ppu_function& func = funcs[addr];
|
||||
|
||||
if (func.addr)
|
||||
{
|
||||
// Update TOC (TODO: this doesn't work well)
|
||||
if (func.toc == 0 || toc == -1)
|
||||
{
|
||||
func.toc = toc;
|
||||
}
|
||||
else if (toc && func.toc != -1 && func.toc != toc)
|
||||
{
|
||||
//LOG_WARNING(PPU, "Function 0x%x: TOC mismatch (0x%x vs 0x%x)", addr, toc, func.toc);
|
||||
func.toc = -1;
|
||||
}
|
||||
|
||||
return func;
|
||||
}
|
||||
|
||||
func_queue.emplace_back(func);
|
||||
func.addr = addr;
|
||||
func.toc = toc;
|
||||
LOG_TRACE(PPU, "Function 0x%x added (toc=0x%x, origin=0x%x)", addr, toc, origin);
|
||||
return func;
|
||||
};
|
||||
|
||||
// Register new TOC and find basic set of functions
|
||||
auto add_toc = [&](u32 toc)
|
||||
{
|
||||
if (!toc || toc == -1 || !TOCs.emplace(toc).second)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Grope for OPD section (TODO: optimization, better constraints)
|
||||
for (const auto& seg : segs)
|
||||
{
|
||||
for (vm::cptr<u32> ptr = vm::cast(seg.first); ptr.addr() < seg.first + seg.second; ptr++)
|
||||
{
|
||||
if (ptr[0] >= start && ptr[0] < end && ptr[0] % 4 == 0 && ptr[1] == toc)
|
||||
{
|
||||
// New function
|
||||
LOG_NOTICE(PPU, "OPD*: [0x%x] 0x%x (TOC=0x%x)", ptr, ptr[0], ptr[1]);
|
||||
add_func(*ptr, toc, ptr.addr());
|
||||
ptr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Get next function address
|
||||
auto get_limit = [&](u32 addr) -> u32
|
||||
{
|
||||
const auto found = funcs.lower_bound(addr);
|
||||
|
||||
if (found != funcs.end())
|
||||
{
|
||||
return found->first;
|
||||
}
|
||||
|
||||
return end;
|
||||
};
|
||||
|
||||
// Find OPD section
|
||||
for (const auto& sec : secs)
|
||||
{
|
||||
const u32 sec_end = sec.first + sec.second;
|
||||
|
||||
if (entry >= sec.first && entry < sec_end)
|
||||
{
|
||||
for (vm::cptr<u32> ptr = vm::cast(sec.first); ptr.addr() < sec_end; ptr += 2)
|
||||
{
|
||||
// Add function and TOC
|
||||
const u32 addr = ptr[0];
|
||||
const u32 toc = ptr[1];
|
||||
LOG_NOTICE(PPU, "OPD: [0x%x] 0x%x (TOC=0x%x)", ptr, addr, toc);
|
||||
TOCs.emplace(toc);
|
||||
|
||||
auto& func = add_func(addr, toc, ptr.addr());
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Otherwise, register initial set of functions (likely including the entry point)
|
||||
add_toc(start_toc);
|
||||
|
||||
// Find eh_frame section
|
||||
for (const auto& sec : secs)
|
||||
{
|
||||
const u32 sec_end = sec.first + sec.second;
|
||||
|
||||
if (sec.first + 32 >= sec_end || vm::read64(sec.first) != 0x0000001c00000000 || vm::read16(sec.first + 8) != 0x017a)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
for (vm::cptr<u32> ptr = vm::cast(sec.first); ptr.addr() < sec_end - 4; ptr = vm::cast(ptr.addr() + ptr[0] + 4))
|
||||
{
|
||||
if (const u32 off = ptr[1])
|
||||
{
|
||||
const u32 addr = ptr[3] + (ptr + 2).addr(); // Function offset (64 bit)
|
||||
const u32 size = ptr[5]; // Function size (64 bit)
|
||||
|
||||
LOG_NOTICE(PPU, ".eh_frame: [0x%x] 0x%x, 0x%x (size=0x%x)", ptr, ptr[0], ptr[1], size);
|
||||
|
||||
if (!ptr[3]) continue; // TODO (some entries have zero offset)
|
||||
|
||||
auto& func = add_func(addr, 0, ptr.addr());
|
||||
func.attr += ppu_attr::known_size;
|
||||
func.size = size;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Main loop (func_queue may grow)
|
||||
for (std::size_t i = 0; i < func_queue.size(); i++)
|
||||
{
|
||||
ppu_function& func = func_queue[i];
|
||||
|
||||
if (func.blocks.empty())
|
||||
{
|
||||
// Special function analysis
|
||||
const vm::cptr<u32> ptr = vm::cast(func.addr);
|
||||
const vm::cptr<void> fend = vm::cast(end);
|
||||
|
||||
using namespace ppu_instructions;
|
||||
|
||||
if (ptr + 1 <= fend && (ptr[0] & 0xfc000001) == B({}, {}))
|
||||
{
|
||||
// Simple gate
|
||||
func.size = 0x4;
|
||||
func.blocks.emplace(func.addr, func.size);
|
||||
const u32 target = ppu_branch_target(ptr[0] & 0x2 ? 0 : ptr.addr(), s32(ptr[0]) << 6 >> 6);
|
||||
add_func(target, func.toc, func.addr);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ptr + 4 <= fend &&
|
||||
ptr[0] == STD(r2, r1, 0x28) &&
|
||||
(ptr[1] & 0xffff0000) == ADDIS(r2, r2, {}) &&
|
||||
(ptr[2] & 0xffff0000) == ADDI(r2, r2, {}) &&
|
||||
(ptr[3] & 0xfc000001) == B({}, {}))
|
||||
{
|
||||
// TOC change gate
|
||||
func.size = 0x10;
|
||||
func.blocks.emplace(func.addr, func.size);
|
||||
const u32 new_toc = func.toc && func.toc != -1 ? func.toc + (ptr[1] << 16) + s16(ptr[2]) : 0;
|
||||
const u32 target = ppu_branch_target(ptr[3] & 0x2 ? 0 : (ptr + 3).addr(), s32(ptr[3]) << 6 >> 6);
|
||||
add_func(target, new_toc, func.addr);
|
||||
add_toc(new_toc);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ptr + 8 <= fend &&
|
||||
(ptr[0] & 0xffff0000) == LI(r12, 0) &&
|
||||
(ptr[1] & 0xffff0000) == ORIS(r12, r12, 0) &&
|
||||
(ptr[2] & 0xffff0000) == LWZ(r12, r12, 0) &&
|
||||
ptr[3] == STD(r2, r1, 0x28) &&
|
||||
ptr[4] == LWZ(r0, r12, 0) &&
|
||||
ptr[5] == LWZ(r2, r12, 4) &&
|
||||
ptr[6] == MTCTR(r0) &&
|
||||
ptr[7] == BCTR())
|
||||
{
|
||||
// The most used simple import stub
|
||||
func.size = 0x20;
|
||||
func.blocks.emplace(func.addr, func.size);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ptr + 3 <= fend &&
|
||||
(ptr[0] & 0xffff0000) == LI(r0, 0) &&
|
||||
(ptr[1] & 0xffff0000) == ORIS(r0, r0, 0) &&
|
||||
(ptr[2] & 0xfc000003) == B({}, {}, {}))
|
||||
{
|
||||
// Import stub with r0 usage
|
||||
func.attr += ppu_attr::uses_r0;
|
||||
}
|
||||
|
||||
// TODO: detect no_return, scribe more TODOs
|
||||
|
||||
// Acknowledge completion
|
||||
func.blocks.emplace(vm::cast(func.addr), 0);
|
||||
}
|
||||
|
||||
// Block analysis workload
|
||||
std::vector<std::reference_wrapper<std::pair<const u32, u32>>> block_queue;
|
||||
|
||||
// Add new block for analysis
|
||||
auto add_block = [&](u32 addr) -> bool
|
||||
{
|
||||
const auto _pair = func.blocks.emplace(addr, 0);
|
||||
|
||||
if (_pair.second)
|
||||
{
|
||||
block_queue.emplace_back(*_pair.first);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
for (auto& block : func.blocks)
|
||||
{
|
||||
if (!block.second)
|
||||
{
|
||||
block_queue.emplace_back(block);
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: lower priority?
|
||||
if (func.attr & ppu_attr::no_size)
|
||||
{
|
||||
const u32 next = get_limit(func.blocks.crbegin()->first + 1);
|
||||
|
||||
// Find more block entries
|
||||
for (const auto& seg : segs)
|
||||
{
|
||||
for (vm::cptr<u32> ptr = vm::cast(seg.first); ptr.addr() < seg.first + seg.second; ptr++)
|
||||
{
|
||||
const u32 value = *ptr;
|
||||
|
||||
if (value % 4 == 0 && value >= func.addr && value < next)
|
||||
{
|
||||
add_block(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const bool was_empty = block_queue.empty();
|
||||
|
||||
// Block loop (block_queue may grow, may be aborted via clearing)
|
||||
for (std::size_t j = 0; j < block_queue.size(); j++)
|
||||
{
|
||||
auto& block = block_queue[j].get();
|
||||
|
||||
for (vm::cptr<u32> _ptr = vm::cast(block.first); _ptr.addr() < end;)
|
||||
{
|
||||
const u32 iaddr = _ptr.addr();
|
||||
const ppu_opcode_t op{*_ptr++};
|
||||
const ppu_itype::type type = s_ppu_itype.decode(op.opcode);
|
||||
|
||||
if (type == ppu_itype::UNK)
|
||||
{
|
||||
// Invalid blocks will remain empty
|
||||
break;
|
||||
}
|
||||
else if (type == ppu_itype::B || type == ppu_itype::BC)
|
||||
{
|
||||
const u32 target = ppu_branch_target(op.aa ? 0 : iaddr, type == ppu_itype::B ? +op.ll : +op.simm16);
|
||||
const bool is_call = op.lk && target != iaddr;
|
||||
const auto pfunc = is_call ? &add_func(target, 0, func.addr) : nullptr;
|
||||
|
||||
if (pfunc && pfunc->blocks.empty())
|
||||
{
|
||||
// Postpone analysis (no info)
|
||||
block_queue.clear();
|
||||
break;
|
||||
}
|
||||
|
||||
// Add next block if necessary
|
||||
if ((is_call && !pfunc->attr.test(ppu_attr::no_return)) || (type == ppu_itype::BC && (op.bo & 0x14) != 0x14))
|
||||
{
|
||||
add_block(_ptr.addr());
|
||||
}
|
||||
|
||||
if (op.lk && (target == iaddr || pfunc->attr.test(ppu_attr::no_return)))
|
||||
{
|
||||
// Nothing
|
||||
}
|
||||
else if (is_call || target < func.addr/* || target >= get_limit(_ptr.addr())*/)
|
||||
{
|
||||
// Add function call (including obvious tail call)
|
||||
add_func(target, 0, func.addr);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Add block
|
||||
add_block(target);
|
||||
}
|
||||
|
||||
block.second = _ptr.addr() - block.first;
|
||||
break;
|
||||
}
|
||||
else if (type == ppu_itype::BCLR)
|
||||
{
|
||||
if (op.lk || (op.bo & 0x14) != 0x14)
|
||||
{
|
||||
add_block(_ptr.addr());
|
||||
}
|
||||
|
||||
block.second = _ptr.addr() - block.first;
|
||||
break;
|
||||
}
|
||||
else if (type == ppu_itype::BCCTR)
|
||||
{
|
||||
if (op.lk || (op.bo & 0x10) != 0x10)
|
||||
{
|
||||
add_block(_ptr.addr());
|
||||
}
|
||||
else
|
||||
{
|
||||
// Analyse jumptable (TODO)
|
||||
const u32 jt_addr = _ptr.addr();
|
||||
const u32 jt_end = end;
|
||||
|
||||
for (; _ptr.addr() < jt_end; _ptr++)
|
||||
{
|
||||
const u32 addr = jt_addr + *_ptr;
|
||||
|
||||
if (addr == jt_addr)
|
||||
{
|
||||
// TODO (cannot branch to jumptable itself)
|
||||
break;
|
||||
}
|
||||
|
||||
if (addr % 4 || addr < func.addr || addr >= jt_end)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
add_block(addr);
|
||||
}
|
||||
|
||||
if (jt_addr != jt_end && _ptr.addr() == jt_addr)
|
||||
{
|
||||
// Acknowledge jumptable detection failure
|
||||
func.attr += ppu_attr::no_size;
|
||||
add_block(iaddr);
|
||||
block_queue.clear();
|
||||
}
|
||||
}
|
||||
|
||||
block.second = _ptr.addr() - block.first;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (block_queue.empty() && !was_empty)
|
||||
{
|
||||
// Block aborted: abort function, postpone
|
||||
func_queue.emplace_back(func);
|
||||
continue;
|
||||
}
|
||||
|
||||
// Finalization: determine function size
|
||||
for (const auto& block : func.blocks)
|
||||
{
|
||||
const u32 expected = func.addr + func.size;
|
||||
|
||||
if (func.attr & ppu_attr::known_size)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (expected == block.first)
|
||||
{
|
||||
func.size += block.second;
|
||||
}
|
||||
else if (expected + 4 == block.first && vm::read32(expected) == ppu_instructions::NOP())
|
||||
{
|
||||
func.size += block.second + 4;
|
||||
}
|
||||
else if (expected < block.first)
|
||||
{
|
||||
//block.second = 0;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Function min size constraint (TODO)
|
||||
for (vm::cptr<u32> _ptr = vm::cast(block.first); _ptr.addr() < block.first + block.second;)
|
||||
{
|
||||
const u32 iaddr = _ptr.addr();
|
||||
const ppu_opcode_t op{*_ptr++};
|
||||
const ppu_itype::type type = s_ppu_itype.decode(op.opcode);
|
||||
|
||||
if (type == ppu_itype::BCCTR && !op.lk)
|
||||
{
|
||||
const u32 jt_base = _ptr.addr() - func.addr;
|
||||
|
||||
for (; _ptr.addr() < block.first + block.second; _ptr++)
|
||||
{
|
||||
func.size = std::max<u32>(func.size, jt_base + *_ptr);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
else if (type == ppu_itype::BC && !op.lk)
|
||||
{
|
||||
const u32 target = ppu_branch_target(op.aa ? 0 : iaddr, +op.simm16);
|
||||
|
||||
func.size = std::max<u32>(func.size, target - func.addr);
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Finalization: normalize blocks
|
||||
for (auto& block : func.blocks)
|
||||
{
|
||||
const auto next = func.blocks.upper_bound(block.first);
|
||||
|
||||
// Normalize block if necessary
|
||||
if (next != func.blocks.end())
|
||||
{
|
||||
block.second = next->first - block.first;
|
||||
}
|
||||
|
||||
// Invalidate blocks out of the function
|
||||
const u32 fend = func.addr + func.size;
|
||||
const u32 bend = block.first + block.second;
|
||||
|
||||
if (block.first >= fend)
|
||||
{
|
||||
block.second = 0;
|
||||
}
|
||||
else if (bend > fend)
|
||||
{
|
||||
block.second -= bend - fend;
|
||||
}
|
||||
}
|
||||
|
||||
// Finalization: process remaining tail calls
|
||||
for (const auto& block : func.blocks)
|
||||
{
|
||||
for (vm::cptr<u32> _ptr = vm::cast(block.first); _ptr.addr() < block.first + block.second;)
|
||||
{
|
||||
const u32 iaddr = _ptr.addr();
|
||||
const ppu_opcode_t op{*_ptr++};
|
||||
const ppu_itype::type type = s_ppu_itype.decode(op.opcode);
|
||||
|
||||
if (type == ppu_itype::B || type == ppu_itype::BC)
|
||||
{
|
||||
const u32 target = ppu_branch_target(op.aa ? 0 : iaddr, type == ppu_itype::B ? +op.ll : +op.simm16);
|
||||
|
||||
if (target < func.addr || target >= func.addr + func.size)
|
||||
{
|
||||
add_func(target, func.toc, func.addr);
|
||||
}
|
||||
}
|
||||
else if (type == ppu_itype::BCCTR && !op.lk)
|
||||
{
|
||||
// Jumptable (do not touch entries)
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Function shrinkage (TODO: it's potentially dangerous but improvable)
|
||||
for (auto& _pair : funcs)
|
||||
{
|
||||
auto& func = _pair.second;
|
||||
|
||||
// Next function start
|
||||
const u32 next = get_limit(_pair.first + 1);
|
||||
|
||||
// Just ensure that functions don't overlap
|
||||
if (func.addr + func.size > next)
|
||||
{
|
||||
LOG_WARNING(PPU, "Function overlap: [0x%x] 0x%x -> 0x%x", func.addr, func.size, next - func.addr);
|
||||
continue; //func.size = next - func.addr;
|
||||
|
||||
// Also invalidate blocks
|
||||
for (auto& block : func.blocks)
|
||||
{
|
||||
if (block.first + block.second > next)
|
||||
{
|
||||
block.second = block.first >= next ? 0 : next - block.first;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Convert map to vector (destructive)
|
||||
std::vector<ppu_function> result;
|
||||
|
||||
for (auto&& func : funcs)
|
||||
{
|
||||
result.emplace_back(std::move(func.second));
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue