summaryrefslogtreecommitdiffstats
path: root/dom/canvas/WebGLMemoryTracker.cpp
blob: 8d3999f79e812ff05efb08f92e74129a2560c3ac (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/* -*- Mode: C++; tab-width: 20; 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/. */

#include "WebGLMemoryTracker.h"

#include "WebGLBuffer.h"
#include "WebGLContext.h"
#include "WebGLVertexAttribData.h"
#include "WebGLProgram.h"
#include "WebGLRenderbuffer.h"
#include "WebGLShader.h"
#include "WebGLTexture.h"
#include "WebGLUniformLocation.h"

namespace mozilla {

NS_IMETHODIMP
WebGLMemoryTracker::CollectReports(nsIHandleReportCallback* aHandleReport,
                                   nsISupports* aData, bool)
{
    MOZ_COLLECT_REPORT(
        "webgl-texture-memory", KIND_OTHER, UNITS_BYTES, GetTextureMemoryUsed(),
        "Memory used by WebGL textures. The OpenGL implementation is free to "
        "store these textures in either video memory or main memory. This "
        "measurement is only a lower bound, actual memory usage may be higher "
        "for example if the storage is strided.");

    MOZ_COLLECT_REPORT(
        "webgl-texture-count", KIND_OTHER, UNITS_COUNT, GetTextureCount(),
        "Number of WebGL textures.");

    MOZ_COLLECT_REPORT(
        "webgl-buffer-memory", KIND_OTHER, UNITS_BYTES, GetBufferMemoryUsed(),
        "Memory used by WebGL buffers. The OpenGL implementation is free to "
        "store these buffers in either video memory or main memory. This "
        "measurement is only a lower bound, actual memory usage may be higher "
        "for example if the storage is strided.");

    MOZ_COLLECT_REPORT(
        "explicit/webgl/buffer-cache-memory", KIND_HEAP, UNITS_BYTES,
        GetBufferCacheMemoryUsed(),
        "Memory used by WebGL buffer caches. The WebGL implementation caches "
        "the contents of element array buffers only. This adds up with the "
        "'webgl-buffer-memory' value, but contrary to it, this one represents "
        "bytes on the heap, not managed by OpenGL.");

    MOZ_COLLECT_REPORT(
        "webgl-buffer-count", KIND_OTHER, UNITS_COUNT, GetBufferCount(),
        "Number of WebGL buffers.");

    MOZ_COLLECT_REPORT(
        "webgl-renderbuffer-memory", KIND_OTHER, UNITS_BYTES,
        GetRenderbufferMemoryUsed(),
        "Memory used by WebGL renderbuffers. The OpenGL implementation is free "
        "to store these renderbuffers in either video memory or main memory. "
        "This measurement is only a lower bound, actual memory usage may be "
        "higher, for example if the storage is strided.");

    MOZ_COLLECT_REPORT(
        "webgl-renderbuffer-count", KIND_OTHER, UNITS_COUNT,
        GetRenderbufferCount(),
        "Number of WebGL renderbuffers.");

    MOZ_COLLECT_REPORT(
        "explicit/webgl/shader", KIND_HEAP, UNITS_BYTES, GetShaderSize(),
        "Combined size of WebGL shader ASCII sources and translation logs "
        "cached on the heap.");

    MOZ_COLLECT_REPORT(
        "webgl-shader-count", KIND_OTHER, UNITS_COUNT, GetShaderCount(),
        "Number of WebGL shaders.");

    MOZ_COLLECT_REPORT(
        "webgl-context-count", KIND_OTHER, UNITS_COUNT, GetContextCount(),
        "Number of WebGL contexts.");

    return NS_OK;
}

NS_IMPL_ISUPPORTS(WebGLMemoryTracker, nsIMemoryReporter)

StaticRefPtr<WebGLMemoryTracker> WebGLMemoryTracker::sUniqueInstance;

WebGLMemoryTracker*
WebGLMemoryTracker::UniqueInstance()
{
    if (!sUniqueInstance) {
        sUniqueInstance = new WebGLMemoryTracker;
        sUniqueInstance->InitMemoryReporter();
    }
    return sUniqueInstance;
}

WebGLMemoryTracker::WebGLMemoryTracker()
{
}

void
WebGLMemoryTracker::InitMemoryReporter()
{
    RegisterWeakMemoryReporter(this);
}

WebGLMemoryTracker::~WebGLMemoryTracker()
{
    UnregisterWeakMemoryReporter(this);
}

MOZ_DEFINE_MALLOC_SIZE_OF(WebGLBufferMallocSizeOf)

int64_t
WebGLMemoryTracker::GetBufferCacheMemoryUsed()
{
    const ContextsArrayType& contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLBuffer* buffer = contexts[i]->mBuffers.getFirst();
             buffer;
             buffer = buffer->getNext())
        {
            if (buffer->Content() == WebGLBuffer::Kind::ElementArray) {
                result += buffer->SizeOfIncludingThis(WebGLBufferMallocSizeOf);
            }
        }
    }
    return result;
}

MOZ_DEFINE_MALLOC_SIZE_OF(WebGLShaderMallocSizeOf)

int64_t
WebGLMemoryTracker::GetShaderSize()
{
    const ContextsArrayType& contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLShader* shader = contexts[i]->mShaders.getFirst();
             shader;
             shader = shader->getNext())
        {
            result += shader->SizeOfIncludingThis(WebGLShaderMallocSizeOf);
        }
    }
    return result;
}

/*static*/ int64_t
WebGLMemoryTracker::GetTextureMemoryUsed()
{
    const ContextsArrayType & contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLTexture* texture = contexts[i]->mTextures.getFirst();
             texture;
             texture = texture->getNext())
        {
            result += texture->MemoryUsage();
        }
    }
    return result;
}

/*static*/ int64_t
WebGLMemoryTracker::GetTextureCount()
{
    const ContextsArrayType & contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLTexture* texture = contexts[i]->mTextures.getFirst();
             texture;
             texture = texture->getNext())
        {
            result++;
        }
    }
    return result;
}

/*static*/ int64_t
WebGLMemoryTracker::GetBufferMemoryUsed()
{
    const ContextsArrayType & contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLBuffer* buffer = contexts[i]->mBuffers.getFirst();
             buffer;
             buffer = buffer->getNext())
        {
            result += buffer->ByteLength();
        }
    }
    return result;
}

/*static*/ int64_t
WebGLMemoryTracker::GetBufferCount()
{
    const ContextsArrayType & contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLBuffer* buffer = contexts[i]->mBuffers.getFirst();
             buffer;
             buffer = buffer->getNext())
        {
            result++;
        }
    }
    return result;
}

/*static*/ int64_t
WebGLMemoryTracker::GetRenderbufferMemoryUsed()
{
    const ContextsArrayType & contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLRenderbuffer* rb = contexts[i]->mRenderbuffers.getFirst();
             rb;
             rb = rb->getNext())
        {
            result += rb->MemoryUsage();
        }
    }
    return result;
}

/*static*/ int64_t
WebGLMemoryTracker::GetRenderbufferCount()
{
    const ContextsArrayType & contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLRenderbuffer* rb = contexts[i]->mRenderbuffers.getFirst();
             rb;
             rb = rb->getNext())
        {
            result++;
        }
    }
    return result;
}

/*static*/ int64_t
WebGLMemoryTracker::GetShaderCount()
{
    const ContextsArrayType & contexts = Contexts();
    int64_t result = 0;
    for(size_t i = 0; i < contexts.Length(); ++i) {
        for (const WebGLShader* shader = contexts[i]->mShaders.getFirst();
             shader;
             shader = shader->getNext())
        {
            result++;
        }
    }
    return result;
}

} // namespace mozilla