mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
feature: Implement getElfSize and getElfData methods for XE eudebug
Related-To: NEO-8407 Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
e3f50e8aa9
commit
96abe38c6d
@@ -121,8 +121,8 @@ struct DebugSessionLinuxXe : DebugSessionLinux {
|
||||
|
||||
struct ClientConnectionXe : public ClientConnection {
|
||||
drm_xe_eudebug_event_client client = {};
|
||||
size_t getElfSize(uint64_t elfHandle) override { return 0; };
|
||||
char *getElfData(uint64_t elfHandle) override { return nullptr; };
|
||||
size_t getElfSize(uint64_t elfHandle) override { return metaDataMap[elfHandle].metadata.len; };
|
||||
char *getElfData(uint64_t elfHandle) override { return metaDataMap[elfHandle].data.get(); };
|
||||
|
||||
std::unordered_map<ExecQueueHandle, ExecQueueParams> execQueues;
|
||||
std::unordered_map<uint64_t, uint64_t> lrcHandleToVmHandle;
|
||||
|
||||
Reference in New Issue
Block a user