699a12bfa2
SWDEV-79445 - OCL generic changes and code clean-up - Run google autoformat over the PAL backend. It will allow to enable autoformat in VS for the future changes. - No functional changes Affected files ... ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palappprofile.cpp#4 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palappprofile.hpp#4 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palblit.cpp#29 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palblit.hpp#8 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palconstbuf.cpp#12 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palconstbuf.hpp#10 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palcounters.cpp#20 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palcounters.hpp#10 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldebugger.hpp#4 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldebugmanager.cpp#4 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldefs.hpp#52 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldevice.cpp#133 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldevice.hpp#37 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldeviced3d10.cpp#3 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldeviced3d11.cpp#3 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldeviced3d9.cpp#3 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldevicegl.cpp#11 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palgpuopen.cpp#13 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palgpuopen.hpp#9 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.cpp#78 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.hpp#28 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palmemory.cpp#24 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palmemory.hpp#11 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprintf.hpp#6 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.cpp#93 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.hpp#38 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palresource.cpp#73 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palresource.hpp#27 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsettings.cpp#79 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsettings.hpp#22 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paltimestamp.hpp#4 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.cpp#132 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.hpp#60 edit
119 lines
3.3 KiB
C++
119 lines
3.3 KiB
C++
//
|
|
// Copyright (c) 2015 Advanced Micro Devices, Inc. All rights reserved.
|
|
//
|
|
#pragma once
|
|
|
|
#include "device/pal/paldefs.hpp"
|
|
#include "device/pal/palresource.hpp"
|
|
|
|
/*! \addtogroup pal PAL Resource Implementation
|
|
* @{
|
|
*/
|
|
|
|
//! PAL Device Implementation
|
|
namespace pal {
|
|
|
|
class Device;
|
|
class VirtualGPU;
|
|
class Memory;
|
|
|
|
class TimeStamp : public amd::HeapObject {
|
|
public:
|
|
//! Enums for the timestamp information
|
|
//! \note *4 is the limitaiton of SDMA HW
|
|
//! (address has to be aligned by 256 bit)
|
|
enum TimeStampValue { CommandStartTime = 0, CommandEndTime = 4, CommandTotal = 8 };
|
|
|
|
//! The TimeStamp object flags
|
|
union Flags {
|
|
struct {
|
|
uint32_t beginIssued_ : 1;
|
|
uint32_t endIssued_ : 1;
|
|
uint32_t sdma_ : 1;
|
|
};
|
|
uint32_t value_;
|
|
Flags() : value_(0) {}
|
|
};
|
|
|
|
//! Default constructor
|
|
TimeStamp(const VirtualGPU& gpu, //!< Virtual GPU
|
|
Pal::IGpuMemory* iMem, //!< Buffer with the timer values
|
|
uint memOffset, //!< Offset in the buffer for the current TS
|
|
address cpuAddr //!< CPU pointer for the values in memory
|
|
);
|
|
|
|
//! Default destructor
|
|
~TimeStamp();
|
|
|
|
//! Starts the timestamp
|
|
void begin(bool sdma = false);
|
|
|
|
//! Ends the timestamp
|
|
void end(bool sdma = false);
|
|
|
|
//! Returns the timestamp result in nano seconds
|
|
void value(uint64_t* startTime, uint64_t* endTime);
|
|
|
|
//! Clear all TimeStamp states
|
|
void clearStates() {
|
|
flags_.value_ = 0;
|
|
values_[CommandStartTime] = 0;
|
|
values_[CommandEndTime] = 0;
|
|
}
|
|
|
|
//! Timer commands were submitted to HW
|
|
bool isValid() const { return (flags_.endIssued_) ? true : false; }
|
|
|
|
private:
|
|
//! Disable copy constructor
|
|
TimeStamp(const TimeStamp&);
|
|
|
|
//! Disable operator=
|
|
TimeStamp& operator=(const TimeStamp&);
|
|
|
|
//! Returns the GPU device object
|
|
const VirtualGPU& gpu() const { return gpu_; }
|
|
|
|
const VirtualGPU& gpu_; //!< Virtual GPU
|
|
Flags flags_; //!< The time stamp state
|
|
Pal::IGpuMemory* iMem_; //!< Buffer with the timer values
|
|
uint memOffset_; //!< Offset in the buffer for the current timer
|
|
volatile uint64_t* values_; //!< CPU pointer to the timer values
|
|
};
|
|
|
|
class TimeStampCache : public amd::HeapObject {
|
|
public:
|
|
//! Default constructor
|
|
TimeStampCache(VirtualGPU& gpu //!< Virtual GPU object
|
|
)
|
|
: gpu_(gpu), tsBufCpu_(NULL), tsOffset_(0) {}
|
|
|
|
//! Default destructor
|
|
~TimeStampCache();
|
|
|
|
//! Gets a time stamp object. It will find a freed object or allocate a new one
|
|
TimeStamp* allocTimeStamp();
|
|
|
|
//! Frees a time stamp object
|
|
void freeTimeStamp(TimeStamp* ts) { freedTS_.push_back(ts); }
|
|
|
|
private:
|
|
static const uint TimerSlotSize = TimeStamp::CommandTotal * sizeof(uint64_t);
|
|
static const uint TimerBufSize = TimerSlotSize * 4096;
|
|
|
|
//! Disable copy constructor
|
|
TimeStampCache(const TimeStampCache&);
|
|
|
|
//! Disable operator=
|
|
TimeStampCache& operator=(const TimeStampCache&);
|
|
|
|
std::vector<TimeStamp*> freedTS_; //!< Array of freed time stamp objects
|
|
VirtualGPU& gpu_; //!< Virtual GPU
|
|
std::vector<Memory*> tsBuf_; //!< Array of memory objects with the timer value
|
|
address tsBufCpu_; //!< CPU pointer for current TS memory
|
|
uint tsOffset_; //!< Active offset in the current mem object
|
|
};
|
|
|
|
/*@}*/ // namespace pal
|
|
} // namespace pal
|