2013-03-25 14:57:28 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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 "platform.h"
|
|
|
|
#include "ProfileEntry.h"
|
|
|
|
|
|
|
|
static bool
|
|
|
|
hasFeature(const char** aFeatures, uint32_t aFeatureCount, const char* aFeature) {
|
|
|
|
for(size_t i = 0; i < aFeatureCount; i++) {
|
|
|
|
if (strcmp(aFeatures[i], aFeature) == 0)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern TimeStamp sLastTracerEvent;
|
|
|
|
extern int sFrameNumber;
|
|
|
|
extern int sLastFrameNumber;
|
|
|
|
extern unsigned int sCurrentEventGeneration;
|
|
|
|
extern unsigned int sLastSampledEventGeneration;
|
|
|
|
|
|
|
|
class BreakpadSampler;
|
|
|
|
|
|
|
|
class TableTicker: public Sampler {
|
|
|
|
public:
|
2013-04-10 16:42:56 -07:00
|
|
|
TableTicker(int aInterval, int aEntrySize, PseudoStack *aStack,
|
2013-03-25 14:57:28 -07:00
|
|
|
const char** aFeatures, uint32_t aFeatureCount)
|
2013-04-10 16:43:20 -07:00
|
|
|
: Sampler(aInterval, true)
|
|
|
|
, mPrimaryThreadProfile(aEntrySize, aStack)
|
2013-03-25 14:57:28 -07:00
|
|
|
, mStartTime(TimeStamp::Now())
|
|
|
|
, mSaveRequested(false)
|
|
|
|
{
|
|
|
|
mUseStackWalk = hasFeature(aFeatures, aFeatureCount, "stackwalk");
|
|
|
|
|
|
|
|
//XXX: It's probably worth splitting the jank profiler out from the regular profiler at some point
|
|
|
|
mJankOnly = hasFeature(aFeatures, aFeatureCount, "jank");
|
|
|
|
mProfileJS = hasFeature(aFeatures, aFeatureCount, "js");
|
|
|
|
mAddLeafAddresses = hasFeature(aFeatures, aFeatureCount, "leaf");
|
2013-04-10 16:43:20 -07:00
|
|
|
mPrimaryThreadProfile.addTag(ProfileEntry('m', "Start"));
|
2013-03-25 14:57:28 -07:00
|
|
|
}
|
|
|
|
|
2013-04-10 16:43:20 -07:00
|
|
|
~TableTicker() { if (IsActive()) Stop(); }
|
2013-04-08 19:16:21 -07:00
|
|
|
|
2013-04-10 16:42:56 -07:00
|
|
|
virtual void SampleStack(TickSample* sample) {}
|
|
|
|
|
2013-03-25 14:57:28 -07:00
|
|
|
// Called within a signal. This function must be reentrant
|
|
|
|
virtual void Tick(TickSample* sample);
|
|
|
|
|
|
|
|
// Called within a signal. This function must be reentrant
|
|
|
|
virtual void RequestSave()
|
|
|
|
{
|
|
|
|
mSaveRequested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void HandleSaveRequest();
|
|
|
|
|
|
|
|
ThreadProfile* GetPrimaryThreadProfile()
|
|
|
|
{
|
2013-04-10 16:43:20 -07:00
|
|
|
return &mPrimaryThreadProfile;
|
2013-03-25 14:57:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void ToStreamAsJSON(std::ostream& stream);
|
|
|
|
virtual JSObject *ToJSObject(JSContext *aCx);
|
|
|
|
JSCustomObject *GetMetaJSCustomObject(JSAObjectBuilder& b);
|
|
|
|
|
2013-04-10 16:42:56 -07:00
|
|
|
const bool ProfileJS() { return mProfileJS; }
|
2013-03-25 14:57:28 -07:00
|
|
|
|
|
|
|
virtual BreakpadSampler* AsBreakpadSampler() { return nullptr; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Not implemented on platforms which do not support backtracing
|
|
|
|
void doNativeBacktrace(ThreadProfile &aProfile, TickSample* aSample);
|
|
|
|
|
|
|
|
void BuildJSObject(JSAObjectBuilder& b, JSCustomObject* profile);
|
|
|
|
|
|
|
|
// This represent the application's main thread (SAMPLER_INIT)
|
2013-04-10 16:43:20 -07:00
|
|
|
ThreadProfile mPrimaryThreadProfile;
|
2013-03-25 14:57:28 -07:00
|
|
|
TimeStamp mStartTime;
|
|
|
|
bool mSaveRequested;
|
|
|
|
bool mAddLeafAddresses;
|
|
|
|
bool mUseStackWalk;
|
|
|
|
bool mJankOnly;
|
|
|
|
bool mProfileJS;
|
|
|
|
};
|
|
|
|
|
|
|
|
class BreakpadSampler: public TableTicker {
|
|
|
|
public:
|
2013-04-10 16:42:56 -07:00
|
|
|
BreakpadSampler(int aInterval, int aEntrySize, PseudoStack *aStack,
|
2013-03-25 14:57:28 -07:00
|
|
|
const char** aFeatures, uint32_t aFeatureCount)
|
2013-04-10 16:42:56 -07:00
|
|
|
: TableTicker(aInterval, aEntrySize, aStack, aFeatures, aFeatureCount)
|
2013-03-25 14:57:28 -07:00
|
|
|
{}
|
|
|
|
|
|
|
|
// Called within a signal. This function must be reentrant
|
|
|
|
virtual void Tick(TickSample* sample);
|
|
|
|
|
|
|
|
virtual BreakpadSampler* AsBreakpadSampler() { return this; }
|
|
|
|
};
|
|
|
|
|