/* * Copyright (c) 2017 - 2018, Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include "runtime/helpers/debug_helpers.h" #include #include #include namespace OCLRT { template class RefCounter { public: RefCounter() : val(0) { } CT peek() const { CT curr = val.load(); DEBUG_BREAK_IF(curr < 0); return curr; } void inc() { CT curr = ++val; DEBUG_BREAK_IF(curr < 1); ((void)(curr)); } bool dec() { CT curr = --val; DEBUG_BREAK_IF(curr < 0); return (curr == 0); } CT decAndReturnCurrent() { return --val; } bool peekIsZero() const { return (val == 0); } protected: std::atomic val; }; template class ReferenceTrackedObject; template class unique_ptr_if_unused : public std::unique_ptr { using DeleterFuncType = void (*)(DataType *); public: unique_ptr_if_unused() : std::unique_ptr(nullptr, dontDelete) { } unique_ptr_if_unused(DataType *ptr, bool unused, DeleterFuncType customDeleter = nullptr) : std::unique_ptr(ptr, unused ? chooseDeleter(ptr, customDeleter) : dontDelete) { } bool isUnused() const { return (this->get_deleter() != dontDelete); } private: static DeleterFuncType chooseDeleter(DataType *inPtr, DeleterFuncType customDeleter) { DeleterFuncType deleter = customDeleter; if (customDeleter == nullptr) { deleter = getObjDeleter(inPtr); } if (deleter == nullptr) { deleter = &doDelete; } return deleter; } template static typename std::enable_if, DT>::value, DeleterFuncType>::type getObjDeleter(DataType *inPtr) { if (inPtr != nullptr) { return inPtr->getCustomDeleter(); } return nullptr; } template static typename std::enable_if, DT>::value, DeleterFuncType>::type getObjDeleter(DataType *inPtr) { return nullptr; } static void doDelete(DataType *ptr) { delete ptr; } static void dontDelete(DataType *ptr) { ; } }; // This class is needed for having both internal and external (api) // reference counters // Note : we need both counters because an OCL app can release an OCL object // while this object is still needed/valid (e.g. events with callbacks), // so we need to have a way of tracking internal usage of these object. // At the same time, we can't use one refcount for both internal and external // (retain/release api) usage because an OCL application can query object's // refcount (this refcount should not be contaminated by our internal usage models) // Note : internal refcount accumulates also api refcounts (i.e. incrementing/decrementing // api refcount will increment/decrement internal refcount as well) - so, object // deletion is based on single/atomic decision "if(--internalRefcount == 0)" template class ReferenceTrackedObject { public: virtual ~ReferenceTrackedObject(); int32_t getRefInternalCount() const { return refInternal.peek(); } void incRefInternal() { refInternal.inc(); } unique_ptr_if_unused decRefInternal() { auto customDeleter = tryGetCustomDeleter(); auto current = refInternal.decAndReturnCurrent(); bool unused = (current == 0); UNRECOVERABLE_IF(current < 0); return unique_ptr_if_unused(static_cast(this), unused, customDeleter); } int32_t getRefApiCount() const { return refApi.peek(); } void incRefApi() { refApi.inc(); refInternal.inc(); } unique_ptr_if_unused decRefApi() { refApi.dec(); return decRefInternal(); } using DeleterFuncType = void (*)(DerivedClass *); DeleterFuncType getCustomDeleter() const { return nullptr; } bool peekHasZeroRefcounts() const { return refInternal.peekIsZero(); } private: DeleterFuncType tryGetCustomDeleter() const { const DerivedClass *asDerivedObj = static_cast(this); return asDerivedObj->getCustomDeleter(); } RefCounter<> refInternal; RefCounter<> refApi; }; template inline ReferenceTrackedObject::~ReferenceTrackedObject() { UNRECOVERABLE_IF(refInternal.peek() > 1); } }