зеркало из https://github.com/mozilla/gecko-dev.git
612 строки
15 KiB
C++
612 строки
15 KiB
C++
/* -*- 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/. */
|
|
|
|
#include "base/task.h"
|
|
#include "GeckoProfiler.h"
|
|
#include "RenderThread.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "mtransport/runnable_utils.h"
|
|
#include "mozilla/layers/AsyncImagePipelineManager.h"
|
|
#include "mozilla/layers/CompositorThread.h"
|
|
#include "mozilla/layers/CompositorBridgeParent.h"
|
|
#include "mozilla/layers/SharedSurfacesParent.h"
|
|
#include "mozilla/StaticPtr.h"
|
|
#include "mozilla/webrender/RendererOGL.h"
|
|
#include "mozilla/webrender/RenderTextureHost.h"
|
|
#include "mozilla/widget/CompositorWidget.h"
|
|
|
|
#ifdef XP_WIN
|
|
#include "mozilla/widget/WinCompositorWindowThread.h"
|
|
#endif
|
|
|
|
namespace mozilla {
|
|
namespace wr {
|
|
|
|
static StaticRefPtr<RenderThread> sRenderThread;
|
|
|
|
RenderThread::RenderThread(base::Thread* aThread)
|
|
: mThread(aThread)
|
|
, mFrameCountMapLock("RenderThread.mFrameCountMapLock")
|
|
, mRenderTextureMapLock("RenderThread.mRenderTextureMapLock")
|
|
, mHasShutdown(false)
|
|
{
|
|
|
|
}
|
|
|
|
RenderThread::~RenderThread()
|
|
{
|
|
delete mThread;
|
|
}
|
|
|
|
// static
|
|
RenderThread*
|
|
RenderThread::Get()
|
|
{
|
|
return sRenderThread;
|
|
}
|
|
|
|
// static
|
|
void
|
|
RenderThread::Start()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(!sRenderThread);
|
|
|
|
base::Thread* thread = new base::Thread("Renderer");
|
|
|
|
base::Thread::Options options;
|
|
// TODO(nical): The compositor thread has a bunch of specific options, see
|
|
// which ones make sense here.
|
|
if (!thread->StartWithOptions(options)) {
|
|
delete thread;
|
|
return;
|
|
}
|
|
|
|
sRenderThread = new RenderThread(thread);
|
|
#ifdef XP_WIN
|
|
widget::WinCompositorWindowThread::Start();
|
|
#endif
|
|
layers::SharedSurfacesParent::Initialize();
|
|
|
|
if (XRE_IsGPUProcess() &&
|
|
gfx::gfxVars::UseWebRenderProgramBinary()) {
|
|
MOZ_ASSERT(gfx::gfxVars::UseWebRender());
|
|
// Initialize program cache if necessary
|
|
RefPtr<Runnable> runnable = WrapRunnable(
|
|
RefPtr<RenderThread>(sRenderThread.get()),
|
|
&RenderThread::ProgramCacheTask);
|
|
sRenderThread->Loop()->PostTask(runnable.forget());
|
|
}
|
|
}
|
|
|
|
// static
|
|
void
|
|
RenderThread::ShutDown()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(sRenderThread);
|
|
|
|
{
|
|
MutexAutoLock lock(sRenderThread->mRenderTextureMapLock);
|
|
sRenderThread->mHasShutdown = true;
|
|
}
|
|
|
|
layers::SynchronousTask task("RenderThread");
|
|
RefPtr<Runnable> runnable = WrapRunnable(
|
|
RefPtr<RenderThread>(sRenderThread.get()),
|
|
&RenderThread::ShutDownTask,
|
|
&task);
|
|
sRenderThread->Loop()->PostTask(runnable.forget());
|
|
task.Wait();
|
|
|
|
sRenderThread = nullptr;
|
|
#ifdef XP_WIN
|
|
widget::WinCompositorWindowThread::ShutDown();
|
|
#endif
|
|
}
|
|
|
|
extern void ClearAllBlobImageResources();
|
|
|
|
void
|
|
RenderThread::ShutDownTask(layers::SynchronousTask* aTask)
|
|
{
|
|
layers::AutoCompleteTask complete(aTask);
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
// Releasing on the render thread will allow us to avoid dispatching to remove
|
|
// remaining textures from the texture map.
|
|
layers::SharedSurfacesParent::Shutdown();
|
|
|
|
ClearAllBlobImageResources();
|
|
}
|
|
|
|
// static
|
|
MessageLoop*
|
|
RenderThread::Loop()
|
|
{
|
|
return sRenderThread ? sRenderThread->mThread->message_loop() : nullptr;
|
|
}
|
|
|
|
// static
|
|
bool
|
|
RenderThread::IsInRenderThread()
|
|
{
|
|
return sRenderThread && sRenderThread->mThread->thread_id() == PlatformThread::CurrentId();
|
|
}
|
|
|
|
void
|
|
RenderThread::AddRenderer(wr::WindowId aWindowId, UniquePtr<RendererOGL> aRenderer)
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
if (mHasShutdown) {
|
|
return;
|
|
}
|
|
|
|
mRenderers[aWindowId] = Move(aRenderer);
|
|
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
mWindowInfos.Put(AsUint64(aWindowId), WindowInfo());
|
|
}
|
|
|
|
void
|
|
RenderThread::RemoveRenderer(wr::WindowId aWindowId)
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
if (mHasShutdown) {
|
|
return;
|
|
}
|
|
|
|
mRenderers.erase(aWindowId);
|
|
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
mWindowInfos.Remove(AsUint64(aWindowId));
|
|
}
|
|
|
|
RendererOGL*
|
|
RenderThread::GetRenderer(wr::WindowId aWindowId)
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
auto it = mRenderers.find(aWindowId);
|
|
MOZ_ASSERT(it != mRenderers.end());
|
|
|
|
if (it == mRenderers.end()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return it->second.get();
|
|
}
|
|
|
|
void
|
|
RenderThread::NewFrameReady(wr::WindowId aWindowId)
|
|
{
|
|
if (mHasShutdown) {
|
|
return;
|
|
}
|
|
|
|
if (!IsInRenderThread()) {
|
|
Loop()->PostTask(
|
|
NewRunnableMethod<wr::WindowId>("wr::RenderThread::NewFrameReady",
|
|
this,
|
|
&RenderThread::NewFrameReady,
|
|
aWindowId));
|
|
return;
|
|
}
|
|
|
|
if (IsDestroyed(aWindowId)) {
|
|
return;
|
|
}
|
|
|
|
UpdateAndRender(aWindowId);
|
|
FrameRenderingComplete(aWindowId);
|
|
}
|
|
|
|
void
|
|
RenderThread::WakeUp(wr::WindowId aWindowId)
|
|
{
|
|
if (mHasShutdown) {
|
|
return;
|
|
}
|
|
|
|
if (!IsInRenderThread()) {
|
|
Loop()->PostTask(
|
|
NewRunnableMethod<wr::WindowId>("wr::RenderThread::WakeUp",
|
|
this,
|
|
&RenderThread::WakeUp,
|
|
aWindowId));
|
|
return;
|
|
}
|
|
|
|
if (IsDestroyed(aWindowId)) {
|
|
return;
|
|
}
|
|
|
|
auto it = mRenderers.find(aWindowId);
|
|
MOZ_ASSERT(it != mRenderers.end());
|
|
if (it != mRenderers.end()) {
|
|
it->second->Update();
|
|
}
|
|
}
|
|
|
|
void
|
|
RenderThread::RunEvent(wr::WindowId aWindowId, UniquePtr<RendererEvent> aEvent)
|
|
{
|
|
if (!IsInRenderThread()) {
|
|
Loop()->PostTask(
|
|
NewRunnableMethod<wr::WindowId, UniquePtr<RendererEvent>&&>(
|
|
"wr::RenderThread::RunEvent",
|
|
this,
|
|
&RenderThread::RunEvent,
|
|
aWindowId,
|
|
Move(aEvent)));
|
|
return;
|
|
}
|
|
|
|
aEvent->Run(*this, aWindowId);
|
|
aEvent = nullptr;
|
|
}
|
|
|
|
static void
|
|
NotifyDidRender(layers::CompositorBridgeParent* aBridge,
|
|
wr::WrPipelineInfo aInfo,
|
|
TimeStamp aStart,
|
|
TimeStamp aEnd)
|
|
{
|
|
for (uintptr_t i = 0; i < aInfo.epochs.length; i++) {
|
|
aBridge->NotifyPipelineRendered(
|
|
aInfo.epochs.data[i].pipeline_id,
|
|
aInfo.epochs.data[i].epoch,
|
|
aStart,
|
|
aEnd);
|
|
}
|
|
|
|
wr_pipeline_info_delete(aInfo);
|
|
}
|
|
|
|
void
|
|
RenderThread::UpdateAndRender(wr::WindowId aWindowId, bool aReadback)
|
|
{
|
|
AUTO_PROFILER_TRACING("Paint", "Composite");
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
auto it = mRenderers.find(aWindowId);
|
|
MOZ_ASSERT(it != mRenderers.end());
|
|
if (it == mRenderers.end()) {
|
|
return;
|
|
}
|
|
|
|
auto& renderer = it->second;
|
|
TimeStamp start = TimeStamp::Now();
|
|
|
|
bool ret = renderer->UpdateAndRender(aReadback);
|
|
if (!ret) {
|
|
// Render did not happen, do not call NotifyDidRender.
|
|
return;
|
|
}
|
|
|
|
TimeStamp end = TimeStamp::Now();
|
|
|
|
auto info = renderer->FlushPipelineInfo();
|
|
RefPtr<layers::AsyncImagePipelineManager> pipelineMgr =
|
|
renderer->GetCompositorBridge()->GetAsyncImagePipelineManager();
|
|
// pipelineMgr should always be non-null here because it is only nulled out
|
|
// after the WebRenderAPI instance for the CompositorBridgeParent is
|
|
// destroyed, and that destruction blocks until the renderer thread has
|
|
// removed the relevant renderer. And after that happens we should never reach
|
|
// this code at all; it would bail out at the mRenderers.find check above.
|
|
MOZ_ASSERT(pipelineMgr);
|
|
pipelineMgr->NotifyPipelinesUpdated(info);
|
|
|
|
layers::CompositorThreadHolder::Loop()->PostTask(NewRunnableFunction(
|
|
"NotifyDidRenderRunnable",
|
|
&NotifyDidRender,
|
|
renderer->GetCompositorBridge(),
|
|
info,
|
|
start, end
|
|
));
|
|
}
|
|
|
|
void
|
|
RenderThread::Pause(wr::WindowId aWindowId)
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
auto it = mRenderers.find(aWindowId);
|
|
MOZ_ASSERT(it != mRenderers.end());
|
|
if (it == mRenderers.end()) {
|
|
return;
|
|
}
|
|
auto& renderer = it->second;
|
|
renderer->Pause();
|
|
}
|
|
|
|
bool
|
|
RenderThread::Resume(wr::WindowId aWindowId)
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
auto it = mRenderers.find(aWindowId);
|
|
MOZ_ASSERT(it != mRenderers.end());
|
|
if (it == mRenderers.end()) {
|
|
return false;
|
|
}
|
|
auto& renderer = it->second;
|
|
return renderer->Resume();
|
|
}
|
|
|
|
bool
|
|
RenderThread::TooManyPendingFrames(wr::WindowId aWindowId)
|
|
{
|
|
const int64_t maxFrameCount = 1;
|
|
|
|
// Too many pending frames if pending frames exit more than maxFrameCount
|
|
// or if RenderBackend is still processing a frame.
|
|
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
WindowInfo info;
|
|
if (!mWindowInfos.Get(AsUint64(aWindowId), &info)) {
|
|
MOZ_ASSERT(false);
|
|
return true;
|
|
}
|
|
|
|
if (info.mPendingCount > maxFrameCount) {
|
|
return true;
|
|
}
|
|
MOZ_ASSERT(info.mPendingCount >= info.mRenderingCount);
|
|
return info.mPendingCount > info.mRenderingCount;
|
|
}
|
|
|
|
bool
|
|
RenderThread::IsDestroyed(wr::WindowId aWindowId)
|
|
{
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
WindowInfo info;
|
|
if (!mWindowInfos.Get(AsUint64(aWindowId), &info)) {
|
|
return true;
|
|
}
|
|
|
|
return info.mIsDestroyed;
|
|
}
|
|
|
|
void
|
|
RenderThread::SetDestroyed(wr::WindowId aWindowId)
|
|
{
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
WindowInfo info;
|
|
if (!mWindowInfos.Get(AsUint64(aWindowId), &info)) {
|
|
MOZ_ASSERT(false);
|
|
return;
|
|
}
|
|
info.mIsDestroyed = true;
|
|
mWindowInfos.Put(AsUint64(aWindowId), info);
|
|
}
|
|
|
|
void
|
|
RenderThread::IncPendingFrameCount(wr::WindowId aWindowId)
|
|
{
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
// Get the old count.
|
|
WindowInfo info;
|
|
if (!mWindowInfos.Get(AsUint64(aWindowId), &info)) {
|
|
MOZ_ASSERT(false);
|
|
return;
|
|
}
|
|
// Update pending frame count.
|
|
info.mPendingCount = info.mPendingCount + 1;
|
|
mWindowInfos.Put(AsUint64(aWindowId), info);
|
|
}
|
|
|
|
void
|
|
RenderThread::DecPendingFrameCount(wr::WindowId aWindowId)
|
|
{
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
// Get the old count.
|
|
WindowInfo info;
|
|
if (!mWindowInfos.Get(AsUint64(aWindowId), &info)) {
|
|
MOZ_ASSERT(false);
|
|
return;
|
|
}
|
|
MOZ_ASSERT(info.mPendingCount > 0);
|
|
if (info.mPendingCount <= 0) {
|
|
return;
|
|
}
|
|
// Update pending frame count.
|
|
info.mPendingCount = info.mPendingCount - 1;
|
|
mWindowInfos.Put(AsUint64(aWindowId), info);
|
|
}
|
|
|
|
void
|
|
RenderThread::IncRenderingFrameCount(wr::WindowId aWindowId)
|
|
{
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
// Get the old count.
|
|
WindowInfo info;
|
|
if (!mWindowInfos.Get(AsUint64(aWindowId), &info)) {
|
|
MOZ_ASSERT(false);
|
|
return;
|
|
}
|
|
// Update rendering frame count.
|
|
info.mRenderingCount = info.mRenderingCount + 1;
|
|
mWindowInfos.Put(AsUint64(aWindowId), info);
|
|
}
|
|
|
|
void
|
|
RenderThread::FrameRenderingComplete(wr::WindowId aWindowId)
|
|
{
|
|
MutexAutoLock lock(mFrameCountMapLock);
|
|
// Get the old count.
|
|
WindowInfo info;
|
|
if (!mWindowInfos.Get(AsUint64(aWindowId), &info)) {
|
|
MOZ_ASSERT(false);
|
|
return;
|
|
}
|
|
MOZ_ASSERT(info.mPendingCount > 0);
|
|
MOZ_ASSERT(info.mRenderingCount > 0);
|
|
if (info.mPendingCount <= 0) {
|
|
return;
|
|
}
|
|
// Update frame counts.
|
|
info.mPendingCount = info.mPendingCount - 1;
|
|
info.mRenderingCount = info.mRenderingCount - 1;
|
|
mWindowInfos.Put(AsUint64(aWindowId), info);
|
|
}
|
|
|
|
void
|
|
RenderThread::RegisterExternalImage(uint64_t aExternalImageId, already_AddRefed<RenderTextureHost> aTexture)
|
|
{
|
|
MutexAutoLock lock(mRenderTextureMapLock);
|
|
|
|
if (mHasShutdown) {
|
|
return;
|
|
}
|
|
MOZ_ASSERT(!mRenderTextures.GetWeak(aExternalImageId));
|
|
mRenderTextures.Put(aExternalImageId, Move(aTexture));
|
|
}
|
|
|
|
void
|
|
RenderThread::UnregisterExternalImage(uint64_t aExternalImageId)
|
|
{
|
|
MutexAutoLock lock(mRenderTextureMapLock);
|
|
if (mHasShutdown) {
|
|
return;
|
|
}
|
|
MOZ_ASSERT(mRenderTextures.GetWeak(aExternalImageId));
|
|
if (!IsInRenderThread()) {
|
|
// The RenderTextureHost should be released in render thread. So, post the
|
|
// deletion task here.
|
|
// The shmem and raw buffer are owned by compositor ipc channel. It's
|
|
// possible that RenderTextureHost is still exist after the shmem/raw buffer
|
|
// deletion. Then the buffer in RenderTextureHost becomes invalid. It's fine
|
|
// for this situation. Gecko will only release the buffer if WR doesn't need
|
|
// it. So, no one will access the invalid buffer in RenderTextureHost.
|
|
RefPtr<RenderTextureHost> texture;
|
|
mRenderTextures.Remove(aExternalImageId, getter_AddRefs(texture));
|
|
Loop()->PostTask(NewRunnableMethod<RefPtr<RenderTextureHost>>(
|
|
"RenderThread::DeferredRenderTextureHostDestroy",
|
|
this, &RenderThread::DeferredRenderTextureHostDestroy, Move(texture)
|
|
));
|
|
} else {
|
|
mRenderTextures.Remove(aExternalImageId);
|
|
}
|
|
}
|
|
|
|
void
|
|
RenderThread::UnregisterExternalImageDuringShutdown(uint64_t aExternalImageId)
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
MutexAutoLock lock(mRenderTextureMapLock);
|
|
MOZ_ASSERT(mHasShutdown);
|
|
MOZ_ASSERT(mRenderTextures.GetWeak(aExternalImageId));
|
|
mRenderTextures.Remove(aExternalImageId);
|
|
}
|
|
|
|
void
|
|
RenderThread::DeferredRenderTextureHostDestroy(RefPtr<RenderTextureHost>)
|
|
{
|
|
// Do nothing. Just decrease the ref-count of RenderTextureHost.
|
|
}
|
|
|
|
RenderTextureHost*
|
|
RenderThread::GetRenderTexture(wr::WrExternalImageId aExternalImageId)
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
MutexAutoLock lock(mRenderTextureMapLock);
|
|
MOZ_ASSERT(mRenderTextures.GetWeak(aExternalImageId.mHandle));
|
|
return mRenderTextures.GetWeak(aExternalImageId.mHandle);
|
|
}
|
|
|
|
void
|
|
RenderThread::ProgramCacheTask()
|
|
{
|
|
ProgramCache();
|
|
}
|
|
|
|
WebRenderProgramCache*
|
|
RenderThread::ProgramCache()
|
|
{
|
|
MOZ_ASSERT(IsInRenderThread());
|
|
|
|
if (!mProgramCache) {
|
|
mProgramCache = MakeUnique<WebRenderProgramCache>(ThreadPool().Raw());
|
|
}
|
|
return mProgramCache.get();
|
|
}
|
|
|
|
WebRenderThreadPool::WebRenderThreadPool()
|
|
{
|
|
mThreadPool = wr_thread_pool_new();
|
|
}
|
|
|
|
WebRenderThreadPool::~WebRenderThreadPool()
|
|
{
|
|
wr_thread_pool_delete(mThreadPool);
|
|
}
|
|
|
|
WebRenderProgramCache::WebRenderProgramCache(wr::WrThreadPool* aThreadPool)
|
|
{
|
|
MOZ_ASSERT(aThreadPool);
|
|
|
|
nsAutoString path;
|
|
if (gfxVars::UseWebRenderProgramBinaryDisk()) {
|
|
path.Append(gfx::gfxVars::ProfDirectory());
|
|
}
|
|
mProgramCache = wr_program_cache_new(&path, aThreadPool);
|
|
wr_try_load_shader_from_disk(mProgramCache);
|
|
}
|
|
|
|
WebRenderProgramCache::~WebRenderProgramCache()
|
|
{
|
|
wr_program_cache_delete(mProgramCache);
|
|
}
|
|
|
|
} // namespace wr
|
|
} // namespace mozilla
|
|
|
|
extern "C" {
|
|
|
|
static void NewFrameReady(mozilla::wr::WrWindowId aWindowId)
|
|
{
|
|
mozilla::wr::RenderThread::Get()->IncRenderingFrameCount(aWindowId);
|
|
mozilla::wr::RenderThread::Get()->NewFrameReady(aWindowId);
|
|
}
|
|
|
|
void wr_notifier_wake_up(mozilla::wr::WrWindowId aWindowId)
|
|
{
|
|
mozilla::wr::RenderThread::Get()->WakeUp(aWindowId);
|
|
}
|
|
|
|
void wr_notifier_new_frame_ready(mozilla::wr::WrWindowId aWindowId)
|
|
{
|
|
NewFrameReady(aWindowId);
|
|
}
|
|
|
|
void wr_notifier_nop_frame_done(mozilla::wr::WrWindowId aWindowId)
|
|
{
|
|
mozilla::wr::RenderThread::Get()->DecPendingFrameCount(aWindowId);
|
|
}
|
|
|
|
void wr_notifier_external_event(mozilla::wr::WrWindowId aWindowId, size_t aRawEvent)
|
|
{
|
|
mozilla::UniquePtr<mozilla::wr::RendererEvent> evt(
|
|
reinterpret_cast<mozilla::wr::RendererEvent*>(aRawEvent));
|
|
mozilla::wr::RenderThread::Get()->RunEvent(mozilla::wr::WindowId(aWindowId),
|
|
mozilla::Move(evt));
|
|
}
|
|
|
|
void wr_schedule_render(mozilla::wr::WrWindowId aWindowId)
|
|
{
|
|
RefPtr<mozilla::layers::CompositorBridgeParent> cbp =
|
|
mozilla::layers::CompositorBridgeParent::GetCompositorBridgeParentFromWindowId(aWindowId);
|
|
if (cbp) {
|
|
cbp->ScheduleRenderOnCompositorThread();
|
|
}
|
|
}
|
|
|
|
} // extern C
|