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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
|
/* -*- 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 js_ProfilingFrameIterator_h
#define js_ProfilingFrameIterator_h
#include "mozilla/Assertions.h"
#include "mozilla/Attributes.h"
#include "mozilla/Maybe.h"
#include "jstypes.h"
#include "js/GCAnnotations.h"
#include "js/ProfilingCategory.h"
#include "js/TypeDecls.h"
namespace js {
class Activation;
namespace jit {
class JitActivation;
class JSJitProfilingFrameIterator;
class JitcodeGlobalEntry;
// Information about a single frame in a JIT call stack, returned by
// JitcodeGlobalEntry::callStackAtAddr.
struct CallStackFrameInfo {
// The function name or label for this frame.
const char* label;
// The script source ID for this frame. Used to identify which script source
// this frame belongs to.
uint32_t sourceId;
};
} // namespace jit
namespace wasm {
class ProfilingFrameIterator;
} // namespace wasm
} // namespace js
namespace JS {
// This iterator can be used to walk the stack of a thread suspended at an
// arbitrary pc. To provide accurate results, profiling must have been enabled
// (via EnableRuntimeProfilingStack) before executing the callstack being
// unwound.
//
// Note that the caller must not do anything that could cause GC to happen while
// the iterator is alive, since this could invalidate Ion code and cause its
// contents to become out of date.
class MOZ_NON_PARAM JS_PUBLIC_API ProfilingFrameIterator {
public:
enum class Kind : bool { JSJit, Wasm };
private:
JSContext* cx_;
mozilla::Maybe<uint64_t> samplePositionInProfilerBuffer_;
js::Activation* activation_;
// For each JitActivation, this records the lowest (most recent) stack
// address. This will usually be either the exitFP of the activation or the
// frame or stack pointer of currently executing JIT/Wasm code. The Gecko
// profiler uses this to skip native frames between the activation and
// endStackAddress_.
void* endStackAddress_ = nullptr;
Kind kind_;
static const unsigned StorageSpace = 9 * sizeof(void*);
alignas(void*) unsigned char storage_[StorageSpace];
void* storage() { return storage_; }
const void* storage() const { return storage_; }
js::wasm::ProfilingFrameIterator& wasmIter() {
MOZ_ASSERT(!done());
MOZ_ASSERT(isWasm());
return *static_cast<js::wasm::ProfilingFrameIterator*>(storage());
}
const js::wasm::ProfilingFrameIterator& wasmIter() const {
MOZ_ASSERT(!done());
MOZ_ASSERT(isWasm());
return *static_cast<const js::wasm::ProfilingFrameIterator*>(storage());
}
js::jit::JSJitProfilingFrameIterator& jsJitIter() {
MOZ_ASSERT(!done());
MOZ_ASSERT(isJSJit());
return *static_cast<js::jit::JSJitProfilingFrameIterator*>(storage());
}
const js::jit::JSJitProfilingFrameIterator& jsJitIter() const {
MOZ_ASSERT(!done());
MOZ_ASSERT(isJSJit());
return *static_cast<const js::jit::JSJitProfilingFrameIterator*>(storage());
}
void maybeSetEndStackAddress(void* addr) {
// If endStackAddress_ has already been set, don't change it because we
// want this to correspond to the most recent frame.
if (!endStackAddress_) {
endStackAddress_ = addr;
}
}
void settleFrames();
void settle();
public:
struct RegisterState {
RegisterState()
: pc(nullptr),
sp(nullptr),
fp(nullptr),
unused1(nullptr),
unused2(nullptr) {}
void* pc;
void* sp;
void* fp;
union {
// Value of the LR register on ARM platforms.
void* lr;
// The return address during a tail call operation.
// Note that for ARM is still the value of LR register.
void* tempRA;
// Undefined on non-ARM plaforms outside tail calls operations.
void* unused1;
};
union {
// The FP reference during a tail call operation.
void* tempFP;
// Undefined outside tail calls operations.
void* unused2;
};
};
ProfilingFrameIterator(
JSContext* cx, const RegisterState& state,
const mozilla::Maybe<uint64_t>& samplePositionInProfilerBuffer =
mozilla::Nothing());
~ProfilingFrameIterator();
void operator++();
bool done() const { return !activation_; }
// Assuming the stack grows down (we do), the return value:
// - always points into the stack
// - is weakly monotonically increasing (may be equal for successive frames)
// - will compare greater than newer native and psuedo-stack frame addresses
// and less than older native and psuedo-stack frame addresses
// The exception is at the point of stack switching between the main stack
// and a suspendable one (see WebAssembly JS Promise Integration proposal).
void* stackAddress() const;
enum FrameKind {
Frame_BaselineInterpreter,
Frame_Baseline,
Frame_Ion,
Frame_WasmBaseline,
Frame_WasmIon,
Frame_WasmOther,
};
struct Frame {
FrameKind kind;
void* stackAddress;
union {
void* returnAddress_;
jsbytecode* interpreterPC_;
};
void* activation;
void* endStackAddress;
const char* label;
JSScript* interpreterScript;
uint64_t realmID;
uint32_t sourceId;
public:
void* returnAddress() const {
MOZ_ASSERT(kind != Frame_BaselineInterpreter);
return returnAddress_;
}
jsbytecode* interpreterPC() const {
MOZ_ASSERT(kind == Frame_BaselineInterpreter);
return interpreterPC_;
}
ProfilingCategoryPair profilingCategory() const {
switch (kind) {
case FrameKind::Frame_BaselineInterpreter:
return JS::ProfilingCategoryPair::JS_BaselineInterpret;
case FrameKind::Frame_Baseline:
return JS::ProfilingCategoryPair::JS_Baseline;
case FrameKind::Frame_Ion:
return JS::ProfilingCategoryPair::JS_IonMonkey;
case FrameKind::Frame_WasmBaseline:
return JS::ProfilingCategoryPair::JS_WasmBaseline;
case FrameKind::Frame_WasmIon:
return JS::ProfilingCategoryPair::JS_WasmIon;
case FrameKind::Frame_WasmOther:
return JS::ProfilingCategoryPair::JS_WasmOther;
}
MOZ_CRASH();
}
} JS_HAZ_GC_INVALIDATED;
bool isWasm() const;
bool isJSJit() const;
uint32_t extractStack(Frame* frames, uint32_t offset, uint32_t end) const;
mozilla::Maybe<Frame> getPhysicalFrameWithoutLabel() const;
// Return the registers from the native caller frame.
// Nothing{} if this iterator is NOT pointing at a native-to-JIT entry frame,
// or if the information is not accessible/implemented on this platform.
mozilla::Maybe<RegisterState> getCppEntryRegisters() const;
private:
mozilla::Maybe<Frame> getPhysicalFrameAndEntry(
const js::jit::JitcodeGlobalEntry** entry) const;
void iteratorConstruct(const RegisterState& state);
void iteratorConstruct();
void iteratorDestroy();
bool iteratorDone();
} JS_HAZ_GC_INVALIDATED;
JS_PUBLIC_API bool IsProfilingEnabledForContext(JSContext* cx);
/**
* After each sample run, this method should be called with the current buffer
* position at which the buffer contents start. This will update the
* corresponding field on the JSRuntime.
*
* See the field |profilerSampleBufferRangeStart| on JSRuntime for documentation
* about what this value is used for.
*/
JS_PUBLIC_API void SetJSContextProfilerSampleBufferRangeStart(
JSContext* cx, uint64_t rangeStart);
class ProfiledFrameRange;
// A handle to the underlying JitcodeGlobalEntry, so as to avoid repeated
// lookups on JitcodeGlobalTable.
class MOZ_STACK_CLASS ProfiledFrameHandle {
friend class ProfiledFrameRange;
JSRuntime* rt_;
js::jit::JitcodeGlobalEntry& entry_;
void* addr_;
void* canonicalAddr_;
const char* label_;
uint32_t sourceId_;
uint32_t depth_;
ProfiledFrameHandle(JSRuntime* rt, js::jit::JitcodeGlobalEntry& entry,
void* addr, const char* label, uint32_t sourceId,
uint32_t depth);
public:
const char* label() const { return label_; }
uint32_t depth() const { return depth_; }
void* canonicalAddress() const { return canonicalAddr_; }
JS_PUBLIC_API ProfilingFrameIterator::FrameKind frameKind() const;
JS_PUBLIC_API uint64_t realmID() const;
JS_PUBLIC_API uint32_t sourceId() const;
};
class ProfiledFrameRange {
public:
class Iter final {
public:
Iter(const ProfiledFrameRange& range, uint32_t index)
: range_(range), index_(index) {}
JS_PUBLIC_API ProfiledFrameHandle operator*() const;
// Provide the bare minimum of iterator methods that are needed for
// C++ ranged for loops.
Iter& operator++() {
++index_;
return *this;
}
bool operator==(const Iter& rhs) const { return index_ == rhs.index_; }
bool operator!=(const Iter& rhs) const { return !(*this == rhs); }
private:
const ProfiledFrameRange& range_;
uint32_t index_;
};
Iter begin() const { return Iter(*this, 0); }
Iter end() const { return Iter(*this, depth_); }
private:
friend JS_PUBLIC_API ProfiledFrameRange GetProfiledFrames(JSContext* cx,
void* addr);
ProfiledFrameRange(JSRuntime* rt, void* addr,
js::jit::JitcodeGlobalEntry* entry)
: rt_(rt), addr_(addr), entry_(entry), depth_(0) {}
JSRuntime* rt_;
void* addr_;
js::jit::JitcodeGlobalEntry* entry_;
// Maximum inlining depth. This must match InlineScriptTree::MaxDepth.
// We can't use InlineScriptTree::MaxDepth directly here because this is a
// public header and InlineScriptTree.h is private.
static constexpr uint32_t MaxInliningDepth = 8;
js::jit::CallStackFrameInfo frames_[MaxInliningDepth];
uint32_t depth_;
};
// Returns a range that can be iterated over using C++ ranged for loops.
JS_PUBLIC_API ProfiledFrameRange GetProfiledFrames(JSContext* cx, void* addr);
} // namespace JS
#endif /* js_ProfilingFrameIterator_h */
|