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