summaryrefslogtreecommitdiff
path: root/js/src/ds/TraceableFifo.h
blob: 04f67da1515177245a0567745ce6bc7a7e012f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef js_TraceableFifo_h
#define js_TraceableFifo_h

#include "ds/Fifo.h"
#include "js/RootingAPI.h"
#include "js/TracingAPI.h"

namespace js {

// A TraceableFifo is a Fifo with an additional trace method that knows how to
// visit all of the items stored in the Fifo. For Fifos that contain GC things,
// this is usually more convenient than manually iterating and marking the
// contents.
//
// Most types of GC pointers as keys and values can be traced with no extra
// infrastructure. For structs and non-gc-pointer members, ensure that there is
// a specialization of GCPolicy<T> with an appropriate trace method available
// to handle the custom type. Generic helpers can be found in
// js/public/TracingAPI.h. Generic helpers can be found in
// js/public/TracingAPI.h.
//
// Note that although this Fifo's trace will deal correctly with moved items, it
// does not itself know when to barrier or trace items. To function properly it
// must either be used with Rooted, or barriered and traced manually.
template <typename T,
          size_t MinInlineCapacity = 0,
          typename AllocPolicy = TempAllocPolicy>
class TraceableFifo : public js::Fifo<T, MinInlineCapacity, AllocPolicy>
{
    using Base = js::Fifo<T, MinInlineCapacity, AllocPolicy>;

  public:
    explicit TraceableFifo(AllocPolicy alloc = AllocPolicy()) : Base(alloc) {}

    TraceableFifo(TraceableFifo&& rhs) : Base(mozilla::Move(rhs)) { }
    TraceableFifo& operator=(TraceableFifo&& rhs) { return Base::operator=(mozilla::Move(rhs)); }

    TraceableFifo(const TraceableFifo&) = delete;
    TraceableFifo& operator=(const TraceableFifo&) = delete;

    void trace(JSTracer* trc) {
        for (size_t i = 0; i < this->front_.length(); ++i)
            JS::GCPolicy<T>::trace(trc, &this->front_[i], "fifo element");
        for (size_t i = 0; i < this->rear_.length(); ++i)
            JS::GCPolicy<T>::trace(trc, &this->rear_[i], "fifo element");
    }
};

template <typename Outer, typename T, size_t Capacity, typename AllocPolicy>
class TraceableFifoOperations
{
    using TF = TraceableFifo<T, Capacity, AllocPolicy>;
    const TF& fifo() const { return static_cast<const Outer*>(this)->extract(); }

  public:
    size_t length() const { return fifo().length(); }
    bool empty() const { return fifo().empty(); }
    const T& front() const { return fifo().front(); }
};

template <typename Outer, typename T, size_t Capacity, typename AllocPolicy>
class MutableTraceableFifoOperations
  : public TraceableFifoOperations<Outer, T, Capacity, AllocPolicy>
{
    using TF = TraceableFifo<T, Capacity, AllocPolicy>;
    TF& fifo() { return static_cast<Outer*>(this)->extract(); }

  public:
    T& front() { return fifo().front(); }

    template<typename U> bool pushBack(U&& u) { return fifo().pushBack(mozilla::Forward<U>(u)); }
    template<typename... Args> bool emplaceBack(Args&&... args) {
        return fifo().emplaceBack(mozilla::Forward<Args...>(args...));
    }

    bool popFront() { return fifo().popFront(); }
    void clear() { fifo().clear(); }
};

template <typename A, size_t B, typename C>
class RootedBase<TraceableFifo<A,B,C>>
  : public MutableTraceableFifoOperations<JS::Rooted<TraceableFifo<A,B,C>>, A,B,C>
{
    using TF = TraceableFifo<A,B,C>;

    friend class TraceableFifoOperations<JS::Rooted<TF>, A,B,C>;
    const TF& extract() const { return *static_cast<const JS::Rooted<TF>*>(this)->address(); }

    friend class MutableTraceableFifoOperations<JS::Rooted<TF>, A,B,C>;
    TF& extract() { return *static_cast<JS::Rooted<TF>*>(this)->address(); }
};

template <typename A, size_t B, typename C>
class MutableHandleBase<TraceableFifo<A,B,C>>
  : public MutableTraceableFifoOperations<JS::MutableHandle<TraceableFifo<A,B,C>>, A,B,C>
{
    using TF = TraceableFifo<A,B,C>;

    friend class TraceableFifoOperations<JS::MutableHandle<TF>, A,B,C>;
    const TF& extract() const {
        return *static_cast<const JS::MutableHandle<TF>*>(this)->address();
    }

    friend class MutableTraceableFifoOperations<JS::MutableHandle<TF>, A,B,C>;
    TF& extract() { return *static_cast<JS::MutableHandle<TF>*>(this)->address(); }
};

template <typename A, size_t B, typename C>
class HandleBase<TraceableFifo<A,B,C>>
  : public TraceableFifoOperations<JS::Handle<TraceableFifo<A,B,C>>, A,B,C>
{
    using TF = TraceableFifo<A,B,C>;

    friend class TraceableFifoOperations<JS::Handle<TF>, A,B,C>;
    const TF& extract() const {
        return *static_cast<const JS::Handle<TF>*>(this)->address();
    }
};

} // namespace js

#endif // js_TraceableFifo_h