blob: c4cc8697b08889a16057c8b7c24aa3a547a1fdca (
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
|
/* 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/. */
// The Gecko Profiler is an always-on profiler that takes fast and low overhead
// samples of the program execution using only userspace functionality for
// portability. The goal of this module is to provide performance data in a
// generic cross-platform way without requiring custom tools or kernel support.
//
// Samples are collected to form a timeline with optional timeline event
// (markers) used for filtering. The samples include both native stacks and
// platform-independent "label stack" frames.
#ifndef ProfileAdditionalInformation_h
#define ProfileAdditionalInformation_h
#ifdef MOZ_GECKO_PROFILER
# include "shared-libraries.h"
#endif
#include "js/Value.h"
#include "nsString.h"
namespace IPC {
class MessageReader;
class MessageWriter;
template <typename T>
struct ParamTraits;
} // namespace IPC
namespace mozilla {
// This structure contains additional information gathered while generating the
// profile json and iterating the buffer.
struct ProfileGenerationAdditionalInformation {
#ifdef MOZ_GECKO_PROFILER
ProfileGenerationAdditionalInformation() = default;
explicit ProfileGenerationAdditionalInformation(
const SharedLibraryInfo&& aSharedLibraries)
: mSharedLibraries(aSharedLibraries) {}
size_t SizeOf() const { return mSharedLibraries.SizeOf(); }
void Append(ProfileGenerationAdditionalInformation&& aOther) {
mSharedLibraries.AddAllSharedLibraries(aOther.mSharedLibraries);
}
void FinishGathering() { mSharedLibraries.DeduplicateEntries(); }
void ToJSValue(JSContext* aCx, JS::MutableHandle<JS::Value> aRetVal) const;
SharedLibraryInfo mSharedLibraries;
#endif // MOZ_GECKO_PROFILER
};
struct ProfileAndAdditionalInformation {
ProfileAndAdditionalInformation() = default;
explicit ProfileAndAdditionalInformation(const nsCString&& aProfile)
: mProfile(aProfile) {}
ProfileAndAdditionalInformation(
const nsCString&& aProfile,
const ProfileGenerationAdditionalInformation&& aAdditionalInformation)
: mProfile(aProfile),
mAdditionalInformation(Some(aAdditionalInformation)) {}
size_t SizeOf() const {
size_t size = mProfile.Length();
#ifdef MOZ_GECKO_PROFILER
if (mAdditionalInformation.isSome()) {
size += mAdditionalInformation->SizeOf();
}
#endif
return size;
}
nsCString mProfile;
Maybe<ProfileGenerationAdditionalInformation> mAdditionalInformation;
};
} // namespace mozilla
namespace IPC {
template <>
struct ParamTraits<mozilla::ProfileGenerationAdditionalInformation> {
typedef mozilla::ProfileGenerationAdditionalInformation paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam);
static bool Read(MessageReader* aReader, paramType* aResult);
};
} // namespace IPC
#endif // ProfileAdditionalInformation_h
|