Bug 961769 - Implement event loop responsiveness instrumentation for Gonk. r=gal

This commit is contained in:
Vivien Nicolas 2014-02-05 19:53:53 +01:00
parent c2522f16f9
commit cc0b681107
3 changed files with 99 additions and 1 deletions

View File

@ -4447,6 +4447,7 @@ cairo-gonk)
MOZ_WEBGL=1 MOZ_WEBGL=1
MOZ_PDF_PRINTING=1 MOZ_PDF_PRINTING=1
MOZ_TOUCH=1 MOZ_TOUCH=1
MOZ_INSTRUMENT_EVENT_LOOP=1
;; ;;
esac esac

View File

@ -0,0 +1,96 @@
/* 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 "mozilla/WidgetTraceEvent.h"
#include "mozilla/StaticPtr.h"
#include "nsThreadUtils.h"
#include <mozilla/CondVar.h>
#include <mozilla/Mutex.h>
using mozilla::CondVar;
using mozilla::Mutex;
using mozilla::MutexAutoLock;
namespace mozilla {
class TracerRunnable : public nsRunnable {
public:
TracerRunnable() {
mTracerLock = new Mutex("TracerRunnable");
mTracerCondVar = new CondVar(*mTracerLock, "TracerRunnable");
mMainThread = do_GetMainThread();
}
~TracerRunnable() {
delete mTracerCondVar;
delete mTracerLock;
mTracerLock = nullptr;
mTracerCondVar = nullptr;
}
virtual nsresult Run() {
MutexAutoLock lock(*mTracerLock);
mHasRun = true;
mTracerCondVar->Notify();
return NS_OK;
}
bool Fire() {
if (!mTracerLock || !mTracerCondVar) {
return false;
}
MutexAutoLock lock(*mTracerLock);
mHasRun = false;
mMainThread->Dispatch(this, NS_DISPATCH_NORMAL);
while (!mHasRun) {
mTracerCondVar->Wait();
}
return true;
}
void Signal() {
MutexAutoLock lock(*mTracerLock);
mHasRun = true;
mTracerCondVar->Notify();
}
private:
Mutex* mTracerLock;
CondVar* mTracerCondVar;
bool mHasRun;
nsCOMPtr<nsIThread> mMainThread;
};
StaticRefPtr<TracerRunnable> sTracerRunnable;
bool InitWidgetTracing()
{
if (!sTracerRunnable) {
sTracerRunnable = new TracerRunnable();
}
return true;
}
void CleanUpWidgetTracing()
{
sTracerRunnable = nullptr;
}
bool FireAndWaitForTracerEvent()
{
if (sTracerRunnable) {
return sTracerRunnable->Fire();
}
return false;
}
void SignalTracerThread()
{
if (sTracerRunnable) {
return sTracerRunnable->Signal();
}
}
} // namespace mozilla

View File

@ -57,7 +57,8 @@ SOURCES += [
'nsWindow.cpp', 'nsWindow.cpp',
'OrientationObserver.cpp', 'OrientationObserver.cpp',
'ParentProcessController.cpp', 'ParentProcessController.cpp',
'ProcessOrientation.cpp' 'ProcessOrientation.cpp',
'WidgetTraceEvent.cpp'
] ]
LIBRARY_NAME = 'widget_gonk' LIBRARY_NAME = 'widget_gonk'