mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
add missed file changes
This commit is contained in:
parent
640df36c48
commit
37f423aec3
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ namespace rsx
|
|||
{
|
||||
public:
|
||||
RSXDMAWriter(void* mem)
|
||||
: m_host_context_ptr(new (mem) host_gpu_context_t)
|
||||
: m_host_context_ptr(new(mem) host_gpu_context_t)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "asm.hpp"
|
||||
#include <atomic>
|
||||
#include <chrono>
|
||||
#include <cstdint>
|
||||
|
|
@ -7,7 +8,6 @@
|
|||
#include <limits>
|
||||
#include <system_error>
|
||||
#include <type_traits>
|
||||
#include "asm.hpp"
|
||||
|
||||
namespace rx {
|
||||
static constexpr auto kRelaxSpinCount = 12;
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
#include "rx/tsc.hpp"
|
||||
#include "types.hpp"
|
||||
#include <thread>
|
||||
#include <atomic>
|
||||
#include <thread>
|
||||
|
||||
extern bool g_use_rtm;
|
||||
extern u64 g_rtm_tx_limit1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue