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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 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 vm_GeckoProfiler_inl_h
#define vm_GeckoProfiler_inl_h
#include "vm/GeckoProfiler.h"
#include "vm/JSContext.h"
#include "vm/Realm.h"
#include "vm/Runtime.h"
namespace js {
inline void GeckoProfilerThread::updatePC(JSContext* cx, JSScript* script,
jsbytecode* pc) {
if (!cx->runtime()->geckoProfiler().enabled()) {
return;
}
uint32_t sp = profilingStack_->stackPointer;
if (sp - 1 < profilingStack_->stackCapacity()) {
MOZ_ASSERT(sp > 0);
MOZ_ASSERT(profilingStack_->frames[sp - 1].rawScript() == script);
profilingStack_->frames[sp - 1].setPC(pc);
}
}
/*
* This class is used to suppress profiler sampling during
* critical sections where stack state is not valid.
*/
class MOZ_RAII AutoSuppressProfilerSampling {
public:
explicit AutoSuppressProfilerSampling(JSContext* cx);
~AutoSuppressProfilerSampling();
private:
JSContext* cx_;
bool previouslyEnabled_;
};
MOZ_ALWAYS_INLINE
GeckoProfilerEntryMarker::GeckoProfilerEntryMarker(JSContext* cx,
JSScript* script)
: profiler_(&cx->geckoProfiler()) {
if (MOZ_LIKELY(!profiler_->infraInstalled())) {
profiler_ = nullptr;
#ifdef DEBUG
spBefore_ = 0;
#endif
return;
}
#ifdef DEBUG
spBefore_ = profiler_->stackPointer();
#endif
// Push an sp marker frame so the profiler can correctly order JS and native
// stacks.
profiler_->profilingStack_->pushSpMarkerFrame(this);
profiler_->profilingStack_->pushJsFrame(
"js::RunScript",
/* dynamicString = */ nullptr, script, script->code(),
script->realm()->creationOptions().profilerRealmID());
}
MOZ_ALWAYS_INLINE
GeckoProfilerEntryMarker::~GeckoProfilerEntryMarker() {
if (MOZ_LIKELY(profiler_ == nullptr)) {
return;
}
profiler_->profilingStack_->pop(); // the JS frame
profiler_->profilingStack_->pop(); // the SP_MARKER frame
MOZ_ASSERT(spBefore_ == profiler_->stackPointer());
}
MOZ_ALWAYS_INLINE
AutoGeckoProfilerEntry::AutoGeckoProfilerEntry(
JSContext* cx, const char* label, JS::ProfilingCategoryPair categoryPair,
uint32_t flags)
: profiler_(&cx->geckoProfiler()) {
if (MOZ_LIKELY(!profiler_->infraInstalled())) {
profiler_ = nullptr;
#ifdef DEBUG
spBefore_ = 0;
#endif
return;
}
#ifdef DEBUG
spBefore_ = profiler_->stackPointer();
#endif
profiler_->profilingStack_->pushLabelFrame(label,
/* dynamicString = */ nullptr,
/* sp = */ this, categoryPair,
flags);
}
MOZ_ALWAYS_INLINE
AutoGeckoProfilerEntry::~AutoGeckoProfilerEntry() {
if (MOZ_LIKELY(!profiler_)) {
return;
}
profiler_->profilingStack_->pop();
MOZ_ASSERT(spBefore_ == profiler_->stackPointer());
}
} // namespace js
#endif // vm_GeckoProfiler_inl_h
|