add missed file changes

This commit is contained in:
DH 2025-10-05 20:07:19 +03:00
parent 640df36c48
commit 37f423aec3
6 changed files with 8 additions and 8 deletions

View file

@ -10,7 +10,7 @@
#include "cellGcmSys.h"
#include "sysPrxForUser.h"
#include "util/asm.hpp"
#include "rx/asm.hpp"
LOG_CHANNEL(cellGcmSys);
@ -1491,7 +1491,7 @@ s32 cellGcmCallback(ppu_thread& ppu, vm::ptr<CellGcmContextData> context, u32 co
return 0;
}
busy_wait();
rx::busy_wait();
}
return CELL_OK;

View file

@ -4145,7 +4145,7 @@ s32 _spurs::create_task(vm::ptr<CellSpursTaskset> taskset, vm::ptr<u32> task_id,
{
v128 ls_pattern_128 = v128::from64r(ls_pattern->_u64[0], ls_pattern->_u64[1]);
const u32 ls_blocks = utils::popcnt128(ls_pattern_128._u);
const u32 ls_blocks = rx::popcnt128(ls_pattern_128._u);
if (ls_blocks > alloc_ls_blocks)
{

View file

@ -1446,7 +1446,7 @@ s32 spursTasksetProcessRequest(spu_thread& spu, s32 request, u32* taskId, u32* i
{
v128 newlyReadyTasks = gv_andn(ready, signalled | pready);
numNewlyReadyTasks = utils::popcnt128(newlyReadyTasks._u);
numNewlyReadyTasks = rx::popcnt128(newlyReadyTasks._u);
}
v128 readyButNotRunning;
@ -1701,7 +1701,7 @@ s32 spursTasketSaveTaskContext(spu_thread& spu)
u32 allocLsBlocks = static_cast<u32>(taskInfo->context_save_storage_and_alloc_ls_blocks & 0x7F);
v128 ls_pattern = v128::from64r(taskInfo->ls_pattern._u64[0], taskInfo->ls_pattern._u64[1]);
const u32 lsBlocks = utils::popcnt128(ls_pattern._u);
const u32 lsBlocks = rx::popcnt128(ls_pattern._u);
if (lsBlocks > allocLsBlocks)
{