blob: 17e5e4d73345201e178a544bf979dfbbddbe8c73 [file] [log] [blame]
/*
* Copyright (C) 2015, 2016 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "InspectorHeapAgent.h"
#include "HeapProfiler.h"
#include "InjectedScript.h"
#include "InjectedScriptManager.h"
#include "InspectorEnvironment.h"
#include "JSCInlines.h"
#include "VM.h"
#include <wtf/RunLoop.h>
#include <wtf/Stopwatch.h>
using namespace JSC;
namespace Inspector {
struct GarbageCollectionData {
Inspector::Protocol::Heap::GarbageCollection::Type type;
double startTime;
double endTime;
};
class SendGarbageCollectionEventsTask {
public:
SendGarbageCollectionEventsTask(HeapFrontendDispatcher&);
void addGarbageCollection(GarbageCollectionData&);
void reset();
private:
void timerFired();
HeapFrontendDispatcher& m_frontendDispatcher;
Vector<GarbageCollectionData> m_collections;
RunLoop::Timer<SendGarbageCollectionEventsTask> m_timer;
Lock m_mutex;
};
SendGarbageCollectionEventsTask::SendGarbageCollectionEventsTask(HeapFrontendDispatcher& frontendDispatcher)
: m_frontendDispatcher(frontendDispatcher)
, m_timer(RunLoop::current(), this, &SendGarbageCollectionEventsTask::timerFired)
{
}
void SendGarbageCollectionEventsTask::addGarbageCollection(GarbageCollectionData& collection)
{
{
std::lock_guard<Lock> lock(m_mutex);
m_collections.append(collection);
}
if (!m_timer.isActive())
m_timer.startOneShot(0);
}
void SendGarbageCollectionEventsTask::reset()
{
{
std::lock_guard<Lock> lock(m_mutex);
m_collections.clear();
}
m_timer.stop();
}
void SendGarbageCollectionEventsTask::timerFired()
{
Vector<GarbageCollectionData> collectionsToSend;
{
std::lock_guard<Lock> lock(m_mutex);
m_collections.swap(collectionsToSend);
}
// The timer is stopped on agent destruction, so this method will never be called after agent has been destroyed.
for (auto& collection : collectionsToSend) {
auto protocolObject = Inspector::Protocol::Heap::GarbageCollection::create()
.setType(collection.type)
.setStartTime(collection.startTime)
.setEndTime(collection.endTime)
.release();
m_frontendDispatcher.garbageCollected(WTFMove(protocolObject));
}
}
InspectorHeapAgent::InspectorHeapAgent(AgentContext& context)
: InspectorAgentBase(ASCIILiteral("Heap"))
, m_injectedScriptManager(context.injectedScriptManager)
, m_frontendDispatcher(std::make_unique<HeapFrontendDispatcher>(context.frontendRouter))
, m_backendDispatcher(HeapBackendDispatcher::create(context.backendDispatcher, this))
, m_environment(context.environment)
, m_sendGarbageCollectionEventsTask(std::make_unique<SendGarbageCollectionEventsTask>(*m_frontendDispatcher))
{
}
InspectorHeapAgent::~InspectorHeapAgent()
{
m_sendGarbageCollectionEventsTask->reset();
}
void InspectorHeapAgent::didCreateFrontendAndBackend(FrontendRouter*, BackendDispatcher*)
{
}
void InspectorHeapAgent::willDestroyFrontendAndBackend(DisconnectReason)
{
// Stop tracking without taking a snapshot.
m_tracking = false;
ErrorString ignored;
disable(ignored);
}
void InspectorHeapAgent::enable(ErrorString&)
{
if (m_enabled)
return;
m_enabled = true;
m_environment.vm().heap.addObserver(this);
}
void InspectorHeapAgent::disable(ErrorString&)
{
if (!m_enabled)
return;
m_enabled = false;
m_environment.vm().heap.removeObserver(this);
m_sendGarbageCollectionEventsTask->reset();
clearHeapSnapshots();
}
void InspectorHeapAgent::gc(ErrorString&)
{
VM& vm = m_environment.vm();
JSLockHolder lock(vm);
sanitizeStackForVM(&vm);
vm.heap.collectAllGarbage();
}
void InspectorHeapAgent::snapshot(ErrorString&, double* timestamp, String* snapshotData)
{
VM& vm = m_environment.vm();
JSLockHolder lock(vm);
HeapSnapshotBuilder snapshotBuilder(vm.ensureHeapProfiler());
snapshotBuilder.buildSnapshot();
*timestamp = m_environment.executionStopwatch()->elapsedTime();
*snapshotData = snapshotBuilder.json([&] (const HeapSnapshotNode& node) {
if (Structure* structure = node.cell->structure(vm)) {
if (JSGlobalObject* globalObject = structure->globalObject()) {
if (!m_environment.canAccessInspectedScriptState(globalObject->globalExec()))
return false;
}
}
return true;
});
}
void InspectorHeapAgent::startTracking(ErrorString& errorString)
{
if (m_tracking)
return;
m_tracking = true;
double timestamp;
String snapshotData;
snapshot(errorString, &timestamp, &snapshotData);
m_frontendDispatcher->trackingStart(timestamp, snapshotData);
}
void InspectorHeapAgent::stopTracking(ErrorString& errorString)
{
if (!m_tracking)
return;
m_tracking = false;
double timestamp;
String snapshotData;
snapshot(errorString, &timestamp, &snapshotData);
m_frontendDispatcher->trackingComplete(timestamp, snapshotData);
}
Optional<HeapSnapshotNode> InspectorHeapAgent::nodeForHeapObjectIdentifier(ErrorString& errorString, unsigned heapObjectIdentifier)
{
HeapProfiler* heapProfiler = m_environment.vm().heapProfiler();
if (!heapProfiler) {
errorString = ASCIILiteral("No heap snapshot");
return Nullopt;
}
HeapSnapshot* snapshot = heapProfiler->mostRecentSnapshot();
if (!snapshot) {
errorString = ASCIILiteral("No heap snapshot");
return Nullopt;
}
const Optional<HeapSnapshotNode> optionalNode = snapshot->nodeForObjectIdentifier(heapObjectIdentifier);
if (!optionalNode) {
errorString = ASCIILiteral("No object for identifier, it may have been collected");
return Nullopt;
}
return optionalNode;
}
void InspectorHeapAgent::getPreview(ErrorString& errorString, int heapObjectId, Inspector::Protocol::OptOutput<String>* resultString, RefPtr<Inspector::Protocol::Debugger::FunctionDetails>& functionDetails, RefPtr<Inspector::Protocol::Runtime::ObjectPreview>& objectPreview)
{
// Prevent the cell from getting collected as we look it up.
VM& vm = m_environment.vm();
JSLockHolder lock(vm);
DeferGC deferGC(vm.heap);
unsigned heapObjectIdentifier = static_cast<unsigned>(heapObjectId);
const Optional<HeapSnapshotNode> optionalNode = nodeForHeapObjectIdentifier(errorString, heapObjectIdentifier);
if (!optionalNode)
return;
// String preview.
JSCell* cell = optionalNode->cell;
if (cell->isString()) {
*resultString = cell->getString(nullptr);
return;
}
// FIXME: Provide preview information for Internal Objects? CodeBlock, Executable, etc.
Structure* structure = cell->structure(vm);
if (!structure) {
errorString = ASCIILiteral("Unable to get object details - Structure");
return;
}
JSGlobalObject* globalObject = structure->globalObject();
if (!globalObject) {
errorString = ASCIILiteral("Unable to get object details - GlobalObject");
return;
}
InjectedScript injectedScript = m_injectedScriptManager.injectedScriptFor(globalObject->globalExec());
if (injectedScript.hasNoValue()) {
errorString = ASCIILiteral("Unable to get object details - InjectedScript");
return;
}
// Function preview.
if (cell->inherits(JSFunction::info())) {
injectedScript.functionDetails(errorString, cell, &functionDetails);
return;
}
// Object preview.
objectPreview = injectedScript.previewValue(cell);
}
void InspectorHeapAgent::getRemoteObject(ErrorString& errorString, int heapObjectId, const String* optionalObjectGroup, RefPtr<Inspector::Protocol::Runtime::RemoteObject>& result)
{
// Prevent the cell from getting collected as we look it up.
VM& vm = m_environment.vm();
JSLockHolder lock(vm);
DeferGC deferGC(vm.heap);
unsigned heapObjectIdentifier = static_cast<unsigned>(heapObjectId);
const Optional<HeapSnapshotNode> optionalNode = nodeForHeapObjectIdentifier(errorString, heapObjectIdentifier);
if (!optionalNode)
return;
JSCell* cell = optionalNode->cell;
Structure* structure = cell->structure(vm);
if (!structure) {
errorString = ASCIILiteral("Unable to get object details");
return;
}
JSGlobalObject* globalObject = structure->globalObject();
if (!globalObject) {
errorString = ASCIILiteral("Unable to get object details");
return;
}
InjectedScript injectedScript = m_injectedScriptManager.injectedScriptFor(globalObject->globalExec());
if (injectedScript.hasNoValue()) {
errorString = ASCIILiteral("Unable to get object details - InjectedScript");
return;
}
String objectGroup = optionalObjectGroup ? *optionalObjectGroup : String();
result = injectedScript.wrapObject(cell, objectGroup, true);
}
static Inspector::Protocol::Heap::GarbageCollection::Type protocolTypeForHeapOperation(HeapOperation operation)
{
switch (operation) {
case FullCollection:
return Inspector::Protocol::Heap::GarbageCollection::Type::Full;
case EdenCollection:
return Inspector::Protocol::Heap::GarbageCollection::Type::Partial;
default:
ASSERT_NOT_REACHED();
return Inspector::Protocol::Heap::GarbageCollection::Type::Full;
}
}
void InspectorHeapAgent::willGarbageCollect()
{
ASSERT(m_enabled);
ASSERT(std::isnan(m_gcStartTime));
m_gcStartTime = m_environment.executionStopwatch()->elapsedTime();
}
void InspectorHeapAgent::didGarbageCollect(HeapOperation operation)
{
ASSERT(m_enabled);
ASSERT(!std::isnan(m_gcStartTime));
// FIXME: Include number of bytes freed by collection.
// Dispatch the event asynchronously because this method may be
// called between collection and sweeping and we don't want to
// create unexpected JavaScript allocations that the Sweeper does
// not expect to encounter. JavaScript allocations could happen
// with WebKitLegacy's in process inspector which shares the same
// VM as the inspected page.
GarbageCollectionData data;
data.type = protocolTypeForHeapOperation(operation);
data.startTime = m_gcStartTime;
data.endTime = m_environment.executionStopwatch()->elapsedTime();
m_sendGarbageCollectionEventsTask->addGarbageCollection(data);
m_gcStartTime = NAN;
}
void InspectorHeapAgent::clearHeapSnapshots()
{
VM& vm = m_environment.vm();
JSLockHolder lock(vm);
if (HeapProfiler* heapProfiler = vm.heapProfiler()) {
heapProfiler->clearSnapshots();
HeapSnapshotBuilder::resetNextAvailableObjectIdentifier();
}
}
} // namespace Inspector