Edit

kc3-lang/angle/src/libANGLE/CLBuffer.h

Branch :

  • Show log

    Commit

  • Author : John Plate
    Date : 2021-06-11 19:12:11
    Hash : 69562546
    Message : CL: Refactor info structs and fix conformance bug - Remove variable name prefix from Info structs to be more consistent with other ANGLE structs. - Fix CL object validation check with magics, since the Mesa solution doesn't work without RTTI. - Add support for some extensions required by OpenCL 1.1 and for some optional extensions. - Fix more conformance bugs. Bug: angleproject:6015 Change-Id: I41b1c45d95059a9994f5dc78bf9b74476cc6f2d4 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2956349 Commit-Queue: John Plate <jplate@google.com> Reviewed-by: Cody Northrop <cnorthrop@google.com> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/libANGLE/CLBuffer.h
  • //
    // Copyright 2021 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    // CLBuffer.h: Defines the cl::Buffer class, which is a collection of elements.
    
    #ifndef LIBANGLE_CLBUFFER_H_
    #define LIBANGLE_CLBUFFER_H_
    
    #include "libANGLE/CLMemory.h"
    
    namespace cl
    {
    
    class Buffer final : public Memory
    {
      public:
        // Front end entry functions, only called from OpenCL entry points
    
        static bool IsValid(const _cl_mem *buffer);
    
        cl_mem createSubBuffer(MemFlags flags,
                               cl_buffer_create_type createType,
                               const void *createInfo,
                               cl_int &errorCode);
    
        bool isRegionValid(size_t offset, size_t size) const;
        bool isRegionValid(const cl_buffer_region &region) const;
    
      public:
        ~Buffer() override;
    
        MemObjectType getType() const final;
    
        bool isSubBuffer() const;
    
      private:
        Buffer(Context &context,
               PropArray &&properties,
               MemFlags flags,
               size_t size,
               void *hostPtr,
               cl_int &errorCode);
    
        Buffer(Buffer &parent, MemFlags flags, size_t offset, size_t size, cl_int &errorCode);
    
        friend class Object;
    };
    
    inline bool Buffer::IsValid(const _cl_mem *buffer)
    {
        return Memory::IsValid(buffer) && buffer->cast<Memory>().getType() == MemObjectType::Buffer;
    }
    
    inline bool Buffer::isRegionValid(size_t offset, size_t size) const
    {
        return offset < mSize && offset + size <= mSize;
    }
    
    inline bool Buffer::isRegionValid(const cl_buffer_region &region) const
    {
        return region.origin < mSize && region.origin + region.size <= mSize;
    }
    
    inline MemObjectType Buffer::getType() const
    {
        return MemObjectType::Buffer;
    }
    
    inline bool Buffer::isSubBuffer() const
    {
        return mParent != nullptr;
    }
    
    }  // namespace cl
    
    #endif  // LIBANGLE_CLBUFFER_H_