mirror of
https://github.com/ran-j/PS2Recomp.git
synced 2026-09-26 16:59:35 -04:00
Feature/vu fixes (#55)
* fix: added missing header include for gcc * fix: small thread fix on syscalls fix: fix incorrect VU translations (they was using wrong register) * feat: added authoritative system for function extraction, this will prevent functions overlap when we have debug symbols
This commit is contained in:
@@ -497,6 +497,13 @@ namespace ps2recomp
|
||||
const Function &function, const std::vector<Instruction> &instructions)
|
||||
{
|
||||
std::unordered_set<uint32_t> targets;
|
||||
std::unordered_set<uint32_t> instructionAddresses;
|
||||
instructionAddresses.reserve(instructions.size());
|
||||
|
||||
for (const auto &inst : instructions)
|
||||
{
|
||||
instructionAddresses.insert(inst.address);
|
||||
}
|
||||
|
||||
for (const auto &inst : instructions)
|
||||
{
|
||||
@@ -507,7 +514,8 @@ namespace ps2recomp
|
||||
const uint32_t target = static_cast<uint32_t>(
|
||||
static_cast<int64_t>(inst.address + 4u) + static_cast<int64_t>(offsetBytes));
|
||||
|
||||
if (target >= function.start && target < function.end)
|
||||
if (target >= function.start && target < function.end &&
|
||||
instructionAddresses.contains(target))
|
||||
{
|
||||
targets.insert(target);
|
||||
}
|
||||
@@ -515,14 +523,16 @@ namespace ps2recomp
|
||||
else if (isStaticJump)
|
||||
{
|
||||
uint32_t target = buildAbsoluteJumpTarget(inst.address, inst.target);
|
||||
if (target > function.start && target < function.end)
|
||||
if (target >= function.start && target < function.end &&
|
||||
instructionAddresses.contains(target))
|
||||
{
|
||||
targets.insert(target);
|
||||
|
||||
if (inst.opcode == OPCODE_JAL)
|
||||
{
|
||||
uint32_t returnAddr = inst.address + 8;
|
||||
if (returnAddr >= function.start && returnAddr < function.end)
|
||||
if (returnAddr >= function.start && returnAddr < function.end &&
|
||||
instructionAddresses.contains(returnAddr))
|
||||
{
|
||||
targets.insert(returnAddr);
|
||||
}
|
||||
@@ -945,6 +955,13 @@ namespace ps2recomp
|
||||
"SET_GPR_U64(ctx, {}, (uint64_t)GPR_U64(ctx, {}) + (uint64_t)GPR_U64(ctx, {}));",
|
||||
inst.rd, inst.rs, inst.rt);
|
||||
case SPECIAL_DSUB:
|
||||
return fmt::format(
|
||||
"{{ int64_t a = (int64_t)GPR_S64(ctx, {}); "
|
||||
"int64_t b = (int64_t)GPR_S64(ctx, {}); "
|
||||
"int64_t r = a - b; "
|
||||
"if (((a ^ b) < 0) && ((a ^ r) < 0)) runtime->SignalException(ctx, EXCEPTION_INTEGER_OVERFLOW); "
|
||||
"else SET_GPR_S64(ctx, {}, r); }}",
|
||||
inst.rs, inst.rt, inst.rd);
|
||||
case SPECIAL_DSUBU:
|
||||
return fmt::format("SET_GPR_U64(ctx, {}, GPR_U64(ctx, {}) - GPR_U64(ctx, {}));", inst.rd, inst.rs, inst.rt);
|
||||
case SPECIAL_DSLL:
|
||||
@@ -1622,6 +1639,7 @@ namespace ps2recomp
|
||||
uint8_t format = inst.rs; // Use parsed rs field for COP2 format
|
||||
uint8_t rt = inst.rt;
|
||||
uint8_t rd = inst.rd;
|
||||
uint8_t sa = inst.sa;
|
||||
|
||||
switch (format)
|
||||
{
|
||||
@@ -1768,12 +1786,11 @@ namespace ps2recomp
|
||||
case COP2_CO + 14:
|
||||
case COP2_CO + 15:
|
||||
{
|
||||
uint8_t vu_func = inst.function;
|
||||
if (vu_func >= 0x3C)
|
||||
const uint8_t special1_func = static_cast<uint8_t>(inst.function & 0x3F);
|
||||
if (special1_func >= 0x3C) // Special2 Table
|
||||
{
|
||||
uint8_t vu_fhi_flo = (uint8_t)((((inst.raw >> 6) & 0x1F) << 2) | (inst.raw & 0x3));
|
||||
|
||||
switch (vu_fhi_flo)
|
||||
const uint8_t vu_func = static_cast<uint8_t>((((inst.raw >> 6) & 0x1F) << 2) | (inst.raw & 0x3));
|
||||
switch (vu_func)
|
||||
{
|
||||
case VU0_S2_VADDAx:
|
||||
case VU0_S2_VADDAy:
|
||||
@@ -1878,15 +1895,15 @@ namespace ps2recomp
|
||||
return fmt::format("{{ __m128 res = _mm_and_ps(ctx->vu0_vf[{}], _mm_castsi128_ps(_mm_set1_epi32(0x7FFFFFFF))); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs,
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rt, inst.rt);
|
||||
}
|
||||
case VU0_S2_VMOVE:
|
||||
return fmt::format("ctx->vu0_vf[{}] = ctx->vu0_vf[{}];", inst.rt, inst.rs);
|
||||
return fmt::format("ctx->vu0_vf[{}] = ctx->vu0_vf[{}];", inst.rt, inst.rd);
|
||||
case VU0_S2_VMR32:
|
||||
return fmt::format("ctx->vu0_vf[{}] = _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,1));", inst.rt, inst.rs, inst.rs);
|
||||
return fmt::format("ctx->vu0_vf[{}] = _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,1));", inst.rt, inst.rd, inst.rd);
|
||||
case VU0_S2_VCLIPw:
|
||||
{
|
||||
uint8_t field = inst.function & 0x3;
|
||||
@@ -1904,7 +1921,7 @@ namespace ps2recomp
|
||||
"((lt_mask & 0x2) << 1) | ((gt_mask & 0x2) << 2) | "
|
||||
"((lt_mask & 0x4) << 2) | ((gt_mask & 0x4) << 3); "
|
||||
"ctx->vu0_clip_flags = ((ctx->vu0_clip_flags << 6) | (flags & 0x3F)) & 0xFFFFFF; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern);
|
||||
inst.rd, inst.rt, inst.rt, shuffle_pattern);
|
||||
}
|
||||
case VU0_S2_VNOP:
|
||||
return fmt::format("// NOP operation, no action needed for VU0");
|
||||
@@ -1917,12 +1934,12 @@ namespace ps2recomp
|
||||
case VU0_S2_VRXOR:
|
||||
return translateVU_VRXOR(inst);
|
||||
default:
|
||||
return fmt::format("// Unhandled VU0 Special2 fhi_flo: 0x{:X}", vu_fhi_flo);
|
||||
return fmt::format("// Unhandled VU0 Special2 function: 0x{:X}", vu_func);
|
||||
}
|
||||
}
|
||||
|
||||
// Special1 Table (function-based)
|
||||
switch (vu_func)
|
||||
switch (special1_func)
|
||||
{
|
||||
case VU0_S1_VADDx:
|
||||
case VU0_S1_VADDy:
|
||||
@@ -1960,17 +1977,71 @@ namespace ps2recomp
|
||||
case VU0_S1_VCALLMSR:
|
||||
return translateVU_VCALLMSR(inst);
|
||||
case VU0_S1_VADDq:
|
||||
return fmt::format("ctx->vu0_vf[{}] = PS2_VADD(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q));", inst.rd, inst.rs);
|
||||
{
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VADD(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.sa, inst.sa);
|
||||
}
|
||||
case VU0_S1_VSUBq:
|
||||
return fmt::format("ctx->vu0_vf[{}] = PS2_VSUB(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q));", inst.rd, inst.rs);
|
||||
{
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VSUB(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.sa, inst.sa);
|
||||
}
|
||||
case VU0_S1_VMULq:
|
||||
return fmt::format("ctx->vu0_vf[{}] = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q));", inst.rd, inst.rs);
|
||||
{
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.sa, inst.sa);
|
||||
}
|
||||
case VU0_S1_VADDi:
|
||||
return fmt::format("ctx->vu0_vf[{}] = PS2_VADD(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i));", inst.rd, inst.rs);
|
||||
{
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VADD(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.sa, inst.sa);
|
||||
}
|
||||
case VU0_S1_VSUBi:
|
||||
return fmt::format("ctx->vu0_vf[{}] = PS2_VSUB(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i));", inst.rd, inst.rs);
|
||||
{
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VSUB(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.sa, inst.sa);
|
||||
}
|
||||
case VU0_S1_VMULi:
|
||||
return fmt::format("ctx->vu0_vf[{}] = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i));", inst.rd, inst.rs);
|
||||
{
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.sa, inst.sa);
|
||||
}
|
||||
case VU0_S1_VMADDx:
|
||||
case VU0_S1_VMADDy:
|
||||
case VU0_S1_VMADDz:
|
||||
@@ -2014,7 +2085,7 @@ namespace ps2recomp
|
||||
case VU0_S1_VMSUBi:
|
||||
return translateVU_VMSUBi(inst);
|
||||
default:
|
||||
return fmt::format("// Unhandled VU0 Special1 function: 0x{:X}", vu_func);
|
||||
return fmt::format("// Unhandled VU0 Special1 function: 0x{:X}", special1_func);
|
||||
}
|
||||
}
|
||||
default:
|
||||
@@ -2024,44 +2095,62 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VADD_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
return fmt::format("{{ __m128 res = PS2_VADD(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", inst.rs, inst.rt, inst.rt, shuffle_pattern, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, inst.rd, inst.rd);
|
||||
return fmt::format("{{ __m128 res = PS2_VADD(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", vfs, vft, vft, shuffle_pattern, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VSUB_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
return fmt::format("{{ __m128 res = PS2_VSUB(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", inst.rs, inst.rt, inst.rt, shuffle_pattern, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, inst.rd, inst.rd);
|
||||
return fmt::format("{{ __m128 res = PS2_VSUB(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", vfs, vft, vft, shuffle_pattern, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMUL_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
return fmt::format("{{ __m128 res = PS2_VMUL(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", inst.rs, inst.rt, inst.rt, shuffle_pattern, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, inst.rd, inst.rd);
|
||||
return fmt::format("{{ __m128 res = PS2_VMUL(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", vfs, vft, vft, shuffle_pattern, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VADD(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VADD(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = PS2_VBLEND(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", inst.rs, inst.rt, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, inst.rd, inst.rd);
|
||||
return fmt::format("{{ __m128 res = PS2_VADD(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = PS2_VBLEND(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", vfs, vft, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VSUB(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VSUB(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = PS2_VBLEND(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", inst.rs, inst.rt, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, inst.rd, inst.rd);
|
||||
return fmt::format("{{ __m128 res = PS2_VSUB(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = PS2_VBLEND(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", vfs, vft, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMUL(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = PS2_VBLEND(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", inst.rs, inst.rt, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, inst.rd, inst.rd);
|
||||
return fmt::format("{{ __m128 res = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); __m128i mask = _mm_set_epi32({}, {}, {}, {}); ctx->vu0_vf[{}] = PS2_VBLEND(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}", vfs, vft, (dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0, (dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0, vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translatePMADDW(const Instruction &inst)
|
||||
@@ -2263,7 +2352,7 @@ namespace ps2recomp
|
||||
{
|
||||
uint8_t fsf = inst.vectorInfo.fsf;
|
||||
uint8_t ftf = inst.vectorInfo.ftf;
|
||||
uint8_t fs_reg = inst.rs;
|
||||
uint8_t fs_reg = inst.rd;
|
||||
uint8_t ft_reg = inst.rt;
|
||||
|
||||
return fmt::format("{{ float fs = _mm_cvtss_f32(_mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,{}))); float ft = _mm_cvtss_f32(_mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,{}))); ctx->vu0_q = (ft != 0.0f) ? (fs / ft) : 0.0f; }}", fs_reg, fs_reg, fsf, ft_reg, ft_reg, ftf);
|
||||
@@ -2285,7 +2374,8 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VMTIR(const Instruction &inst)
|
||||
{
|
||||
return fmt::format("{{ uint32_t tmp = ctx->vi[{}]; ctx->vu0_i = *(float*)&tmp; }}", inst.rt);
|
||||
uint8_t fsf = inst.vectorInfo.fsf;
|
||||
return fmt::format("{{ float src = _mm_cvtss_f32(_mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,{}))); ctx->vi[{}] = static_cast<uint16_t>(static_cast<int32_t>(src)); }}", inst.rd, inst.rd, fsf, inst.rt);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMFIR(const Instruction &inst)
|
||||
@@ -2295,7 +2385,7 @@ namespace ps2recomp
|
||||
"__m128 res = _mm_set1_ps(val); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs,
|
||||
inst.rd,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rt, inst.rt);
|
||||
@@ -2303,46 +2393,45 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VILWR(const Instruction &inst)
|
||||
{
|
||||
uint8_t field_idx = inst.vectorInfo.ftf; // Use parsed ftf field
|
||||
return fmt::format("{{ uint32_t addr = (uint32_t)(_mm_cvtss_f32(_mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,{}))) + ctx->vu0_i) & 0x3FFC; ctx->vi[{}] = READ32(addr); }}", inst.rs, inst.rs, field_idx, inst.rt); // rs=IS, rt=IT
|
||||
return fmt::format("{{ uint32_t addr = (uint32_t)(ctx->vi[{}] << 2) & 0x3FFC; ctx->vi[{}] = static_cast<uint16_t>(READ32(addr)); }}", inst.rd, inst.rt); // VILWR.<f> vit, (vis)
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VISWR(const Instruction &inst)
|
||||
{
|
||||
uint8_t field_idx = inst.vectorInfo.ftf; // Use parsed ftf field
|
||||
return fmt::format("{{ uint32_t addr = (uint32_t)(_mm_cvtss_f32(_mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,{}))) + ctx->vu0_i) & 0x3FFC; WRITE32(addr, ctx->vi[{}]); }}", inst.rs, inst.rs, field_idx, inst.rt); // rs=IS, rt=IT
|
||||
return fmt::format("{{ uint32_t addr = (uint32_t)(ctx->vi[{}] << 2) & 0x3FFC; WRITE32(addr, (uint32_t)ctx->vi[{}]); }}", inst.rd, inst.rt); // VISWR.<f> vit, (vis)
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VIADD(const Instruction &inst)
|
||||
{
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] + ctx->vi[{}];", inst.rd, inst.rs, inst.rt); // rd=ID, rs=IS, rt=IT
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] + ctx->vi[{}];", inst.sa, inst.rd, inst.rt); // vid, vis, vit
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VISUB(const Instruction &inst)
|
||||
{
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] - ctx->vi[{}];", inst.rd, inst.rs, inst.rt); // rd=ID, rs=IS, rt=IT
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] - ctx->vi[{}];", inst.sa, inst.rd, inst.rt); // vid, vis, vit
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VIADDI(const Instruction &inst)
|
||||
{
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] + {};", inst.rt, inst.rs, inst.sa); // rt=IT, rs=IS, sa=Imm5
|
||||
int32_t imm5 = (inst.sa & 0x10) ? static_cast<int32_t>(inst.sa | ~0x1F) : static_cast<int32_t>(inst.sa);
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] + {};", inst.rt, inst.rd, imm5); // vit, vis, imm5
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VIAND(const Instruction &inst)
|
||||
{
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] & ctx->vi[{}];", inst.rd, inst.rs, inst.rt); // rd=ID, rs=IS, rt=IT
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] & ctx->vi[{}];", inst.sa, inst.rd, inst.rt); // vid, vis, vit
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VIOR(const Instruction &inst)
|
||||
{
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] | ctx->vi[{}];", inst.rd, inst.rs, inst.rt); // rd=ID, rs=IS, rt=IT
|
||||
return fmt::format("ctx->vi[{}] = ctx->vi[{}] | ctx->vi[{}];", inst.sa, inst.rd, inst.rt); // vid, vis, vit
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VCALLMS(const Instruction &inst)
|
||||
{
|
||||
// VCALLMS calls a VU0 microprogram at the specified immediate address.
|
||||
// VU0 micro memory is 4KB = 512 instructions (8 bytes each). Index is 0-511.
|
||||
uint16_t instr_index = inst.immediate & 0x1FF; // Mask to 9 bits for VU0
|
||||
uint16_t instr_index = static_cast<uint16_t>((inst.raw >> 6) & 0x1FF); // imm15[8:0]
|
||||
uint32_t target_byte_addr = static_cast<uint32_t>(instr_index) << 3; // Convert instruction index to byte address
|
||||
|
||||
return fmt::format(
|
||||
@@ -2356,7 +2445,7 @@ namespace ps2recomp
|
||||
std::string CodeGenerator::translateVU_VCALLMSR(const Instruction &inst)
|
||||
{
|
||||
// VCALLMSR calls a VU0 microprogram at address stored in integer register
|
||||
uint8_t vis_reg_idx = inst.rs; // Source integer register
|
||||
uint8_t vis_reg_idx = inst.rd; // Source integer register (vis)
|
||||
|
||||
return fmt::format(
|
||||
"{{ "
|
||||
@@ -2388,6 +2477,9 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADD_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
uint8_t field = inst.function & 0x3; // Extract field from function code
|
||||
|
||||
@@ -2399,14 +2491,17 @@ namespace ps2recomp
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern,
|
||||
vfs, vft, vft, shuffle_pattern,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUB_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
uint8_t field = inst.function & 0x3; // Extract field from function code
|
||||
|
||||
@@ -2417,14 +2512,17 @@ namespace ps2recomp
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern,
|
||||
vfs, vft, vft, shuffle_pattern,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMINI_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
|
||||
@@ -2433,14 +2531,17 @@ namespace ps2recomp
|
||||
return fmt::format("{{ __m128 res = _mm_min_ps(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern,
|
||||
vfs, vft, vft, shuffle_pattern,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMAX_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
|
||||
@@ -2449,314 +2550,374 @@ namespace ps2recomp
|
||||
return fmt::format("{{ __m128 res = _mm_max_ps(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern,
|
||||
vfs, vft, vft, shuffle_pattern,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADD(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); "
|
||||
"__m128 res = PS2_VADD(ctx->vu0_acc, mul_res); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt,
|
||||
vfs, vft,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADDq(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q)); "
|
||||
"__m128 res = PS2_VADD(ctx->vu0_acc, mul_res); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs,
|
||||
vfs,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADDi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"__m128 res = PS2_VADD(ctx->vu0_acc, mul_res); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs,
|
||||
vfs,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMAX(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = _mm_max_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs, inst.rt,
|
||||
vfs, vft,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMAXi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = _mm_max_ps(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs,
|
||||
vfs,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VOPMSUB(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); "
|
||||
"__m128 res = PS2_VSUB(ctx->vu0_acc, mul_res); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt,
|
||||
vfs, vft,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMINI(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = _mm_min_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs, inst.rt,
|
||||
vfs, vft,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMINIi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 res = _mm_min_ps(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs,
|
||||
vfs,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUB(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); "
|
||||
"__m128 res = PS2_VSUB(ctx->vu0_acc, mul_res); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt,
|
||||
vfs, vft,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUBq(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q)); "
|
||||
"__m128 res = PS2_VSUB(ctx->vu0_acc, mul_res); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs,
|
||||
vfs,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUBi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfd = inst.sa;
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"__m128 res = PS2_VSUB(ctx->vu0_acc, mul_res); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs,
|
||||
vfs,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rd, inst.rd);
|
||||
vfd, vfd);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VADDA_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
|
||||
return fmt::format("{{ __m128 res = PS2_VADD(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern);
|
||||
vfs, vft, vft, shuffle_pattern);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VSUBA_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
|
||||
return fmt::format("{{ __m128 res = PS2_VSUB(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern);
|
||||
vfs, vft, vft, shuffle_pattern);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADDA_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); "
|
||||
"__m128 res = PS2_VADD(ctx->vu0_acc, mul_res); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern);
|
||||
vfs, vft, vft, shuffle_pattern);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUBA_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); "
|
||||
"__m128 res = PS2_VSUB(ctx->vu0_acc, mul_res); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern);
|
||||
vfs, vft, vft, shuffle_pattern);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMULA_Field(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
uint8_t field = inst.function & 0x3;
|
||||
std::string shuffle_pattern = fmt::format("_MM_SHUFFLE({},{},{},{})", field, field, field, field);
|
||||
|
||||
return fmt::format("{{ __m128 res = PS2_VMUL(ctx->vu0_vf[{}], _mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], {})); "
|
||||
"ctx->vu0_acc = res; }}",
|
||||
inst.rs, inst.rt, inst.rt, shuffle_pattern);
|
||||
vfs, vft, vft, shuffle_pattern);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VADDA(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VADD(ctx->vu0_vf[{}], ctx->vu0_vf[{}]);",
|
||||
inst.rs, inst.rt);
|
||||
vfs, vft);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VADDAq(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VADD(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q));",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VADDAi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VADD(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i));",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VSUBA(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VSUB(ctx->vu0_vf[{}], ctx->vu0_vf[{}]);",
|
||||
inst.rs, inst.rt);
|
||||
vfs, vft);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VSUBAq(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VSUB(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q));",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VSUBAi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VSUB(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i));",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADDA(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); "
|
||||
"ctx->vu0_acc = PS2_VADD(ctx->vu0_acc, mul_res); }}",
|
||||
inst.rs, inst.rt);
|
||||
vfs, vft);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADDAq(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q)); "
|
||||
"ctx->vu0_acc = PS2_VADD(ctx->vu0_acc, mul_res); }}",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMADDAi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"ctx->vu0_acc = PS2_VADD(ctx->vu0_acc, mul_res); }}",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUBA(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]); "
|
||||
"ctx->vu0_acc = PS2_VSUB(ctx->vu0_acc, mul_res); }}",
|
||||
inst.rs, inst.rt);
|
||||
vfs, vft);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUBAq(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q)); "
|
||||
"ctx->vu0_acc = PS2_VSUB(ctx->vu0_acc, mul_res); }}",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMSUBAi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("{{ __m128 mul_res = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i)); "
|
||||
"ctx->vu0_acc = PS2_VSUB(ctx->vu0_acc, mul_res); }}",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMULA(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]);",
|
||||
inst.rs, inst.rt);
|
||||
vfs, vft);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMULAq(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_q));",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VMULAi(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VMUL(ctx->vu0_vf[{}], _mm_set1_ps(ctx->vu0_i));",
|
||||
inst.rs);
|
||||
vfs);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VOPMULA(const Instruction &inst)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t vft = inst.rt;
|
||||
return fmt::format("ctx->vu0_acc = PS2_VMUL(ctx->vu0_vf[{}], ctx->vu0_vf[{}]);",
|
||||
inst.rs, inst.rt);
|
||||
vfs, vft);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VITOF(const Instruction &inst, int shift)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
float scale = (shift == 0) ? 1.0f : (1.0f / static_cast<float>(1 << shift));
|
||||
|
||||
@@ -2765,7 +2926,7 @@ namespace ps2recomp
|
||||
"res = _mm_mul_ps(res, _mm_set1_ps({}f)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs, scale,
|
||||
vfs, scale,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rt, inst.rt);
|
||||
@@ -2773,6 +2934,7 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VFTOI(const Instruction &inst, int shift)
|
||||
{
|
||||
uint8_t vfs = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
float scale = (shift == 0) ? 1.0f : static_cast<float>(1 << shift);
|
||||
|
||||
@@ -2782,7 +2944,7 @@ namespace ps2recomp
|
||||
"__m128 res = _mm_castsi128_ps(res_i); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs, scale,
|
||||
vfs, scale,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rt, inst.rt);
|
||||
@@ -2790,44 +2952,47 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VLQI(const Instruction &inst)
|
||||
{
|
||||
uint8_t vis = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ uint32_t addr = ((uint32_t)(ctx->vi[{}] & 0x3FF)) << 4; "
|
||||
"__m128 res = _mm_castsi128_ps(READ128(addr)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); "
|
||||
"ctx->vi[{}] = (ctx->vi[{}] + 1) & 0x3FF; }}",
|
||||
inst.rs,
|
||||
vis,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rt, inst.rt,
|
||||
inst.rs, inst.rs);
|
||||
vis, vis);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VSQI(const Instruction &inst)
|
||||
{
|
||||
uint8_t vis = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ uint32_t addr = ((uint32_t)(ctx->vi[{}] & 0x3FF)) << 4; "
|
||||
"__m128i old_val = READ128(addr); "
|
||||
"__m128 res = _mm_blendv_ps(_mm_castsi128_ps(old_val), ctx->vu0_vf[{}], _mm_castsi128_ps(_mm_set_epi32({}, {}, {}, {}))); "
|
||||
"WRITE128(addr, _mm_castps_si128(res)); "
|
||||
"ctx->vi[{}] = (ctx->vi[{}] + 1) & 0x3FF; }}",
|
||||
inst.rs,
|
||||
vis,
|
||||
inst.rt,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rs, inst.rs);
|
||||
vis, vis);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VLQD(const Instruction &inst)
|
||||
{
|
||||
uint8_t vis = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ ctx->vi[{}] = (ctx->vi[{}] - 1) & 0x3FF; "
|
||||
"uint32_t addr = ((uint32_t)(ctx->vi[{}] & 0x3FF)) << 4; "
|
||||
"__m128 res = _mm_castsi128_ps(READ128(addr)); "
|
||||
"__m128i mask = _mm_set_epi32({}, {}, {}, {}); "
|
||||
"ctx->vu0_vf[{}] = _mm_blendv_ps(ctx->vu0_vf[{}], res, _mm_castsi128_ps(mask)); }}",
|
||||
inst.rs, inst.rs,
|
||||
inst.rs,
|
||||
vis, vis,
|
||||
vis,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0,
|
||||
inst.rt, inst.rt);
|
||||
@@ -2835,14 +3000,15 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VSQD(const Instruction &inst)
|
||||
{
|
||||
uint8_t vis = inst.rd;
|
||||
uint8_t dest_mask = inst.vectorInfo.vectorField;
|
||||
return fmt::format("{{ ctx->vi[{}] = (ctx->vi[{}] - 1) & 0x3FF; "
|
||||
"uint32_t addr = ((uint32_t)(ctx->vi[{}] & 0x3FF)) << 4; "
|
||||
"__m128i old_val = READ128(addr); "
|
||||
"__m128 res = _mm_blendv_ps(_mm_castsi128_ps(old_val), ctx->vu0_vf[{}], _mm_castsi128_ps(_mm_set_epi32({}, {}, {}, {}))); "
|
||||
"WRITE128(addr, _mm_castps_si128(res)); }}",
|
||||
inst.rs, inst.rs,
|
||||
inst.rs,
|
||||
vis, vis,
|
||||
vis,
|
||||
inst.rt,
|
||||
(dest_mask & 0x8) ? -1 : 0, (dest_mask & 0x4) ? -1 : 0,
|
||||
(dest_mask & 0x2) ? -1 : 0, (dest_mask & 0x1) ? -1 : 0);
|
||||
@@ -2857,11 +3023,13 @@ namespace ps2recomp
|
||||
|
||||
std::string CodeGenerator::translateVU_VRINIT(const Instruction &inst)
|
||||
{
|
||||
uint8_t fs_reg = inst.rs;
|
||||
uint8_t fs_reg = inst.rd;
|
||||
uint8_t fsf = inst.vectorInfo.fsf;
|
||||
|
||||
return fmt::format(
|
||||
"{{ "
|
||||
" uint32_t seed = *(uint32_t*)&ctx->vu0_vf[{}]; "
|
||||
" float src = _mm_cvtss_f32(_mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,{}))); "
|
||||
" uint32_t seed; std::memcpy(&seed, &src, sizeof(seed)); "
|
||||
" "
|
||||
" // PS2 uses a specific LFSR initialization pattern "
|
||||
" if (seed == 0) seed = 1; " // Prevent zero seed
|
||||
@@ -2873,17 +3041,20 @@ namespace ps2recomp
|
||||
" "
|
||||
" ctx->vu0_r = _mm_castsi128_ps(_mm_set_epi32(r3, r2, r1, r0)); \n "
|
||||
"}}",
|
||||
fs_reg);
|
||||
fs_reg, fs_reg, fsf);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateVU_VRXOR(const Instruction &inst)
|
||||
{
|
||||
uint8_t fs_reg = inst.rs;
|
||||
uint8_t fs_reg = inst.rd;
|
||||
uint8_t fsf = inst.vectorInfo.fsf;
|
||||
|
||||
return fmt::format(
|
||||
"{{ "
|
||||
" float src = _mm_cvtss_f32(_mm_shuffle_ps(ctx->vu0_vf[{}], ctx->vu0_vf[{}], _MM_SHUFFLE(0,0,0,{}))); "
|
||||
" uint32_t src_bits; std::memcpy(&src_bits, &src, sizeof(src_bits)); "
|
||||
" __m128i r_current = _mm_castps_si128(ctx->vu0_r); "
|
||||
" __m128i fs_data = _mm_castps_si128(ctx->vu0_vf[{}]); "
|
||||
" __m128i fs_data = _mm_set1_epi32((int)src_bits); "
|
||||
" "
|
||||
" // XOR the current random value with the data from the VU vector register "
|
||||
" __m128i xored = _mm_xor_si128(r_current, fs_data); "
|
||||
@@ -2894,7 +3065,7 @@ namespace ps2recomp
|
||||
" "
|
||||
" ctx->vu0_r = (__m128)mixed; "
|
||||
"}}",
|
||||
fs_reg);
|
||||
fs_reg, fs_reg, fsf);
|
||||
}
|
||||
|
||||
std::string CodeGenerator::translateQFSRV(const Instruction &inst)
|
||||
|
||||
@@ -493,6 +493,72 @@ namespace ps2recomp
|
||||
std::unordered_map<uint32_t, size_t> indexByStart;
|
||||
indexByStart.reserve(functions.capacity());
|
||||
|
||||
// Symbol table sizes are authoritative wwhen exist
|
||||
std::unordered_map<uint32_t, uint32_t> authoritativeEndByStart;
|
||||
authoritativeEndByStart.reserve(m_symbols.size());
|
||||
for (const auto &symbol : m_symbols)
|
||||
{
|
||||
if (!symbol.isFunction || symbol.isImported || symbol.size == 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
const uint32_t symbolEnd = symbol.address + symbol.size;
|
||||
auto inserted = authoritativeEndByStart.emplace(symbol.address, symbolEnd);
|
||||
if (!inserted.second && symbolEnd > inserted.first->second)
|
||||
{
|
||||
inserted.first->second = symbolEnd;
|
||||
}
|
||||
}
|
||||
|
||||
// Named debug/map functions with explicit bounds are authoritative too.
|
||||
for (const auto &extra : m_extraFunctions)
|
||||
{
|
||||
if (extra.start == 0 || extra.end <= extra.start || extra.name.empty() || IsAutoGeneratedName(extra.name))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
auto inserted = authoritativeEndByStart.emplace(extra.start, extra.end);
|
||||
if (!inserted.second && extra.end > inserted.first->second)
|
||||
{
|
||||
inserted.first->second = extra.end;
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<std::pair<uint32_t, uint32_t>> authoritativeRanges;
|
||||
authoritativeRanges.reserve(authoritativeEndByStart.size());
|
||||
for (const auto &entry : authoritativeEndByStart)
|
||||
{
|
||||
authoritativeRanges.emplace_back(entry.first, entry.second);
|
||||
}
|
||||
std::sort(authoritativeRanges.begin(), authoritativeRanges.end(),
|
||||
[](const std::pair<uint32_t, uint32_t> &a, const std::pair<uint32_t, uint32_t> &b)
|
||||
{ return a.first < b.first; });
|
||||
|
||||
auto isInsideAuthoritativeRange = [&](uint32_t startAddress)
|
||||
{
|
||||
if (authoritativeRanges.empty())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
auto it = std::upper_bound(
|
||||
authoritativeRanges.begin(),
|
||||
authoritativeRanges.end(),
|
||||
startAddress,
|
||||
[](uint32_t value, const std::pair<uint32_t, uint32_t> &range)
|
||||
{ return value < range.first; });
|
||||
|
||||
if (it == authoritativeRanges.begin())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
--it;
|
||||
return startAddress > it->first && startAddress < it->second;
|
||||
};
|
||||
|
||||
auto addOrMerge = [&](const Function &newFunction)
|
||||
{
|
||||
if (newFunction.start == 0)
|
||||
@@ -500,11 +566,27 @@ namespace ps2recomp
|
||||
return;
|
||||
}
|
||||
|
||||
const bool insideAuthoritativeRange = isInsideAuthoritativeRange(newFunction.start);
|
||||
const bool hasOwnAuthoritativeRange = authoritativeEndByStart.contains(newFunction.start);
|
||||
const bool hasAutoName = newFunction.name.empty() || IsAutoGeneratedName(newFunction.name);
|
||||
|
||||
if (insideAuthoritativeRange && (!hasOwnAuthoritativeRange || hasAutoName))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
auto it = indexByStart.find(newFunction.start);
|
||||
if (it == indexByStart.end())
|
||||
{
|
||||
indexByStart.emplace(newFunction.start, functions.size());
|
||||
functions.push_back(newFunction);
|
||||
|
||||
Function &insertedFunction = functions.back();
|
||||
auto authoritativeIt = authoritativeEndByStart.find(insertedFunction.start);
|
||||
if (authoritativeIt != authoritativeEndByStart.end())
|
||||
{
|
||||
insertedFunction.end = authoritativeIt->second;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -518,7 +600,12 @@ namespace ps2recomp
|
||||
}
|
||||
}
|
||||
|
||||
if (newFunction.end > existing.end)
|
||||
auto authoritativeIt = authoritativeEndByStart.find(existing.start);
|
||||
if (authoritativeIt != authoritativeEndByStart.end())
|
||||
{
|
||||
existing.end = authoritativeIt->second;
|
||||
}
|
||||
else if (newFunction.end > existing.end)
|
||||
{
|
||||
existing.end = newFunction.end;
|
||||
}
|
||||
@@ -557,6 +644,13 @@ namespace ps2recomp
|
||||
{
|
||||
Function &func = functions[index];
|
||||
|
||||
auto authoritativeIt = authoritativeEndByStart.find(func.start);
|
||||
if (authoritativeIt != authoritativeEndByStart.end())
|
||||
{
|
||||
func.end = authoritativeIt->second;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (func.end > func.start)
|
||||
{
|
||||
continue;
|
||||
|
||||
@@ -807,29 +807,30 @@ namespace ps2recomp
|
||||
case COP2_CO + 14:
|
||||
case COP2_CO + 15:
|
||||
{ // Refine based on specific VU function
|
||||
uint8_t vu_func = inst.function;
|
||||
bool is_special2 = vu_func >= 0x3C;
|
||||
uint8_t vu_fhi_flo = 0;
|
||||
const uint8_t special1Func = static_cast<uint8_t>(inst.function & 0x3F);
|
||||
const bool isSpecial2 = special1Func >= 0x3C;
|
||||
const uint8_t special2Func = static_cast<uint8_t>((((inst.raw >> 6) & 0x1F) << 2) | (inst.raw & 0x3));
|
||||
const uint8_t vuFunc = isSpecial2 ? special2Func : special1Func;
|
||||
|
||||
if (is_special2)
|
||||
inst.vectorInfo.vectorField = static_cast<uint8_t>((inst.raw >> 21) & 0xF);
|
||||
|
||||
// Component selectors are encoded in bits 21-24 as L/M for these macro ops.
|
||||
if (vuFunc == VU0_S2_VDIV || vuFunc == VU0_S2_VRSQRT ||
|
||||
vuFunc == VU0_S2_VMTIR || vuFunc == VU0_S2_VRINIT || vuFunc == VU0_S2_VRXOR)
|
||||
{
|
||||
vu_fhi_flo = static_cast<uint8_t>((((inst.raw >> 6) & 0x1F) << 2) | (inst.raw & 0x3));
|
||||
inst.vectorInfo.fsf = static_cast<uint8_t>((inst.raw >> 21) & 0x3); // L selector
|
||||
}
|
||||
|
||||
if (is_special2 && (vu_fhi_flo == VU0_S2_VDIV || vu_fhi_flo == VU0_S2_VSQRT || vu_fhi_flo == VU0_S2_VRSQRT))
|
||||
if (vuFunc == VU0_S2_VDIV || vuFunc == VU0_S2_VSQRT || vuFunc == VU0_S2_VRSQRT)
|
||||
{
|
||||
inst.vectorInfo.fsf = (inst.raw >> 10) & 0x3; // Extract bits 10-11
|
||||
inst.vectorInfo.ftf = (inst.raw >> 8) & 0x3; // Extract bits 8-9
|
||||
inst.vectorInfo.ftf = static_cast<uint8_t>((inst.raw >> 23) & 0x3); // M selector
|
||||
}
|
||||
|
||||
inst.vectorInfo.vectorField = (inst.raw >> 21) & 0xF;
|
||||
|
||||
inst.modificationInfo.modifiesVFR = true; // Default: Modifies Vector Float Reg
|
||||
inst.modificationInfo.modifiesControl = true; // Default: Modifies Flags/Special Regs (Q, P, I, MAC, Clip...)
|
||||
|
||||
if (is_special2) // Special2 Table
|
||||
if (isSpecial2)
|
||||
{
|
||||
switch (vu_fhi_flo)
|
||||
switch (vuFunc)
|
||||
{
|
||||
case VU0_S2_VDIV:
|
||||
case VU0_S2_VSQRT:
|
||||
@@ -854,21 +855,16 @@ namespace ps2recomp
|
||||
inst.isStore = true;
|
||||
inst.modificationInfo.modifiesMemory = true;
|
||||
break;
|
||||
|
||||
case VU0_S2_VRINIT:
|
||||
case VU0_S2_VRXOR:
|
||||
inst.modificationInfo.modifiesVFR = false; /* Modifies R */
|
||||
break; // Modifies R
|
||||
break;
|
||||
case VU0_S2_VRGET:
|
||||
inst.modificationInfo.modifiesControl = false; /* Reads R, writes VF */
|
||||
break;
|
||||
case VU0_S2_VRNEXT:
|
||||
inst.modificationInfo.modifiesControl = true; /* Modifies R */
|
||||
inst.modificationInfo.modifiesVFR = false;
|
||||
break; // Writes R
|
||||
case VU0_S2_VWAITQ:
|
||||
inst.modificationInfo.modifiesVFR = false;
|
||||
inst.modificationInfo.modifiesControl = false;
|
||||
break;
|
||||
case VU0_S2_VABS:
|
||||
case VU0_S2_VMOVE:
|
||||
@@ -884,6 +880,19 @@ namespace ps2recomp
|
||||
break;
|
||||
}
|
||||
}
|
||||
else // Special1 Table
|
||||
{
|
||||
if (vuFunc >= VU0_S1_VIADD && vuFunc <= VU0_S1_VIOR)
|
||||
{
|
||||
inst.modificationInfo.modifiesVFR = false;
|
||||
inst.modificationInfo.modifiesVIR = true;
|
||||
} // Integer ops
|
||||
if (vuFunc == VU0_S1_VIADDI)
|
||||
{
|
||||
inst.modificationInfo.modifiesVFR = false;
|
||||
inst.modificationInfo.modifiesVIR = true;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -255,6 +255,7 @@ struct SemaInfo
|
||||
uint32_t attr = 0;
|
||||
uint32_t option = 0;
|
||||
int waiters = 0;
|
||||
bool deleted = false;
|
||||
std::mutex m;
|
||||
std::condition_variable cv;
|
||||
};
|
||||
@@ -319,6 +320,7 @@ static std::mutex g_alarm_mutex;
|
||||
static std::condition_variable g_alarm_cv;
|
||||
static std::once_flag g_alarm_worker_once;
|
||||
std::atomic<int> g_activeThreads{0};
|
||||
static std::mutex g_fd_mutex;
|
||||
|
||||
struct RpcServerState
|
||||
{
|
||||
@@ -1110,9 +1112,8 @@ static std::chrono::microseconds alarmTicksToDuration(uint16_t ticks)
|
||||
static void ensureAlarmWorkerRunning()
|
||||
{
|
||||
std::call_once(g_alarm_worker_once, []()
|
||||
{
|
||||
std::thread([]()
|
||||
{
|
||||
{ std::thread([]()
|
||||
{
|
||||
for (;;)
|
||||
{
|
||||
std::shared_ptr<AlarmInfo> readyAlarm;
|
||||
@@ -1186,7 +1187,7 @@ static void ensureAlarmWorkerRunning()
|
||||
}
|
||||
}
|
||||
} })
|
||||
.detach(); });
|
||||
.detach(); });
|
||||
}
|
||||
|
||||
static void rpcCopyToRdram(uint8_t *rdram, uint32_t dst, uint32_t src, size_t size)
|
||||
@@ -1307,23 +1308,6 @@ static uint32_t rpcAllocServerAddr(uint8_t *rdram)
|
||||
rpcZeroRdram(rdram, addr, kRpcServerStride);
|
||||
return addr;
|
||||
}
|
||||
/*
|
||||
struct SemaInfo
|
||||
{
|
||||
int count = 0;
|
||||
int maxCount = 0;
|
||||
std::mutex m;
|
||||
std::condition_variable cv;
|
||||
};
|
||||
|
||||
static std::unordered_map<int, ThreadInfo> g_threads;
|
||||
static int g_nextThreadId = 2; // Reserve 1 for the main thread
|
||||
static thread_local int g_currentThreadId = 1;
|
||||
|
||||
static std::unordered_map<int, std::shared_ptr<SemaInfo>> g_semas;
|
||||
static int g_nextSemaId = 1;
|
||||
std::atomic<int> g_activeThreads{0};
|
||||
*/
|
||||
|
||||
struct IrqHandlerInfo
|
||||
{
|
||||
@@ -1342,6 +1326,8 @@ int allocatePs2Fd(FILE *file)
|
||||
{
|
||||
if (!file)
|
||||
return -1;
|
||||
|
||||
std::lock_guard<std::mutex> lock(g_fd_mutex);
|
||||
int fd = g_nextFd++;
|
||||
g_fileDescriptors[fd] = file;
|
||||
return fd;
|
||||
@@ -1349,6 +1335,7 @@ int allocatePs2Fd(FILE *file)
|
||||
|
||||
FILE *getHostFile(int ps2Fd)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(g_fd_mutex);
|
||||
auto it = g_fileDescriptors.find(ps2Fd);
|
||||
if (it != g_fileDescriptors.end())
|
||||
{
|
||||
@@ -1359,6 +1346,7 @@ FILE *getHostFile(int ps2Fd)
|
||||
|
||||
void releasePs2Fd(int ps2Fd)
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(g_fd_mutex);
|
||||
g_fileDescriptors.erase(ps2Fd);
|
||||
}
|
||||
|
||||
@@ -2024,9 +2012,28 @@ namespace ps2_syscalls
|
||||
void DeleteThread(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime)
|
||||
{
|
||||
int tid = static_cast<int>(getRegU32(ctx, 4)); // $a0
|
||||
std::lock_guard<std::mutex> lock(g_thread_map_mutex);
|
||||
g_threads.erase(tid);
|
||||
setReturnS32(ctx, 0);
|
||||
auto info = lookupThreadInfo(tid);
|
||||
if (!info)
|
||||
{
|
||||
setReturnS32(ctx, KE_UNKNOWN_THID);
|
||||
return;
|
||||
}
|
||||
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(info->m);
|
||||
if (info->status != THS_DORMANT)
|
||||
{
|
||||
setReturnS32(ctx, KE_NOT_WAIT); // for now
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(g_thread_map_mutex);
|
||||
g_threads.erase(tid);
|
||||
}
|
||||
|
||||
setReturnS32(ctx, KE_OK);
|
||||
}
|
||||
|
||||
void StartThread(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime)
|
||||
@@ -2157,7 +2164,7 @@ namespace ps2_syscalls
|
||||
.detach();
|
||||
|
||||
// for now report success to the caller.
|
||||
setReturnS32(ctx, tid);
|
||||
setReturnS32(ctx, 0);
|
||||
}
|
||||
|
||||
void ExitThread(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime)
|
||||
@@ -2675,9 +2682,27 @@ namespace ps2_syscalls
|
||||
void DeleteSema(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime)
|
||||
{
|
||||
int sid = static_cast<int>(getRegU32(ctx, 4));
|
||||
std::lock_guard<std::mutex> lock(g_sema_map_mutex);
|
||||
g_semas.erase(sid);
|
||||
setReturnS32(ctx, 0);
|
||||
std::shared_ptr<SemaInfo> sema;
|
||||
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(g_sema_map_mutex);
|
||||
auto it = g_semas.find(sid);
|
||||
if (it == g_semas.end())
|
||||
{
|
||||
setReturnS32(ctx, KE_UNKNOWN_SEMID);
|
||||
return;
|
||||
}
|
||||
sema = it->second;
|
||||
g_semas.erase(it);
|
||||
}
|
||||
|
||||
{
|
||||
std::lock_guard<std::mutex> lock(sema->m);
|
||||
sema->deleted = true;
|
||||
}
|
||||
sema->cv.notify_all();
|
||||
|
||||
setReturnS32(ctx, KE_OK);
|
||||
}
|
||||
|
||||
void SignalSema(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime)
|
||||
@@ -2729,11 +2754,16 @@ namespace ps2_syscalls
|
||||
|
||||
sema->waiters++;
|
||||
sema->cv.wait(lock, [&]()
|
||||
{
|
||||
{
|
||||
bool forced = info ? info->forceRelease.load() : false;
|
||||
bool terminated = info ? info->terminated.load() : false;
|
||||
return sema->count > 0 || forced || terminated; });
|
||||
return sema->count > 0 || sema->deleted || forced || terminated; //
|
||||
});
|
||||
sema->waiters--;
|
||||
if (sema->deleted)
|
||||
{
|
||||
ret = KE_WAIT_DELETE;
|
||||
}
|
||||
|
||||
if (info)
|
||||
{
|
||||
@@ -3036,9 +3066,21 @@ namespace ps2_syscalls
|
||||
*resBitsPtr = info->bits;
|
||||
}
|
||||
|
||||
if (ret == KE_OK && (mode & (WEF_CLEAR | WEF_CLEAR_ALL)))
|
||||
if (ret == KE_OK)
|
||||
{
|
||||
info->bits = 0;
|
||||
if (resBitsPtr)
|
||||
{
|
||||
*resBitsPtr = info->bits;
|
||||
}
|
||||
|
||||
if (mode & WEF_CLEAR_ALL)
|
||||
{
|
||||
info->bits = 0;
|
||||
}
|
||||
else if (mode & WEF_CLEAR)
|
||||
{
|
||||
info->bits &= ~waitBits;
|
||||
}
|
||||
}
|
||||
|
||||
lock.unlock();
|
||||
@@ -4556,42 +4598,35 @@ namespace ps2_syscalls
|
||||
size_t size = getRegU32(ctx, 6); // $a2
|
||||
|
||||
const uint8_t *hostBuf = getConstMemPtr(rdram, bufAddr);
|
||||
FILE *fp = getHostFile(ps2Fd);
|
||||
|
||||
if (!hostBuf)
|
||||
{
|
||||
std::cerr << "fioWrite error: Invalid buffer address for fd " << ps2Fd << std::endl;
|
||||
setReturnS32(ctx, -1); // -EFAULT
|
||||
return;
|
||||
}
|
||||
if (!fp)
|
||||
{
|
||||
std::cerr << "fioWrite error: Invalid file descriptor " << ps2Fd << std::endl;
|
||||
setReturnS32(ctx, -1); // -EBADF
|
||||
return;
|
||||
}
|
||||
if (size == 0)
|
||||
{
|
||||
setReturnS32(ctx, 0); // Wrote 0 bytes
|
||||
setReturnS32(ctx, -1);
|
||||
return;
|
||||
}
|
||||
|
||||
size_t bytesWritten = ::fwrite(hostBuf, 1, size, fp);
|
||||
|
||||
if (bytesWritten < size)
|
||||
size_t bytesWritten = 0;
|
||||
{
|
||||
if (ferror(fp))
|
||||
std::lock_guard<std::mutex> lock(g_fd_mutex);
|
||||
FILE *fp = getHostFile(ps2Fd);
|
||||
if (!fp)
|
||||
{
|
||||
setReturnS32(ctx, -1); // -EFAULT
|
||||
return;
|
||||
}
|
||||
|
||||
if (size == 0)
|
||||
{
|
||||
setReturnS32(ctx, 0); // Wrote 0 bytes
|
||||
return;
|
||||
}
|
||||
|
||||
bytesWritten = ::fwrite(hostBuf, 1, size, fp);
|
||||
if (bytesWritten < size && ferror(fp))
|
||||
{
|
||||
std::cerr << "fioWrite error: fwrite failed for fd " << ps2Fd << ": " << strerror(errno) << std::endl;
|
||||
clearerr(fp);
|
||||
setReturnS32(ctx, -1); // -EIO, -ENOSPC etc.
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Partial write without error? Possible but idk.
|
||||
setReturnS32(ctx, (int32_t)bytesWritten);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// returns number of bytes written
|
||||
@@ -4960,8 +4995,8 @@ namespace ps2_syscalls
|
||||
|
||||
void SifLoadElfPart(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime)
|
||||
{
|
||||
const uint32_t pathAddr = getRegU32(ctx, 4); // $a0 - path
|
||||
const uint32_t secNameAddr = getRegU32(ctx, 5); // $a1 - section name ("all" typically)
|
||||
const uint32_t pathAddr = getRegU32(ctx, 4); // $a0 - path
|
||||
const uint32_t secNameAddr = getRegU32(ctx, 5); // $a1 - section name ("all" typically)
|
||||
const uint32_t execDataAddr = getRegU32(ctx, 6); // $a2 - t_ExecData*
|
||||
|
||||
std::string secName = readGuestCStringBounded(rdram, secNameAddr, kLoadfileArgMaxBytes);
|
||||
@@ -5026,6 +5061,18 @@ namespace ps2_syscalls
|
||||
|
||||
void TODO(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime, uint32_t encodedSyscallId)
|
||||
{
|
||||
// a bit more detail mayber reomve old logic, lets get it more raw
|
||||
std::cerr << "[Syscall TODO]"
|
||||
<< " encoded=0x" << std::hex << encodedSyscallId
|
||||
<< " v1=0x" << getRegU32(ctx, 3)
|
||||
<< " v0=0x" << getRegU32(ctx, 2)
|
||||
<< " a0=0x" << getRegU32(ctx, 4)
|
||||
<< " a1=0x" << getRegU32(ctx, 5)
|
||||
<< " a2=0x" << getRegU32(ctx, 6)
|
||||
<< " a3=0x" << getRegU32(ctx, 7)
|
||||
<< " pc=0x" << ctx->pc
|
||||
<< std::dec << std::endl;
|
||||
|
||||
const uint32_t v0 = getRegU32(ctx, 2);
|
||||
const uint32_t v1 = getRegU32(ctx, 3);
|
||||
const uint32_t caller_ra = getRegU32(ctx, 31);
|
||||
|
||||
@@ -360,6 +360,86 @@ void register_code_generator_tests()
|
||||
}
|
||||
});
|
||||
|
||||
tc.Run("VU0 S1 uses fd/fs/ft fields (sa/rd/rt)", [](TestCase &t) {
|
||||
Instruction inst{};
|
||||
inst.opcode = OPCODE_COP2;
|
||||
inst.rs = COP2_CO | 0xB; // format + destination mask bits, not a VF register index
|
||||
inst.rt = 7;
|
||||
inst.rd = 11;
|
||||
inst.sa = 3;
|
||||
inst.function = VU0_S1_VADD;
|
||||
inst.vectorInfo.vectorField = 0xF;
|
||||
|
||||
CodeGenerator gen({});
|
||||
std::string out = gen.translateInstruction(inst);
|
||||
|
||||
t.IsTrue(out.find("ctx->vu0_vf[11]") != std::string::npos, "S1 fs should come from rd");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[7]") != std::string::npos, "S1 ft should come from rt");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[3]") != std::string::npos, "S1 fd should come from sa");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[27]") == std::string::npos, "S1 must not use rs(format) as register index");
|
||||
});
|
||||
|
||||
tc.Run("VU0 S1 q/i forms keep mask and use sa as destination", [](TestCase &t) {
|
||||
Instruction inst{};
|
||||
inst.opcode = OPCODE_COP2;
|
||||
inst.rs = COP2_CO | 0x9; // format + destination mask bits
|
||||
inst.rt = 5;
|
||||
inst.rd = 13;
|
||||
inst.sa = 4;
|
||||
inst.function = VU0_S1_VADDq;
|
||||
inst.vectorInfo.vectorField = 0x9;
|
||||
|
||||
CodeGenerator gen({});
|
||||
std::string out = gen.translateInstruction(inst);
|
||||
|
||||
t.IsTrue(out.find("_mm_blendv_ps") != std::string::npos, "S1 q/i form should honor destination mask");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[13]") != std::string::npos, "S1 q/i source should come from rd");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[4]") != std::string::npos, "S1 q/i destination should come from sa");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[25]") == std::string::npos, "S1 q/i must not use rs(format) as register index");
|
||||
});
|
||||
|
||||
tc.Run("VU0 S2 vector ops use rd as source and rt as destination", [](TestCase &t) {
|
||||
Instruction inst{};
|
||||
inst.opcode = OPCODE_COP2;
|
||||
inst.rs = COP2_CO | 0x6; // format + destination mask bits
|
||||
inst.rt = 8;
|
||||
inst.rd = 12;
|
||||
inst.function = 0x3C; // force Special2 path
|
||||
inst.vectorInfo.vectorField = 0xF;
|
||||
|
||||
uint32_t upper = (VU0_S2_VABS >> 2) & 0x1F;
|
||||
uint32_t lower = VU0_S2_VABS & 0x3;
|
||||
inst.raw = (upper << 6) | lower;
|
||||
|
||||
CodeGenerator gen({});
|
||||
std::string out = gen.translateInstruction(inst);
|
||||
|
||||
t.IsTrue(out.find("ctx->vu0_vf[12]") != std::string::npos, "S2 source VF should come from rd");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[8]") != std::string::npos, "S2 destination VF should come from rt");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[22]") == std::string::npos, "S2 must not use rs(format) as register index");
|
||||
});
|
||||
|
||||
tc.Run("VU0 S2 VI memory ops use rd as VI base register", [](TestCase &t) {
|
||||
Instruction inst{};
|
||||
inst.opcode = OPCODE_COP2;
|
||||
inst.rs = COP2_CO | 0x4; // format + destination mask bits
|
||||
inst.rt = 6;
|
||||
inst.rd = 14;
|
||||
inst.function = 0x3C; // force Special2 path
|
||||
inst.vectorInfo.vectorField = 0xF;
|
||||
|
||||
uint32_t upper = (VU0_S2_VLQI >> 2) & 0x1F;
|
||||
uint32_t lower = VU0_S2_VLQI & 0x3;
|
||||
inst.raw = (upper << 6) | lower;
|
||||
|
||||
CodeGenerator gen({});
|
||||
std::string out = gen.translateInstruction(inst);
|
||||
|
||||
t.IsTrue(out.find("ctx->vi[14]") != std::string::npos, "S2 VLQI base VI should come from rd");
|
||||
t.IsTrue(out.find("ctx->vu0_vf[6]") != std::string::npos, "S2 VLQI destination VF should come from rt");
|
||||
t.IsTrue(out.find("ctx->vi[20]") == std::string::npos, "S2 VLQI must not use rs(format) as VI index");
|
||||
});
|
||||
|
||||
tc.Run("JAL to known function emits call and check", [](TestCase &t) {
|
||||
Function func;
|
||||
func.name = "jal_test";
|
||||
@@ -515,9 +595,10 @@ void register_code_generator_tests()
|
||||
func.isRecompiled = true;
|
||||
func.isStub = false;
|
||||
|
||||
// Create an internal JAL so collectInternalBranchTargets inserts returnAddr (0x1308) as internal target.
|
||||
// Create an internal JAL with an explicit instruction at returnAddr (0x1308).
|
||||
Instruction jal = makeJal(0x1300, 0x1310);
|
||||
Instruction jalDelay = makeNop(0x1304);
|
||||
Instruction atReturn = makeNop(0x1308);
|
||||
Instruction atTarget = makeNop(0x1310);
|
||||
|
||||
// JR $31 at 0x1314 with delay slot at 0x1318
|
||||
@@ -525,7 +606,7 @@ void register_code_generator_tests()
|
||||
Instruction jrDelay = makeNop(0x1318);
|
||||
|
||||
CodeGenerator gen({});
|
||||
std::string generated = gen.generateFunction(func, { jal, jalDelay, atTarget, jr, jrDelay }, false);
|
||||
std::string generated = gen.generateFunction(func, { jal, jalDelay, atReturn, atTarget, jr, jrDelay }, false);
|
||||
printGeneratedCode("JR $31 emits switch for internal return targets", generated);
|
||||
|
||||
t.IsTrue(generated.find("switch (jumpTarget)") != std::string::npos, "JR $31 should emit switch for internal targets");
|
||||
|
||||
Reference in New Issue
Block a user