/usr/include/thunderbird/GfxTexturesReporter.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* vim: set ts=8 sts=4 et sw=4 tw=80: */
/* 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 GFXTEXTURESREPORTER_H_
#define GFXTEXTURESREPORTER_H_
#include "mozilla/Atomics.h"
#include "nsIMemoryReporter.h"
#include "GLTypes.h"
namespace mozilla {
namespace gl {
class GfxTexturesReporter final : public nsIMemoryReporter
{
~GfxTexturesReporter() {}
public:
NS_DECL_ISUPPORTS
GfxTexturesReporter()
{
#ifdef DEBUG
// There must be only one instance of this class, due to |sAmount|
// being static. Assert this.
static bool hasRun = false;
MOZ_ASSERT(!hasRun);
hasRun = true;
#endif
}
enum MemoryUse {
// when memory being allocated is reported to a memory reporter
MemoryAllocated,
// when memory being freed is reported to a memory reporter
MemoryFreed
};
// When memory is used/freed for tile textures, call this method to update
// the value reported by this memory reporter.
static void UpdateAmount(MemoryUse action, GLenum format, GLenum type,
int32_t tileWidth, int32_t tileHeight);
static void UpdateWasteAmount(int32_t delta) {
sTileWasteAmount += delta;
}
NS_IMETHOD CollectReports(nsIHandleReportCallback* aHandleReport,
nsISupports* aData, bool aAnonymize) override
{
MOZ_COLLECT_REPORT("gfx-tiles-waste", KIND_OTHER, UNITS_BYTES,
sTileWasteAmount,
"Memory lost due to tiles extending past content boundaries");
return MOZ_COLLECT_REPORT(
"gfx-textures", KIND_OTHER, UNITS_BYTES, sAmount,
"Memory used for storing GL textures.");
}
private:
static Atomic<int32_t> sAmount;
// Count the amount of memory lost to tile waste
static Atomic<int32_t> sTileWasteAmount;
};
class GfxTextureWasteTracker {
public:
GfxTextureWasteTracker()
: mBytes(0)
{
MOZ_COUNT_CTOR(GfxTextureWasteTracker);
}
void Update(int32_t aPixelArea, int32_t aBytesPerPixel) {
GfxTexturesReporter::UpdateWasteAmount(-mBytes);
mBytes = aPixelArea * aBytesPerPixel;
GfxTexturesReporter::UpdateWasteAmount(mBytes);
}
~GfxTextureWasteTracker() {
GfxTexturesReporter::UpdateWasteAmount(-mBytes);
MOZ_COUNT_DTOR(GfxTextureWasteTracker);
}
private:
GfxTextureWasteTracker(const GfxTextureWasteTracker& aRef);
int32_t mBytes;
};
}
}
#endif // GFXTEXTURESREPORTER_H_
|