Home
last modified time | relevance | path

Searched refs:cpuAddress (Results 1 – 25 of 39) sorted by relevance

12

/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/GUI.NET/Debugger/Controls/
H A DctrlSourceViewer.cs365 private bool CurrentFileContainsAddress(int cpuAddress) in CurrentFileContainsAddress() argument
372 InteropEmu.DebugGetAbsoluteAddressAndType((uint)cpuAddress, addressInfo); in CurrentFileContainsAddress()
501 public LineProperties GetLineStyle(int cpuAddress, int lineIndex) in GetLineStyle() argument
513 cpuAddress >= 0 && in GetLineStyle()
515 …iewer._currentActiveAddress >= cpuAddress && _viewer._currentActiveAddress < nextCpuAddress && nex… in GetLineStyle()
516 (_viewer._currentActiveAddress == cpuAddress && nextCpuAddress < cpuAddress) in GetLineStyle()
527 ctrlDebuggerCode.LineStyleProvider.GetBreakpointLineProperties(props, cpuAddress, addressInfo); in GetLineStyle()
H A DctrlDebuggerCode.cs401 int cpuAddress = ctrlCodeViewer.GetLineNumber(j); in FindAllOccurrences()
404 Location = "$" + cpuAddress.ToString("X4"), in FindAllOccurrences()
406 CpuAddress = cpuAddress in FindAllOccurrences()
466 public LineProperties GetLineStyle(int cpuAddress, int lineNumber) in GetLineStyle() argument
471 GetBreakpointLineProperties(props, cpuAddress, addressInfo); in GetLineStyle()
494 …public static void GetBreakpointLineProperties(LineProperties props, int cpuAddress, AddressTypeIn… in GetBreakpointLineProperties() argument
498 if(breakpoint.Matches(cpuAddress, addressInfo)) { in GetBreakpointLineProperties()
H A DctrlMemoryAccessCounters.cs166 public LineProperties GetLineStyle(int cpuAddress, int lineIndex) in GetLineStyle() argument
168 if(_addresses.Contains(cpuAddress)) { in GetLineStyle()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/source/command_stream/
H A Dcommand_stream_receiver_simulated_common_hw_base.inl48 …y(GraphicsAllocation &graphicsAllocation, uint64_t &gpuAddress, void *&cpuAddress, size_t &size) c… argument
49 cpuAddress = graphicsAllocation.getUnderlyingBuffer();
60 if (cpuAddress == nullptr && graphicsAllocation.isAllocationLockable()) {
61 cpuAddress = this->getMemoryManager()->lockResource(&graphicsAllocation);
H A Dcommand_stream_receiver_simulated_hw.h100 void *cpuAddress; in writeMemoryWithAubManager() local
102 this->getParametersForWriteMemory(graphicsAllocation, gpuAddress, cpuAddress, size); in writeMemoryWithAubManager()
107 …aub_stream::AllocationParams allocationParams(gpuAddress, cpuAddress, size, this->getMemoryBank(&g… in writeMemoryWithAubManager()
H A Dcommand_stream_receiver_simulated_common_hw.h31 …y(GraphicsAllocation &graphicsAllocation, uint64_t &gpuAddress, void *&cpuAddress, size_t &size) c…
57 …virtual void writeMemory(uint64_t gpuAddress, void *cpuAddress, size_t size, uint32_t memoryBank, …
H A Dtbx_command_stream_receiver_hw.inl409 void TbxCommandStreamReceiverHw<GfxFamily>::writeMemory(uint64_t gpuAddress, void *cpuAddress, size… argument
415 …dressGGTTAndWriteMmeory(tbxStream, static_cast<uintptr_t>(gpuAddress), cpuAddress, physAddress, si…
431 void *cpuAddress; local
433 if (!this->getParametersForWriteMemory(gfxAllocation, gpuAddress, cpuAddress, size)) {
440 …writeMemory(gpuAddress, cpuAddress, size, this->getMemoryBank(&gfxAllocation), this->getPPGTTAddit…
536 auto cpuAddress = gfxAllocation.getUnderlyingBuffer(); local
543 tbxStream.readMemory(physAddress, ptrOffset(cpuAddress, offset), size);
H A Daub_command_stream_receiver_hw_base.inl630 void AUBCommandStreamReceiverHw<GfxFamily>::writeMemory(uint64_t gpuAddress, void *cpuAddress, size… argument
635 …ddress << " end address: " << gpuAddress + size << " cpu address: " << cpuAddress << " size: " << …
642 …AddressGGTTAndWriteMmeory(*stream, static_cast<uintptr_t>(gpuAddress), cpuAddress, physAddress, si…
659 void *cpuAddress; local
661 if (!this->getParametersForWriteMemory(gfxAllocation, gpuAddress, cpuAddress, size)) {
670 …writeMemory(gpuAddress, cpuAddress, size, this->getMemoryBank(&gfxAllocation), this->getPPGTTAddit…
H A Dtbx_command_stream_receiver_hw.h52 …void writeMemory(uint64_t gpuAddress, void *cpuAddress, size_t size, uint32_t memoryBank, uint64_t…
H A Daub_command_stream_receiver_hw.h51 …void writeMemory(uint64_t gpuAddress, void *cpuAddress, size_t size, uint32_t memoryBank, uint64_t…
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/Core/
H A DCodeRunner.cpp45 DisassemblyInfo CodeRunner::GetDisassemblyInfo(uint16_t cpuAddress) in GetDisassemblyInfo() argument
47 return DisassemblyInfo(_byteCode.data() + cpuAddress - CodeRunner::BaseAddress, false); in GetDisassemblyInfo()
H A DDisassembler.cpp209 uint32_t Disassembler::BuildCache(AddressTypeInfo &info, uint16_t cpuAddress, bool isSubEntryPoint,… in BuildCache() argument
242 uint16_t jumpDest = disInfo->GetJumpDestination(cpuAddress, _memoryManager); in BuildCache()
243 if(jumpDest != cpuAddress) { in BuildCache()
350 void Disassembler::GetLine(string &out, string code, string comment, int32_t cpuAddress, int32_t ab… in GetLine() argument
352 …GetCodeLine(out, code, comment, cpuAddress, absoluteAddress, emptyString, emptyString, dataType, f… in GetLine()
355 void Disassembler::GetCodeLine(string &out, string &code, string &comment, int32_t cpuAddress, int3… in GetCodeLine() argument
395 if(cpuAddress >= 0) { in GetCodeLine()
403 …writeChar((_debugger->IsMarkedAsCode(cpuAddress) || absoluteAddress == -1) ? (isIndented ? '5' : '… in GetCodeLine()
406 writeHex(hexTable[(cpuAddress >> 8) & 0xFF]); in GetCodeLine()
407 writeHex(hexTable[cpuAddress & 0xFF]); in GetCodeLine()
H A DDisassembler.h31 …void GetLine(string &out, string code = "", string comment = string(), int32_t cpuAddress = -1, in…
32 …void GetCodeLine(string &out, string &code, string &comment, int32_t cpuAddress, int32_t absoluteA…
H A DCodeRunner.h21 DisassemblyInfo GetDisassemblyInfo(uint16_t cpuAddress);
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/source/os_interface/windows/
H A Dwddm_residency_controller.h48 void updateLastTrimFenceValue() { lastTrimFenceValue = *this->getMonitoredFence().cpuAddress; } in updateLastTrimFenceValue()
53 …void resetMonitoredFenceParams(D3DKMT_HANDLE &handle, uint64_t *cpuAddress, D3DGPU_VIRTUAL_ADDRESS…
H A Dwddm_residency_controller.cpp168 void WddmResidencyController::resetMonitoredFenceParams(D3DKMT_HANDLE &handle, uint64_t *cpuAddress in resetMonitoredFenceParams() argument
172 monitoredFence.cpuAddress = cpuAddress; in resetMonitoredFenceParams()
H A Dwindows_defs.h21 volatile uint64_t *cpuAddress = nullptr; member
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/common/mocks/
H A Dmock_tbx_csr.h40 …void writeMemory(uint64_t gpuAddress, void *cpuAddress, size_t size, uint32_t memoryBank, uint64_t… in writeMemory() argument
41 …TbxCommandStreamReceiverHw<GfxFamily>::writeMemory(gpuAddress, cpuAddress, size, memoryBank, entry… in writeMemory()
H A Dmock_csr_simulated_common_hw.h22 …void writeMemory(uint64_t gpuAddress, void *cpuAddress, size_t size, uint32_t memoryBank, uint64_t… in writeMemory() argument
H A Dmock_aub_csr.h91 …void writeMemory(uint64_t gpuAddress, void *cpuAddress, size_t size, uint32_t memoryBank, uint64_t… in writeMemory()
92 …AUBCommandStreamReceiverHw<GfxFamily>::writeMemory(gpuAddress, cpuAddress, size, memoryBank, entry… in writeMemory()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/os_interface/windows/
H A Dwddm_residency_controller_tests.cpp243 *residencyController->getMonitoredFence().cpuAddress = 1234; in TEST_F()
598 *residencyController->getMonitoredFence().cpuAddress = 10; in TEST_F()
626 *residencyController->getMonitoredFence().cpuAddress = 20; in TEST_F()
641 *residencyController->getMonitoredFence().cpuAddress = 20; in TEST_F()
670 *residencyController->getMonitoredFence().cpuAddress = 1; in TEST_F()
701 *residencyController->getMonitoredFence().cpuAddress = 1; in TEST_F()
730 *residencyController->getMonitoredFence().cpuAddress = 1; in TEST_F()
767 *residencyController->getMonitoredFence().cpuAddress = 1; in TEST_F()
792 *residencyController->getMonitoredFence().cpuAddress = 1; in TEST_F()
846 *residencyController->getMonitoredFence().cpuAddress = 1; in TEST_F()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/source/os_interface/linux/
H A Ddrm_buffer_object.h73 void setLockedAddress(void *cpuAddress) { this->lockedAddress = cpuAddress; } in setLockedAddress() argument
H A Ddrm_memory_manager.cpp1324 auto cpuAddress = lockResource(allocation.get()); in allocateGraphicsMemoryInDevicePool() local
1325 auto alignedCpuAddress = alignDown(cpuAddress, 2 * MemoryConstants::megaByte); in allocateGraphicsMemoryInDevicePool()
1326 auto offset = ptrDiff(cpuAddress, alignedCpuAddress); in allocateGraphicsMemoryInDevicePool()
1328 … allocation->setCpuPtrAndGpuAddress(cpuAddress, reinterpret_cast<uint64_t>(alignedCpuAddress)); in allocateGraphicsMemoryInDevicePool()
1330 allocation->getBO()->setAddress(reinterpret_cast<uint64_t>(cpuAddress)); in allocateGraphicsMemoryInDevicePool()
1333 auto cpuAddress = lockResource(allocation.get()); in allocateGraphicsMemoryInDevicePool() local
1334 allocation->setCpuPtrAndGpuAddress(cpuAddress, gpuAddress); in allocateGraphicsMemoryInDevicePool()
/dports/misc/usd/USD-21.11/pxr/imaging/hgiVulkan/
H A DblitCmds.cpp327 void* cpuAddress = buffer->GetCPUStagingAddress(); in CopyBufferGpuToCpu() local
352 const char* src = ((const char*) cpuAddress) + copyOp.sourceByteOffset; in CopyBufferGpuToCpu()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/unit_test/command_stream/
H A Daub_command_stream_receiver_2_tests.cpp286 void *cpuAddress{}; in HWTEST_F() local
289 aubCsr->getParametersForWriteMemory(allocation, gpuAddress, cpuAddress, size); in HWTEST_F()
291 EXPECT_EQ(nullptr, cpuAddress); in HWTEST_F()
321 void *cpuAddress{}; in HWTEST_F() local
324 aubCsr->getParametersForWriteMemory(allocation, gpuAddress, cpuAddress, size); in HWTEST_F()
326 EXPECT_EQ(nullptr, cpuAddress); in HWTEST_F()

12