1f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org//
2f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// Copyright 2012 Francisco Jerez
3f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org//
4f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// Permission is hereby granted, free of charge, to any person obtaining a
5f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// copy of this software and associated documentation files (the "Software"),
6f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// to deal in the Software without restriction, including without limitation
7f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// and/or sell copies of the Software, and to permit persons to whom the
9f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// Software is furnished to do so, subject to the following conditions:
10f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org//
11f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// The above copyright notice and this permission notice shall be included in
12f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// all copies or substantial portions of the Software.
13f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org//
14f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org// SOFTWARE.
21f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org//
22f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
23f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#ifndef __CORE_QUEUE_HPP__
24f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define __CORE_QUEUE_HPP__
25f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
26f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "core/base.hpp"
27f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "core/context.hpp"
28f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "pipe/p_context.h"
29f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
30f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgnamespace clover {
31f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   typedef struct _cl_command_queue command_queue;
32f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   class resource;
33f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   class mapping;
34f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   class hard_event;
35f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
36f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
37f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstruct _cl_command_queue : public clover::ref_counter {
38f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgpublic:
39f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   _cl_command_queue(clover::context &ctx, clover::device &dev,
40f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org                     cl_command_queue_properties props);
41f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   _cl_command_queue(const _cl_command_queue &q) = delete;
42f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   ~_cl_command_queue();
43f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
44f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   void flush();
45f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
46f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   cl_command_queue_properties props() const {
47f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org      return __props;
48f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   }
49f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
50f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   clover::context &ctx;
51f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   clover::device &dev;
52f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
53f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   friend class clover::resource;
54f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   friend class clover::root_resource;
55f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   friend class clover::mapping;
56f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   friend class clover::hard_event;
57f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   friend struct _cl_sampler;
58f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   friend struct _cl_kernel;
59f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
60f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgprivate:
61f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   /// Serialize a hardware event with respect to the previous ones,
62f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   /// and push it to the pending list.
63f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   void sequence(clover::hard_event *ev);
64f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
65f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   cl_command_queue_properties __props;
66f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   pipe_context *pipe;
67f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
68f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   typedef clover::ref_ptr<clover::hard_event> event_ptr;
69f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   std::vector<event_ptr> queued_events;
70f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org};
71f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
72f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#endif
73