Changeset 167530 in webkit


Ignore:
Timestamp:
Apr 18, 2014, 11:03:40 PM (11 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: Move InspectorProfilerAgent to JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=131673

Passes existing profiler and inspector tests.

Reviewed by Joseph Pecoraro.

  • CMakeLists.txt:
  • DerivedSources.make:

Source/JavaScriptCore:

(Inspector::JSConsoleClient::JSConsoleClient):
(Inspector::JSConsoleClient::profile):
(Inspector::JSConsoleClient::profileEnd):
(Inspector::JSConsoleClient::count): Deleted.

  • inspector/JSConsoleClient.h:
  • inspector/JSGlobalObjectInspectorController.cpp:

(Inspector::JSGlobalObjectInspectorController::JSGlobalObjectInspectorController):

  • inspector/agents/InspectorProfilerAgent.cpp: Added.

(Inspector::InspectorProfilerAgent::InspectorProfilerAgent):
(Inspector::InspectorProfilerAgent::~InspectorProfilerAgent):
(Inspector::InspectorProfilerAgent::addProfile):
(Inspector::InspectorProfilerAgent::createProfileHeader):
(Inspector::InspectorProfilerAgent::enable):
(Inspector::InspectorProfilerAgent::disable):
(Inspector::InspectorProfilerAgent::getUserInitiatedProfileName):
(Inspector::InspectorProfilerAgent::getProfileHeaders):
(Inspector::buildInspectorObject):
(Inspector::InspectorProfilerAgent::buildProfileInspectorObject):
(Inspector::InspectorProfilerAgent::getCPUProfile):
(Inspector::InspectorProfilerAgent::removeProfile):
(Inspector::InspectorProfilerAgent::reset):
(Inspector::InspectorProfilerAgent::didCreateFrontendAndBackend):
(Inspector::InspectorProfilerAgent::willDestroyFrontendAndBackend):
(Inspector::InspectorProfilerAgent::start):
(Inspector::InspectorProfilerAgent::stop):
(Inspector::InspectorProfilerAgent::setRecordingProfile):
(Inspector::InspectorProfilerAgent::startProfiling):
(Inspector::InspectorProfilerAgent::stopProfiling):

  • inspector/agents/InspectorProfilerAgent.h: Added.
  • inspector/agents/JSGlobalObjectProfilerAgent.cpp: Copied from Source/WebCore/inspector/ScriptProfile.idl.

(Inspector::JSGlobalObjectProfilerAgent::JSGlobalObjectProfilerAgent):
(Inspector::JSGlobalObjectProfilerAgent::profilingGlobalExecState):

  • inspector/agents/JSGlobalObjectProfilerAgent.h: Copied from Source/WebCore/inspector/ScriptProfile.idl.
  • inspector/protocol/Profiler.json: Renamed from Source/WebCore/inspector/protocol/Profiler.json.
  • profiler/Profile.h:
  • runtime/ConsoleClient.h:

Source/WebCore:

  • ForwardingHeaders/inspector/agents/InspectorProfilerAgent.h: Added.
  • WebCore.exp.in:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/ScriptProfile.cpp: Removed.
  • bindings/js/ScriptProfile.h:
  • bindings/js/ScriptProfiler.cpp: Removed.
  • bindings/js/ScriptProfiler.h: Removed.
  • inspector/InspectorAllInOne.cpp:
  • inspector/InspectorConsoleInstrumentation.h:

(WebCore::InspectorInstrumentation::profilerEnabled):
(WebCore::InspectorInstrumentation::startProfiling):
(WebCore::InspectorInstrumentation::stopProfiling):

  • inspector/InspectorController.cpp:

(WebCore::InspectorController::InspectorController):

  • inspector/InspectorController.h:
  • inspector/InspectorInstrumentation.cpp:

(WebCore::InspectorInstrumentation::didCommitLoadImpl):
(WebCore::InspectorInstrumentation::startProfilingImpl):
(WebCore::InspectorInstrumentation::stopProfilingImpl):
(WebCore::InspectorInstrumentation::consoleTimeStampImpl): Deleted.

  • inspector/InspectorInstrumentation.h:
  • inspector/InspectorProfilerAgent.cpp: Removed.
  • inspector/InspectorProfilerAgent.h: Removed.
  • inspector/InspectorTimelineAgent.cpp:

(WebCore::startProfiling):
(WebCore::stopProfiling):
(WebCore::InspectorTimelineAgent::willCallFunction):
(WebCore::InspectorTimelineAgent::didCallFunction):
(WebCore::InspectorTimelineAgent::willEvaluateScript):
(WebCore::InspectorTimelineAgent::didEvaluateScript):
(WebCore::InspectorTimelineAgent::didDispatchXHRLoadEvent): Deleted.

  • inspector/InstrumentingAgents.h:

(WebCore::InstrumentingAgents::inspectorProfilerAgent):
(WebCore::InstrumentingAgents::setInspectorProfilerAgent):

  • inspector/PageDebuggerAgent.cpp:

(WebCore::PageDebuggerAgent::sourceMapURLForScript): Deleted.

  • inspector/PageDebuggerAgent.h:
  • inspector/PageProfilerAgent.cpp: Added.

(WebCore::PageProfilerAgent::PageProfilerAgent):
(WebCore::PageProfilerAgent::profilingGlobalExecState):

  • inspector/PageProfilerAgent.h: Added.

(WebCore::PageProfilerAgent::~PageProfilerAgent):

  • inspector/ScriptProfile.idl:
  • inspector/TimelineRecordFactory.cpp:

(WebCore::TimelineRecordFactory::appendProfile):

  • inspector/TimelineRecordFactory.h:
  • inspector/WebConsoleAgent.cpp:
  • inspector/WebProfilerAgent.cpp: Added.

(WebCore::WebProfilerAgent::WebProfilerAgent):
(WebCore::WebProfilerAgent::enable):
(WebCore::WebProfilerAgent::disable):

  • inspector/WebProfilerAgent.h: Added.

(WebCore::WebProfilerAgent::~WebProfilerAgent):

  • inspector/WorkerInspectorController.cpp:

(WebCore::WorkerInspectorController::WorkerInspectorController):

  • inspector/WorkerProfilerAgent.cpp: Added.

(WebCore::WorkerProfilerAgent::WorkerProfilerAgent):
(WebCore::WorkerProfilerAgent::profilingGlobalExecState):

  • inspector/WorkerProfilerAgent.h: Added.

(WebCore::WorkerProfilerAgent::~WorkerProfilerAgent):

  • loader/appcache/ApplicationCacheGroup.cpp:
  • page/PageConsole.cpp:

(WebCore::PageConsole::profile):
(WebCore::PageConsole::profileEnd):
(WebCore::PageConsole::time): Deleted.
(WebCore::PageConsole::timeEnd): Deleted.
(WebCore::PageConsole::timeStamp): Deleted.

  • page/PageConsole.h:
  • testing/Internals.cpp:
  • testing/Internals.h:
  • xml/XMLHttpRequest.cpp:
Location:
trunk/Source
Files:
3 added
5 deleted
42 edited
8 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/CMakeLists.txt

    r167313 r167530  
    268268    inspector/agents/InspectorConsoleAgent.cpp
    269269    inspector/agents/InspectorDebuggerAgent.cpp
     270    inspector/agents/InspectorProfilerAgent.cpp
    270271    inspector/agents/InspectorRuntimeAgent.cpp
    271272
     
    832833    ${JAVASCRIPTCORE_DIR}/inspector/protocol/GenericTypes.json
    833834    ${JAVASCRIPTCORE_DIR}/inspector/protocol/InspectorDomain.json
     835    ${JAVASCRIPTCORE_DIR}/inspector/protocol/Profiler.json
    834836    ${JAVASCRIPTCORE_DIR}/inspector/protocol/Runtime.json
    835837)
  • trunk/Source/JavaScriptCore/ChangeLog

    r167528 r167530  
     12014-04-18  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: Move InspectorProfilerAgent to JavaScriptCore
     4        https://bugs.webkit.org/show_bug.cgi?id=131673
     5
     6        Passes existing profiler and inspector tests.
     7
     8        Reviewed by Joseph Pecoraro.
     9
     10        * CMakeLists.txt:
     11        * DerivedSources.make:
     12        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj:
     13        * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters:
     14        * JavaScriptCore.xcodeproj/project.pbxproj:
     15        * inspector/JSConsoleClient.cpp:
     16        (Inspector::JSConsoleClient::JSConsoleClient):
     17        (Inspector::JSConsoleClient::profile):
     18        (Inspector::JSConsoleClient::profileEnd):
     19        (Inspector::JSConsoleClient::count): Deleted.
     20        * inspector/JSConsoleClient.h:
     21        * inspector/JSGlobalObjectInspectorController.cpp:
     22        (Inspector::JSGlobalObjectInspectorController::JSGlobalObjectInspectorController):
     23        * inspector/agents/InspectorProfilerAgent.cpp: Added.
     24        (Inspector::InspectorProfilerAgent::InspectorProfilerAgent):
     25        (Inspector::InspectorProfilerAgent::~InspectorProfilerAgent):
     26        (Inspector::InspectorProfilerAgent::addProfile):
     27        (Inspector::InspectorProfilerAgent::createProfileHeader):
     28        (Inspector::InspectorProfilerAgent::enable):
     29        (Inspector::InspectorProfilerAgent::disable):
     30        (Inspector::InspectorProfilerAgent::getUserInitiatedProfileName):
     31        (Inspector::InspectorProfilerAgent::getProfileHeaders):
     32        (Inspector::buildInspectorObject):
     33        (Inspector::InspectorProfilerAgent::buildProfileInspectorObject):
     34        (Inspector::InspectorProfilerAgent::getCPUProfile):
     35        (Inspector::InspectorProfilerAgent::removeProfile):
     36        (Inspector::InspectorProfilerAgent::reset):
     37        (Inspector::InspectorProfilerAgent::didCreateFrontendAndBackend):
     38        (Inspector::InspectorProfilerAgent::willDestroyFrontendAndBackend):
     39        (Inspector::InspectorProfilerAgent::start):
     40        (Inspector::InspectorProfilerAgent::stop):
     41        (Inspector::InspectorProfilerAgent::setRecordingProfile):
     42        (Inspector::InspectorProfilerAgent::startProfiling):
     43        (Inspector::InspectorProfilerAgent::stopProfiling):
     44        * inspector/agents/InspectorProfilerAgent.h: Added.
     45        * inspector/agents/JSGlobalObjectProfilerAgent.cpp: Copied from Source/WebCore/inspector/ScriptProfile.idl.
     46        (Inspector::JSGlobalObjectProfilerAgent::JSGlobalObjectProfilerAgent):
     47        (Inspector::JSGlobalObjectProfilerAgent::profilingGlobalExecState):
     48        * inspector/agents/JSGlobalObjectProfilerAgent.h: Copied from Source/WebCore/inspector/ScriptProfile.idl.
     49        * inspector/protocol/Profiler.json: Renamed from Source/WebCore/inspector/protocol/Profiler.json.
     50        * profiler/Profile.h:
     51        * runtime/ConsoleClient.h:
     52
    1532014-04-18  Commit Queue  <commit-queue@webkit.org>
    254
  • trunk/Source/JavaScriptCore/DerivedSources.make

    r165714 r167530  
    108108    $(JavaScriptCore)/inspector/protocol/GenericTypes.json \
    109109    $(JavaScriptCore)/inspector/protocol/InspectorDomain.json \
     110    $(JavaScriptCore)/inspector/protocol/Profiler.json \
    110111    $(JavaScriptCore)/inspector/protocol/Runtime.json \
    111112#
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj

    r167435 r167530  
    514514    <ClCompile Include="..\inspector\agents\InspectorConsoleAgent.cpp" />
    515515    <ClCompile Include="..\inspector\agents\InspectorDebuggerAgent.cpp" />
     516    <ClCompile Include="..\inspector\agents\InspectorProfilerAgent.cpp" />
    516517    <ClCompile Include="..\inspector\agents\InspectorRuntimeAgent.cpp" />
    517518    <ClCompile Include="..\interpreter\AbstractPC.cpp" />
     
    11301131    <ClInclude Include="..\inspector\agents\InspectorConsoleAgent.h" />
    11311132    <ClInclude Include="..\inspector\agents\InspectorDebuggerAgent.h" />
     1133    <ClInclude Include="..\inspector\agents\InspectorProfilerAgent.h" />
    11321134    <ClInclude Include="..\inspector\agents\InspectorRuntimeAgent.h" />
    11331135    <ClInclude Include="..\interpreter\AbstractPC.h" />
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters

    r167313 r167530  
    325325      <Filter>inspector</Filter>
    326326    </ClCompile>
     327    <ClCompile Include="..\inspector\agents\InspectorProfilerAgent.cpp">
     328      <Filter>inspector</Filter>
     329    </ClCompile>
    327330    <ClCompile Include="..\inspector\agents\InspectorRuntimeAgent.cpp">
    328331      <Filter>inspector</Filter>
     
    18731876    </ClInclude>
    18741877    <ClInclude Include="..\inspector\agents\InspectorDebuggerAgent.h">
     1878      <Filter>inspector</Filter>
     1879    </ClInclude>
     1880    <ClInclude Include="..\inspector\agents\InspectorProfilerAgent.h">
    18751881      <Filter>inspector</Filter>
    18761882    </ClInclude>
  • trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r167394 r167530  
    783783                1A28D4A8177B71C80007FA3C /* JSStringRefPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A28D4A7177B71C80007FA3C /* JSStringRefPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
    784784                1ACF7377171CA6FB00C9BB1E /* Weak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1ACF7376171CA6FB00C9BB1E /* Weak.cpp */; };
     785                1CAA9A1E18F4997F000A369D /* InspectorProfilerAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CAA9A1C18F4997F000A369D /* InspectorProfilerAgent.cpp */; };
     786                1CAA9A1F18F4997F000A369D /* InspectorProfilerAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CAA9A1D18F4997F000A369D /* InspectorProfilerAgent.h */; settings = {ATTRIBUTES = (Private, ); }; };
     787                1CAA9A2218F4A220000A369D /* JSGlobalObjectProfilerAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CAA9A2018F4A220000A369D /* JSGlobalObjectProfilerAgent.cpp */; };
     788                1CAA9A2318F4A220000A369D /* JSGlobalObjectProfilerAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CAA9A2118F4A220000A369D /* JSGlobalObjectProfilerAgent.h */; };
    785789                2600B5A6152BAAA70091EE5F /* JSStringJoiner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2600B5A4152BAAA70091EE5F /* JSStringJoiner.cpp */; };
    786790                2600B5A7152BAAA70091EE5F /* JSStringJoiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 2600B5A5152BAAA70091EE5F /* JSStringJoiner.h */; };
     
    25452549                1CAA8B4A0D32C39A0041BCFF /* JavaScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JavaScript.h; sourceTree = "<group>"; };
    25462550                1CAA8B4B0D32C39A0041BCFF /* JavaScriptCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JavaScriptCore.h; sourceTree = "<group>"; };
     2551                1CAA9A1C18F4997F000A369D /* InspectorProfilerAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorProfilerAgent.cpp; sourceTree = "<group>"; };
     2552                1CAA9A1D18F4997F000A369D /* InspectorProfilerAgent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorProfilerAgent.h; sourceTree = "<group>"; };
     2553                1CAA9A2018F4A220000A369D /* JSGlobalObjectProfilerAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSGlobalObjectProfilerAgent.cpp; sourceTree = "<group>"; };
     2554                1CAA9A2118F4A220000A369D /* JSGlobalObjectProfilerAgent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSGlobalObjectProfilerAgent.h; sourceTree = "<group>"; };
    25472555                2600B5A4152BAAA70091EE5F /* JSStringJoiner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSStringJoiner.cpp; sourceTree = "<group>"; };
    25482556                2600B5A5152BAAA70091EE5F /* JSStringJoiner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSStringJoiner.h; sourceTree = "<group>"; };
     
    50525060                                A57D23E31890CEBF0031C7FA /* InspectorDebuggerAgent.cpp */,
    50535061                                A57D23E41890CEBF0031C7FA /* InspectorDebuggerAgent.h */,
     5062                                1CAA9A1C18F4997F000A369D /* InspectorProfilerAgent.cpp */,
     5063                                1CAA9A1D18F4997F000A369D /* InspectorProfilerAgent.h */,
    50545064                                A50E4B5D18809DD50068A46D /* InspectorRuntimeAgent.cpp */,
    50555065                                A50E4B5E18809DD50068A46D /* InspectorRuntimeAgent.h */,
     
    50585068                                A57D23E71891B0770031C7FA /* JSGlobalObjectDebuggerAgent.cpp */,
    50595069                                A57D23E81891B0770031C7FA /* JSGlobalObjectDebuggerAgent.h */,
     5070                                1CAA9A2018F4A220000A369D /* JSGlobalObjectProfilerAgent.cpp */,
     5071                                1CAA9A2118F4A220000A369D /* JSGlobalObjectProfilerAgent.h */,
    50605072                                A50E4B5F18809DD50068A46D /* JSGlobalObjectRuntimeAgent.cpp */,
    50615073                                A50E4B6018809DD50068A46D /* JSGlobalObjectRuntimeAgent.h */,
     
    58915903                                BC18C4170E16F5CD00B34460 /* JSArray.h in Headers */,
    58925904                                0F2B66E317B6B5AB00A7AE3F /* JSArrayBuffer.h in Headers */,
     5905                                1CAA9A2318F4A220000A369D /* JSGlobalObjectProfilerAgent.h in Headers */,
    58935906                                0F2B66E517B6B5AB00A7AE3F /* JSArrayBufferConstructor.h in Headers */,
    58945907                                0F2B66E717B6B5AB00A7AE3F /* JSArrayBufferPrototype.h in Headers */,
     
    59175930                                0F7576D318E1FEE9002EF4CD /* AccessorCallJITStubRoutine.h in Headers */,
    59185931                                0F2B66EC17B6B5AB00A7AE3F /* JSDataView.h in Headers */,
     5932                                1CAA9A1F18F4997F000A369D /* InspectorProfilerAgent.h in Headers */,
    59195933                                0F2B66EE17B6B5AB00A7AE3F /* JSDataViewPrototype.h in Headers */,
    59205934                                978801411471AD920041B016 /* JSDateMath.h in Headers */,
     
    70107024                                0F6B1CC31862C47800845D97 /* FTLRegisterAtOffset.cpp in Sources */,
    70117025                                0FCEFAAB1804C13E00472CE4 /* FTLSaveRestore.cpp in Sources */,
     7026                                1CAA9A2218F4A220000A369D /* JSGlobalObjectProfilerAgent.cpp in Sources */,
    70127027                                0F25F1B1181635F300522F39 /* FTLSlowPathCall.cpp in Sources */,
    70137028                                0F25F1B3181635F300522F39 /* FTLSlowPathCallKey.cpp in Sources */,
     
    72297244                                0F13912916771C33009CCB07 /* ProfilerBytecodeSequence.cpp in Sources */,
    72307245                                0FF729AF166AD35C000F5BA3 /* ProfilerCompilation.cpp in Sources */,
     7246                                1CAA9A1E18F4997F000A369D /* InspectorProfilerAgent.cpp in Sources */,
    72317247                                0FF729B0166AD35C000F5BA3 /* ProfilerCompilationKind.cpp in Sources */,
    72327248                                0FF729B1166AD35C000F5BA3 /* ProfilerCompiledBytecode.cpp in Sources */,
  • trunk/Source/JavaScriptCore/inspector/JSConsoleClient.cpp

    r166799 r167530  
    3030
    3131#include "InspectorConsoleAgent.h"
     32#include "InspectorProfilerAgent.h"
    3233#include "ScriptArguments.h"
    3334#include "ScriptCallStack.h"
     
    6667}
    6768
    68 JSConsoleClient::JSConsoleClient(InspectorConsoleAgent* consoleAgent)
     69JSConsoleClient::JSConsoleClient(InspectorConsoleAgent* consoleAgent, InspectorProfilerAgent* profilerAgent)
    6970    : ConsoleClient()
    7071    , m_consoleAgent(consoleAgent)
     72    , m_profilerAgent(profilerAgent)
    7173{
    7274    static std::once_flag initializeLogging;
     
    9395}
    9496
    95 void JSConsoleClient::profile(ExecState*, const String&)
     97void JSConsoleClient::profile(JSC::ExecState* exec, const String& title)
    9698{
    97     // FIXME: JSContext inspection needs a profiler.
    98     warnUnimplemented(ASCIILiteral("console.profile"));
     99    if (!m_profilerAgent->enabled())
     100        return;
     101
     102    String resolvedTitle = m_profilerAgent->startProfiling(title);
     103
     104    RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(exec, 1));
     105    m_consoleAgent->addMessageToConsole(MessageSource::ConsoleAPI, MessageType::Profile, MessageLevel::Debug, resolvedTitle, callStack);
    99106}
    100107
    101 void JSConsoleClient::profileEnd(ExecState*, const String&)
     108void JSConsoleClient::profileEnd(JSC::ExecState* exec, const String& title)
    102109{
    103     // FIXME: JSContext inspection needs a profiler.
    104     // Already warned in profile(), we do not need to warn again.
     110    if (!m_profilerAgent->enabled())
     111        return;
     112
     113    RefPtr<JSC::Profile> profile = m_profilerAgent->stopProfiling(title);
     114    if (!profile)
     115        return;
     116
     117    RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(exec, 1));
     118    String message = makeString(profile->title(), '#', String::number(profile->uid()));
     119    m_consoleAgent->addMessageToConsole(MessageSource::ConsoleAPI, MessageType::Profile, MessageLevel::Debug, message, callStack);
    105120}
    106121
  • trunk/Source/JavaScriptCore/inspector/JSConsoleClient.h

    r166799 r167530  
    3232
    3333class InspectorConsoleAgent;
     34class InspectorProfilerAgent;
    3435
    3536class JSConsoleClient final : public JSC::ConsoleClient {
    3637public:
    37     explicit JSConsoleClient(InspectorConsoleAgent*);
     38    explicit JSConsoleClient(InspectorConsoleAgent*, InspectorProfilerAgent*);
    3839    virtual ~JSConsoleClient() { }
    3940
     
    5657
    5758    InspectorConsoleAgent* m_consoleAgent;
     59    InspectorProfilerAgent* m_profilerAgent;
    5860};
    5961
  • trunk/Source/JavaScriptCore/inspector/JSGlobalObjectInspectorController.cpp

    r166816 r167530  
    4040#include "JSGlobalObjectConsoleAgent.h"
    4141#include "JSGlobalObjectDebuggerAgent.h"
     42#include "JSGlobalObjectProfilerAgent.h"
    4243#include "JSGlobalObjectRuntimeAgent.h"
    4344#include "ScriptArguments.h"
     
    6162    auto consoleAgent = std::make_unique<JSGlobalObjectConsoleAgent>(m_injectedScriptManager.get());
    6263    auto debuggerAgent = std::make_unique<JSGlobalObjectDebuggerAgent>(m_injectedScriptManager.get(), m_globalObject, consoleAgent.get());
     64    auto profilerAgent = std::make_unique<JSGlobalObjectProfilerAgent>(m_globalObject);
    6365
    6466    m_consoleAgent = consoleAgent.get();
    65     m_consoleClient = std::make_unique<JSConsoleClient>(m_consoleAgent);
     67    m_consoleClient = std::make_unique<JSConsoleClient>(m_consoleAgent, profilerAgent.get());
    6668
    6769    runtimeAgent->setScriptDebugServer(&debuggerAgent->scriptDebugServer());
     70    profilerAgent->setScriptDebugServer(&debuggerAgent->scriptDebugServer());
    6871
    6972    m_agents.append(std::make_unique<InspectorAgent>());
  • trunk/Source/JavaScriptCore/inspector/agents/JSGlobalObjectProfilerAgent.cpp

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
    34 };
     26#include "config.h"
     27#include "JSGlobalObjectProfilerAgent.h"
    3528
     29#if ENABLE(INSPECTOR)
     30
     31#include "JSGlobalObject.h"
     32
     33using namespace JSC;
     34
     35namespace Inspector {
     36
     37JSGlobalObjectProfilerAgent::JSGlobalObjectProfilerAgent(JSGlobalObject& globalObject)
     38    : InspectorProfilerAgent()
     39    , m_globalObject(globalObject)
     40{
     41}
     42
     43ExecState* JSGlobalObjectProfilerAgent::profilingGlobalExecState() const
     44{
     45    return m_globalObject.globalExec();
     46}
     47
     48} // namespace Inspector
     49
     50#endif // ENABLE(INSPECTOR)
  • trunk/Source/JavaScriptCore/inspector/agents/JSGlobalObjectProfilerAgent.h

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
     26#ifndef JSGlobalObjectProfilerAgent_h
     27#define JSGlobalObjectProfilerAgent_h
     28
     29#if ENABLE(INSPECTOR)
     30
     31#include "InspectorProfilerAgent.h"
     32
     33namespace JSC {
     34class JSGlobalObject;
     35}
     36
     37namespace Inspector {
     38
     39class JSGlobalObjectProfilerAgent final : public InspectorProfilerAgent {
     40public:
     41    JSGlobalObjectProfilerAgent(JSC::JSGlobalObject&);
     42
     43private:
     44    virtual JSC::ExecState* profilingGlobalExecState() const override;
     45
     46    JSC::JSGlobalObject& m_globalObject;
    3447};
    3548
     49} // namespace Inspector
     50
     51#endif // ENABLE(INSPECTOR)
     52
     53#endif // !defined(JSGlobalObjectProfilerAgent_h)
  • trunk/Source/JavaScriptCore/profiler/Profile.h

    r163140 r167530  
    3434namespace JSC {
    3535
    36     class Profile : public RefCounted<Profile> {
    37     public:
    38         static PassRefPtr<Profile> create(const String& title, unsigned uid);
    39         virtual ~Profile();
     36class JS_EXPORT_PRIVATE Profile : public RefCounted<Profile> {
     37public:
     38    static PassRefPtr<Profile> create(const String& title, unsigned uid);
     39    virtual ~Profile();
    4040
    41         const String& title() const { return m_title; }
    42         unsigned uid() const { return m_uid; }
     41    const String& title() const { return m_title; }
     42    unsigned uid() const { return m_uid; }
    4343
    44         ProfileNode* head() const { return m_head.get(); }
    45         void setHead(PassRefPtr<ProfileNode> head) { m_head = head; }
     44    ProfileNode* head() const { return m_head.get(); }
     45    void setHead(PassRefPtr<ProfileNode> head) { m_head = head; }
    4646
    47         double totalTime() const { return m_head->totalTime(); }
     47    double totalTime() const { return m_head->totalTime(); }
    4848
    49         double idleTime() const { return m_idleTime; }
    50         void setIdleTime(double idleTime) { m_idleTime = idleTime; }
     49    double idleTime() const { return m_idleTime; }
     50    void setIdleTime(double idleTime) { m_idleTime = idleTime; }
    5151
    52         void forEach(void (ProfileNode::*)());
     52    void forEach(void (ProfileNode::*)());
    5353
    5454#ifndef NDEBUG
    55         void debugPrintData() const;
    56         void debugPrintDataSampleStyle() const;
     55    void debugPrintData() const;
     56    void debugPrintDataSampleStyle() const;
    5757#endif
    5858
    59     protected:
    60         Profile(const String& title, unsigned uid);
     59protected:
     60    Profile(const String& title, unsigned uid);
    6161
    62     private:
    63         void removeProfileStart();
    64         void removeProfileEnd();
    65  
    66         String m_title;
    67         RefPtr<ProfileNode> m_head;
    68         unsigned int m_uid;
    69         double m_idleTime;
    70     };
     62private:
     63    void removeProfileStart();
     64    void removeProfileEnd();
     65
     66    String m_title;
     67    RefPtr<ProfileNode> m_head;
     68    unsigned m_uid;
     69    double m_idleTime;
     70};
    7171
    7272} // namespace JSC
  • trunk/Source/JavaScriptCore/runtime/ConsoleClient.h

    r166799 r167530  
    2828
    2929#include "ConsoleTypes.h"
     30#include "Profile.h"
    3031#include <wtf/Forward.h>
    3132
  • trunk/Source/WebCore/CMakeLists.txt

    r167528 r167530  
    764764    ${WEBCORE_DIR}/inspector/protocol/Network.json
    765765    ${WEBCORE_DIR}/inspector/protocol/Page.json
    766     ${WEBCORE_DIR}/inspector/protocol/Profiler.json
    767766    ${WEBCORE_DIR}/inspector/protocol/Timeline.json
    768767    ${WEBCORE_DIR}/inspector/protocol/Worker.json
     
    11541153    bindings/js/ScriptController.cpp
    11551154    bindings/js/ScriptGlobalObject.cpp
    1156     bindings/js/ScriptProfile.cpp
    1157     bindings/js/ScriptProfiler.cpp
    11581155    bindings/js/ScriptState.cpp
    11591156    bindings/js/SerializedScriptValue.cpp
     
    17491746    inspector/InspectorOverlay.cpp
    17501747    inspector/InspectorPageAgent.cpp
    1751     inspector/InspectorProfilerAgent.cpp
    17521748    inspector/InspectorResourceAgent.cpp
    17531749    inspector/InspectorStyleSheet.cpp
     
    17591755    inspector/PageConsoleAgent.cpp
    17601756    inspector/PageDebuggerAgent.cpp
     1757    inspector/PageProfilerAgent.cpp
    17611758    inspector/PageRuntimeAgent.cpp
    17621759    inspector/PageScriptDebugServer.cpp
     
    17661763    inspector/WebInjectedScriptHost.cpp
    17671764    inspector/WebInjectedScriptManager.cpp
     1765    inspector/WebProfilerAgent.cpp
    17681766    inspector/WorkerConsoleAgent.cpp
    17691767    inspector/WorkerDebuggerAgent.cpp
    17701768    inspector/WorkerInspectorController.cpp
     1769    inspector/WorkerProfilerAgent.cpp
    17711770    inspector/WorkerRuntimeAgent.cpp
    17721771
  • trunk/Source/WebCore/ChangeLog

    r167529 r167530  
     12014-04-18  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: Move InspectorProfilerAgent to JavaScriptCore
     4        https://bugs.webkit.org/show_bug.cgi?id=131673
     5
     6        Passes existing profiler and inspector tests.
     7
     8        Reviewed by Joseph Pecoraro.
     9
     10        * CMakeLists.txt:
     11        * DerivedSources.make:
     12        * ForwardingHeaders/inspector/agents/InspectorProfilerAgent.h: Added.
     13        * WebCore.exp.in:
     14        * WebCore.vcxproj/WebCore.vcxproj:
     15        * WebCore.vcxproj/WebCore.vcxproj.filters:
     16        * WebCore.xcodeproj/project.pbxproj:
     17        * bindings/js/ScriptProfile.cpp: Removed.
     18        * bindings/js/ScriptProfile.h:
     19        * bindings/js/ScriptProfiler.cpp: Removed.
     20        * bindings/js/ScriptProfiler.h: Removed.
     21        * inspector/InspectorAllInOne.cpp:
     22        * inspector/InspectorConsoleInstrumentation.h:
     23        (WebCore::InspectorInstrumentation::profilerEnabled):
     24        (WebCore::InspectorInstrumentation::startProfiling):
     25        (WebCore::InspectorInstrumentation::stopProfiling):
     26        * inspector/InspectorController.cpp:
     27        (WebCore::InspectorController::InspectorController):
     28        * inspector/InspectorController.h:
     29        * inspector/InspectorInstrumentation.cpp:
     30        (WebCore::InspectorInstrumentation::didCommitLoadImpl):
     31        (WebCore::InspectorInstrumentation::startProfilingImpl):
     32        (WebCore::InspectorInstrumentation::stopProfilingImpl):
     33        (WebCore::InspectorInstrumentation::consoleTimeStampImpl): Deleted.
     34        * inspector/InspectorInstrumentation.h:
     35        * inspector/InspectorProfilerAgent.cpp: Removed.
     36        * inspector/InspectorProfilerAgent.h: Removed.
     37        * inspector/InspectorTimelineAgent.cpp:
     38        (WebCore::startProfiling):
     39        (WebCore::stopProfiling):
     40        (WebCore::InspectorTimelineAgent::willCallFunction):
     41        (WebCore::InspectorTimelineAgent::didCallFunction):
     42        (WebCore::InspectorTimelineAgent::willEvaluateScript):
     43        (WebCore::InspectorTimelineAgent::didEvaluateScript):
     44        (WebCore::InspectorTimelineAgent::didDispatchXHRLoadEvent): Deleted.
     45        * inspector/InstrumentingAgents.h:
     46        (WebCore::InstrumentingAgents::inspectorProfilerAgent):
     47        (WebCore::InstrumentingAgents::setInspectorProfilerAgent):
     48        * inspector/PageDebuggerAgent.cpp:
     49        (WebCore::PageDebuggerAgent::sourceMapURLForScript): Deleted.
     50        * inspector/PageDebuggerAgent.h:
     51        * inspector/PageProfilerAgent.cpp: Added.
     52        (WebCore::PageProfilerAgent::PageProfilerAgent):
     53        (WebCore::PageProfilerAgent::profilingGlobalExecState):
     54        * inspector/PageProfilerAgent.h: Added.
     55        (WebCore::PageProfilerAgent::~PageProfilerAgent):
     56        * inspector/ScriptProfile.idl:
     57        * inspector/TimelineRecordFactory.cpp:
     58        (WebCore::TimelineRecordFactory::appendProfile):
     59        * inspector/TimelineRecordFactory.h:
     60        * inspector/WebConsoleAgent.cpp:
     61        * inspector/WebProfilerAgent.cpp: Added.
     62        (WebCore::WebProfilerAgent::WebProfilerAgent):
     63        (WebCore::WebProfilerAgent::enable):
     64        (WebCore::WebProfilerAgent::disable):
     65        * inspector/WebProfilerAgent.h: Added.
     66        (WebCore::WebProfilerAgent::~WebProfilerAgent):
     67        * inspector/WorkerInspectorController.cpp:
     68        (WebCore::WorkerInspectorController::WorkerInspectorController):
     69        * inspector/WorkerProfilerAgent.cpp: Added.
     70        (WebCore::WorkerProfilerAgent::WorkerProfilerAgent):
     71        (WebCore::WorkerProfilerAgent::profilingGlobalExecState):
     72        * inspector/WorkerProfilerAgent.h: Added.
     73        (WebCore::WorkerProfilerAgent::~WorkerProfilerAgent):
     74        * loader/appcache/ApplicationCacheGroup.cpp:
     75        * page/PageConsole.cpp:
     76        (WebCore::PageConsole::profile):
     77        (WebCore::PageConsole::profileEnd):
     78        (WebCore::PageConsole::time): Deleted.
     79        (WebCore::PageConsole::timeEnd): Deleted.
     80        (WebCore::PageConsole::timeStamp): Deleted.
     81        * page/PageConsole.h:
     82        * testing/Internals.cpp:
     83        * testing/Internals.h:
     84        * xml/XMLHttpRequest.cpp:
     85
    1862014-04-18  Simon Fraser  <simon.fraser@apple.com>
    287
  • trunk/Source/WebCore/DerivedSources.make

    r167528 r167530  
    11101110    $(WebCore)/inspector/protocol/Network.json \
    11111111    $(WebCore)/inspector/protocol/Page.json \
    1112     $(WebCore)/inspector/protocol/Profiler.json \
    11131112    $(WebCore)/inspector/protocol/Timeline.json \
    11141113    $(WebCore)/inspector/protocol/Worker.json \
  • trunk/Source/WebCore/WebCore.exp.in

    r167523 r167530  
    10951095__ZN7WebCore4coreEP20NSURLProtectionSpace
    10961096__ZN7WebCore4coreEP28NSURLAuthenticationChallenge
     1097__ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPNS0_7ProfileE
    10971098__ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPNS_10ClientRectE
    10981099__ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPNS_13DOMStringListE
    1099 __ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPNS_13ScriptProfileE
    11001100__ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPNS_14ClientRectListE
    11011101__ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPNS_19CSSStyleDeclarationE
  • trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj

    r167335 r167530  
    1741617416    </ClCompile>
    1741717417    <ClCompile Include="..\bindings\js\ScriptGlobalObject.cpp" />
    17418     <ClCompile Include="..\bindings\js\ScriptProfile.cpp" />
    17419     <ClCompile Include="..\bindings\js\ScriptProfiler.cpp">
    17420       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
    17421       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
    17422       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
    17423       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|x64'">true</ExcludedFromBuild>
    17424       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>
    17425       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|x64'">true</ExcludedFromBuild>
    17426       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
    17427       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
    17428       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
    17429       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild>
    17430       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
    17431       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
    17432     </ClCompile>
    1743317418    <ClCompile Include="..\bindings\js\ScriptState.cpp">
    1743417419      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
     
    1785317838      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
    1785417839    </ClCompile>
    17855     <ClCompile Include="..\inspector\InspectorProfilerAgent.cpp">
    17856       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
    17857       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
    17858       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
    17859       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild>
    17860       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
    17861       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
    17862     </ClCompile>
    1786317840    <ClCompile Include="..\inspector\InspectorResourceAgent.cpp">
    1786417841      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
     
    1793317910      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
    1793417911    </ClCompile>
     17912    <ClCompile Include="..\inspector\PageProfilerAgent.cpp">
     17913      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
     17914      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
     17915      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
     17916      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild>
     17917      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
     17918      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
     17919    </ClCompile>
    1793517920    <ClCompile Include="..\inspector\PageRuntimeAgent.cpp">
    1793617921      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
     
    1797317958      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
    1797417959    </ClCompile>
     17960    <ClCompile Include="..\inspector\WebProfilerAgent.cpp">
     17961      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
     17962      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
     17963      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
     17964      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild>
     17965      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
     17966      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
     17967    </ClCompile>
    1797517968    <ClCompile Include="..\inspector\WorkerConsoleAgent.cpp">
    1797617969      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
     
    1800617999    </ClCompile>
    1800718000    <ClCompile Include="..\inspector\WorkerInspectorController.cpp">
     18001      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
     18002      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
     18003      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
     18004      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|x64'">true</ExcludedFromBuild>
     18005      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
     18006      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|x64'">true</ExcludedFromBuild>
     18007    </ClCompile>
     18008    <ClCompile Include="..\inspector\WorkerProfilerAgent.cpp">
    1800818009      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
    1800918010      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
     
    2074020741    <ClInclude Include="..\bindings\js\ScriptProfile.h" />
    2074120742    <ClInclude Include="..\bindings\js\ScriptProfileNode.h" />
    20742     <ClInclude Include="..\bindings\js\ScriptProfiler.h" />
    2074320743    <ClInclude Include="..\bindings\js\ScriptSourceCode.h" />
    2074420744    <ClInclude Include="..\bindings\js\ScriptState.h" />
     
    2106521065    <ClInclude Include="..\inspector\InspectorOverlay.h" />
    2106621066    <ClInclude Include="..\inspector\InspectorPageAgent.h" />
    21067     <ClInclude Include="..\inspector\InspectorProfilerAgent.h" />
    2106821067    <ClInclude Include="..\inspector\InspectorResourceAgent.h" />
    2106921068    <ClInclude Include="..\inspector\InspectorStyleSheet.h" />
     
    2107721076    <ClInclude Include="..\inspector\PageConsoleAgent.h" />
    2107821077    <ClInclude Include="..\inspector\PageDebuggerAgent.h" />
     21078    <ClInclude Include="..\inspector\PageProfilerAgent.h" />
    2107921079    <ClInclude Include="..\inspector\PageRuntimeAgent.h" />
    2108021080    <ClInclude Include="..\inspector\PageScriptDebugServer.h" />
     
    2108221082    <ClInclude Include="..\inspector\WebConsoleAgent.h" />
    2108321083    <ClInclude Include="..\inspector\WebDebuggerAgent.h" />
     21084    <ClInclude Include="..\inspector\WebProfilerAgent.h" />
    2108421085    <ClInclude Include="..\inspector\WebInjectedScriptHost.h" />
    2108521086    <ClInclude Include="..\inspector\WebInjectedScriptManager.h" />
     
    2108721088    <ClInclude Include="..\inspector\WorkerDebuggerAgent.h" />
    2108821089    <ClInclude Include="..\inspector\WorkerInspectorController.h" />
     21090    <ClInclude Include="..\inspector\WorkerProfilerAgent.h" />
    2108921091    <ClInclude Include="..\inspector\WorkerRuntimeAgent.h" />
    2109021092    <ClInclude Include="..\mathml\MathMLElement.h" />
  • trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters

    r167335 r167530  
    45164516      <Filter>bindings\js</Filter>
    45174517    </ClCompile>
    4518     <ClCompile Include="..\bindings\js\ScriptProfile.cpp">
    4519       <Filter>bindings\js</Filter>
    4520     </ClCompile>
    4521     <ClCompile Include="..\bindings\js\ScriptProfiler.cpp">
    4522       <Filter>bindings\js</Filter>
    4523     </ClCompile>
    45244518    <ClCompile Include="..\bindings\js\ScriptState.cpp">
    45254519      <Filter>bindings\js</Filter>
     
    48014795      <Filter>inspector</Filter>
    48024796    </ClCompile>
    4803     <ClCompile Include="..\inspector\InspectorProfilerAgent.cpp">
    4804       <Filter>inspector</Filter>
    4805     </ClCompile>
    48064797    <ClCompile Include="..\inspector\InspectorResourceAgent.cpp">
    48074798      <Filter>inspector</Filter>
     
    48314822      <Filter>inspector</Filter>
    48324823    </ClCompile>
     4824    <ClCompile Include="..\inspector\PageProfilerAgent.cpp">
     4825      <Filter>inspector</Filter>
     4826    </ClCompile>
    48334827    <ClCompile Include="..\inspector\PageRuntimeAgent.cpp">
    48344828      <Filter>inspector</Filter>
     
    48464840      <Filter>inspector</Filter>
    48474841    </ClCompile>
     4842    <ClCompile Include="..\inspector\WebProfilerAgent.cpp">
     4843      <Filter>inspector</Filter>
     4844    </ClCompile>
    48484845    <ClCompile Include="..\inspector\WebInjectedScriptHost.cpp">
    48494846      <Filter>inspector</Filter>
     
    48594856    </ClCompile>
    48604857    <ClCompile Include="..\inspector\WorkerInspectorController.cpp">
     4858      <Filter>inspector</Filter>
     4859    </ClCompile>
     4860    <ClCompile Include="..\inspector\WorkerProfilerAgent.cpp">
    48614861      <Filter>inspector</Filter>
    48624862    </ClCompile>
     
    1143211432      <Filter>bindings\js</Filter>
    1143311433    </ClInclude>
    11434     <ClInclude Include="..\bindings\js\ScriptProfiler.h">
    11435       <Filter>bindings\js</Filter>
    11436     </ClInclude>
    1143711434    <ClInclude Include="..\bindings\js\ScriptSourceCode.h">
    1143811435      <Filter>bindings\js</Filter>
     
    1241912416      <Filter>inspector</Filter>
    1242012417    </ClInclude>
    12421     <ClInclude Include="..\inspector\InspectorProfilerAgent.h">
    12422       <Filter>inspector</Filter>
    12423     </ClInclude>
    1242412418    <ClInclude Include="..\inspector\InspectorResourceAgent.h">
    1242512419      <Filter>inspector</Filter>
     
    1245512449      <Filter>inspector</Filter>
    1245612450    </ClInclude>
     12451    <ClInclude Include="..\inspector\PageProfilerAgent.h">
     12452      <Filter>inspector</Filter>
     12453    </ClInclude>
    1245712454    <ClInclude Include="..\inspector\PageRuntimeAgent.h">
    1245812455      <Filter>inspector</Filter>
     
    1247012467      <Filter>inspector</Filter>
    1247112468    </ClInclude>
     12469    <ClInclude Include="..\inspector\WebProfilerAgent.h">
     12470      <Filter>inspector</Filter>
     12471    </ClInclude>
    1247212472    <ClInclude Include="..\inspector\WebInjectedScriptHost.h">
    1247312473      <Filter>inspector</Filter>
     
    1248312483    </ClInclude>
    1248412484    <ClInclude Include="..\inspector\WorkerInspectorController.h">
     12485      <Filter>inspector</Filter>
     12486    </ClInclude>
     12487    <ClInclude Include="..\inspector\WorkerProfilerAgent.h">
    1248512488      <Filter>inspector</Filter>
    1248612489    </ClInclude>
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r167528 r167530  
    932932                1CB4214C0AF2B2CA0085AD91 /* DOMHTMLElementInternal.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 85E711580AC5D5340053270F /* DOMHTMLElementInternal.h */; };
    933933                1CB4214D0AF2B2CA0085AD91 /* DOMRangeInternal.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 8538F05A0AD722F1006A81D1 /* DOMRangeInternal.h */; };
     934                1CC6B06C18F8526B0007ECCD /* WebProfilerAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CC6B06A18F8526B0007ECCD /* WebProfilerAgent.cpp */; };
     935                1CC6B06D18F8526B0007ECCD /* WebProfilerAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC6B06B18F8526B0007ECCD /* WebProfilerAgent.h */; };
     936                1CC6B07018F8687A0007ECCD /* PageProfilerAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CC6B06E18F8687A0007ECCD /* PageProfilerAgent.cpp */; };
     937                1CC6B07118F8687A0007ECCD /* PageProfilerAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC6B06F18F8687A0007ECCD /* PageProfilerAgent.h */; };
     938                1CC6B07418F893A20007ECCD /* WorkerProfilerAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CC6B07218F893A20007ECCD /* WorkerProfilerAgent.cpp */; };
     939                1CC6B07518F893A20007ECCD /* WorkerProfilerAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC6B07318F893A20007ECCD /* WorkerProfilerAgent.h */; };
    934940                1CCA732210ADD44A00FD440D /* DOMHTMLInputElementPrivate.h in Copy Generated Headers */ = {isa = PBXBuildFile; fileRef = 1CCA732110ADD43E00FD440D /* DOMHTMLInputElementPrivate.h */; };
    935941                1CE83AC30ADAFFD7009354F6 /* DeleteButtonController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4C8EFF0AD85D87009475CE /* DeleteButtonController.cpp */; };
     
    35843590                9BF9A8801648DD2F001C6B23 /* JSHTMLFormControlsCollection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BF9A87E1648DD2F001C6B23 /* JSHTMLFormControlsCollection.cpp */; };
    35853591                9BF9A8811648DD2F001C6B23 /* JSHTMLFormControlsCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF9A87F1648DD2F001C6B23 /* JSHTMLFormControlsCollection.h */; };
    3586                 9F0D6B2E121BFEBA006C0288 /* InspectorProfilerAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F0D6B2C121BFEBA006C0288 /* InspectorProfilerAgent.cpp */; };
    3587                 9F0D6B2F121BFEBA006C0288 /* InspectorProfilerAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F0D6B2D121BFEBA006C0288 /* InspectorProfilerAgent.h */; };
    35883592                9F72304F11184B4100AD0126 /* ScriptProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F72304C11184B4100AD0126 /* ScriptProfile.h */; settings = {ATTRIBUTES = (Private, ); }; };
    3589                 9F72305011184B4100AD0126 /* ScriptProfiler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F72304D11184B4100AD0126 /* ScriptProfiler.cpp */; };
    3590                 9F72305111184B4100AD0126 /* ScriptProfiler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F72304E11184B4100AD0126 /* ScriptProfiler.h */; settings = {ATTRIBUTES = (Private, ); }; };
    35913593                9FA37EE41172FC8000C4CD55 /* ScriptProfileNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA37EE31172FC8000C4CD55 /* ScriptProfileNode.h */; settings = {ATTRIBUTES = (Private, ); }; };
    35923594                9FA37EFA1172FDA600C4CD55 /* JSScriptProfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FA37EF61172FD9300C4CD55 /* JSScriptProfile.cpp */; };
     
    61266128                F12171F616A8CF0B000053CA /* WebVTTElement.h in Headers */ = {isa = PBXBuildFile; fileRef = F12171F416A8BC63000053CA /* WebVTTElement.h */; };
    61276129                F293B27E56C112F373FFF27E /* DNSResolveQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C60128060078BB70E367A95 /* DNSResolveQueue.cpp */; };
    6128                 F33F0282120947F200E5743A /* ScriptProfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F33F0281120947F200E5743A /* ScriptProfile.cpp */; };
    61296130                F344C7141125B82C00F26EEE /* InspectorFrontendClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F344C7121125B82C00F26EEE /* InspectorFrontendClient.h */; settings = {ATTRIBUTES = (Private, ); }; };
    61306131                F344C75311294D9D00F26EEE /* InspectorFrontendClientLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = F344C75211294D9D00F26EEE /* InspectorFrontendClientLocal.h */; settings = {ATTRIBUTES = (Private, ); }; };
     
    77987799                1CAF347F0A6C405200ABE06E /* WebScriptObject.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebScriptObject.mm; sourceTree = "<group>"; };
    77997800                1CAF34800A6C405200ABE06E /* WebScriptObjectPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebScriptObjectPrivate.h; sourceTree = "<group>"; };
     7801                1CC6B06A18F8526B0007ECCD /* WebProfilerAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebProfilerAgent.cpp; sourceTree = "<group>"; };
     7802                1CC6B06B18F8526B0007ECCD /* WebProfilerAgent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebProfilerAgent.h; sourceTree = "<group>"; };
     7803                1CC6B06E18F8687A0007ECCD /* PageProfilerAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PageProfilerAgent.cpp; sourceTree = "<group>"; };
     7804                1CC6B06F18F8687A0007ECCD /* PageProfilerAgent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PageProfilerAgent.h; sourceTree = "<group>"; };
     7805                1CC6B07218F893A20007ECCD /* WorkerProfilerAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WorkerProfilerAgent.cpp; sourceTree = "<group>"; };
     7806                1CC6B07318F893A20007ECCD /* WorkerProfilerAgent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkerProfilerAgent.h; sourceTree = "<group>"; };
    78007807                1CCA732110ADD43E00FD440D /* DOMHTMLInputElementPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOMHTMLInputElementPrivate.h; sourceTree = "<group>"; };
    78017808                1CD0B6200AABDB5000D0A3FF /* PublicDOMInterfaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublicDOMInterfaces.h; sourceTree = "<group>"; };
     
    1063910646                9BF9A87E1648DD2F001C6B23 /* JSHTMLFormControlsCollection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLFormControlsCollection.cpp; sourceTree = "<group>"; };
    1064010647                9BF9A87F1648DD2F001C6B23 /* JSHTMLFormControlsCollection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSHTMLFormControlsCollection.h; sourceTree = "<group>"; };
    10641                 9F0D6B2C121BFEBA006C0288 /* InspectorProfilerAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorProfilerAgent.cpp; sourceTree = "<group>"; };
    10642                 9F0D6B2D121BFEBA006C0288 /* InspectorProfilerAgent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorProfilerAgent.h; sourceTree = "<group>"; };
    1064310648                9F72304C11184B4100AD0126 /* ScriptProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScriptProfile.h; sourceTree = "<group>"; };
    10644                 9F72304D11184B4100AD0126 /* ScriptProfiler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScriptProfiler.cpp; sourceTree = "<group>"; };
    10645                 9F72304E11184B4100AD0126 /* ScriptProfiler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScriptProfiler.h; sourceTree = "<group>"; };
    1064610649                9FA37EE31172FC8000C4CD55 /* ScriptProfileNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScriptProfileNode.h; sourceTree = "<group>"; };
    1064710650                9FA37EEF1172FD4100C4CD55 /* ScriptProfile.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScriptProfile.idl; sourceTree = "<group>"; };
     
    1353613539                F12171F316A8BC63000053CA /* WebVTTElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebVTTElement.cpp; sourceTree = "<group>"; };
    1353713540                F12171F416A8BC63000053CA /* WebVTTElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebVTTElement.h; sourceTree = "<group>"; };
    13538                 F33F0281120947F200E5743A /* ScriptProfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScriptProfile.cpp; sourceTree = "<group>"; };
    1353913541                F344C7121125B82C00F26EEE /* InspectorFrontendClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFrontendClient.h; sourceTree = "<group>"; };
    1354013542                F344C75211294D9D00F26EEE /* InspectorFrontendClientLocal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorFrontendClientLocal.h; sourceTree = "<group>"; };
     
    1502415026                                4F6FDD621341DEDD001F8EE3 /* InspectorPageAgent.cpp */,
    1502515027                                4F6FDD631341DEDD001F8EE3 /* InspectorPageAgent.h */,
    15026                                 9F0D6B2C121BFEBA006C0288 /* InspectorProfilerAgent.cpp */,
    15027                                 9F0D6B2D121BFEBA006C0288 /* InspectorProfilerAgent.h */,
    1502815028                                99CC0B6418BE9F15006CEBCC /* InspectorReplayAgent.cpp */,
    1502915029                                99CC0B6518BE9F15006CEBCC /* InspectorReplayAgent.h */,
     
    1504815048                                F34742DA134362F000531BC2 /* PageDebuggerAgent.cpp */,
    1504915049                                F34742DB134362F000531BC2 /* PageDebuggerAgent.h */,
     15050                                1CC6B06E18F8687A0007ECCD /* PageProfilerAgent.cpp */,
     15051                                1CC6B06F18F8687A0007ECCD /* PageProfilerAgent.h */,
    1505015052                                F382088C147D35F90010BC06 /* PageRuntimeAgent.cpp */,
    1505115053                                F382088D147D35F90010BC06 /* PageRuntimeAgent.h */,
     
    1506415066                                A584FE2D1864CB8400843B10 /* WebInjectedScriptManager.cpp */,
    1506515067                                A584FE2E1864CB8400843B10 /* WebInjectedScriptManager.h */,
     15068                                1CC6B06A18F8526B0007ECCD /* WebProfilerAgent.cpp */,
     15069                                1CC6B06B18F8526B0007ECCD /* WebProfilerAgent.h */,
    1506615070                                F382088E147D35F90010BC06 /* WorkerConsoleAgent.cpp */,
    1506715071                                F382088F147D35F90010BC06 /* WorkerConsoleAgent.h */,
     
    1507015074                                F36E07A21358A8BE00AACBC9 /* WorkerInspectorController.cpp */,
    1507115075                                F36E07A31358A8BE00AACBC9 /* WorkerInspectorController.h */,
     15076                                1CC6B07218F893A20007ECCD /* WorkerProfilerAgent.cpp */,
     15077                                1CC6B07318F893A20007ECCD /* WorkerProfilerAgent.h */,
    1507215078                                F3820890147D35F90010BC06 /* WorkerRuntimeAgent.cpp */,
    1507315079                                F3820891147D35F90010BC06 /* WorkerRuntimeAgent.h */,
     
    2045620462                                41F066E30F64BCF600A07EAC /* ScriptGlobalObject.cpp */,
    2045720463                                41F066E20F64BCF600A07EAC /* ScriptGlobalObject.h */,
    20458                                 F33F0281120947F200E5743A /* ScriptProfile.cpp */,
    2045920464                                9F72304C11184B4100AD0126 /* ScriptProfile.h */,
    2046020465                                9FA37EE31172FC8000C4CD55 /* ScriptProfileNode.h */,
    20461                                 9F72304D11184B4100AD0126 /* ScriptProfiler.cpp */,
    20462                                 9F72304E11184B4100AD0126 /* ScriptProfiler.h */,
    2046320466                                934CC1090EDB223900A658F2 /* ScriptSourceCode.h */,
    2046420467                                4127D5360F8AAB1D00E424F5 /* ScriptState.cpp */,
     
    2386523868                                26C17A3E1491D2D400D12BA2 /* FileSystemIOS.h in Headers */,
    2386623869                                976D6C8E122B8A3D001FD1F7 /* FileThread.h in Headers */,
     23870                                1CC6B06D18F8526B0007ECCD /* WebProfilerAgent.h in Headers */,
    2386723871                                976D6C8F122B8A3D001FD1F7 /* FileThreadTask.h in Headers */,
    2386823872                                BC5EB69F0E81DAEB00B25965 /* FillLayer.h in Headers */,
     
    2424024244                                0F03C0751884805500A5F8CA /* InspectorOverlay.h in Headers */,
    2424124245                                4F6FDD651341DEDD001F8EE3 /* InspectorPageAgent.h in Headers */,
    24242                                 9F0D6B2F121BFEBA006C0288 /* InspectorProfilerAgent.h in Headers */,
    2424324246                                99CC0B6718BE9F15006CEBCC /* InspectorReplayAgent.h in Headers */,
    2424424247                                82AB1776125C826700C5069D /* InspectorResourceAgent.h in Headers */,
     
    2545125454                                9F72304F11184B4100AD0126 /* ScriptProfile.h in Headers */,
    2545225455                                9FA37EE41172FC8000C4CD55 /* ScriptProfileNode.h in Headers */,
    25453                                 9F72305111184B4100AD0126 /* ScriptProfiler.h in Headers */,
    2545425456                                8A413AE01207BBA50082016E /* ScriptRunner.h in Headers */,
    2545525457                                934CC10A0EDB223900A658F2 /* ScriptSourceCode.h in Headers */,
     
    2562425626                                C5102D940FD9AA2D00FAFF04 /* StorageSyncManager.h in Headers */,
    2562525627                                511F231A0DC160DA004F0032 /* StorageThread.h in Headers */,
     25628                                1CC6B07118F8687A0007ECCD /* PageProfilerAgent.h in Headers */,
    2562625629                                3AB02D2A12D4F91600FBB694 /* StorageTracker.h in Headers */,
    2562725630                                3AC3680012EF7A09006A3D6F /* StorageTrackerClient.h in Headers */,
     
    2597725980                                CDA07FC218E0A22B004699FA /* SystemSleepListenerMac.h in Headers */,
    2597825981                                93F198F608245E59001E9ABC /* TextResourceDecoder.h in Headers */,
     25982                                1CC6B07518F893A20007ECCD /* WorkerProfilerAgent.h in Headers */,
    2597925983                                A824B4650E2EF2EA0081A7B7 /* TextRun.h in Headers */,
    2598025984                                448B1B7A0F3A2F9B0047A9E2 /* TextSizeAdjustment.h in Headers */,
     
    2725227256                                F55B3DBB1251F12D003EF269 /* EmailInputType.cpp in Sources */,
    2725327257                                F52AD5E41534245F0059FBE6 /* EmptyClients.cpp in Sources */,
     27258                                1CC6B07018F8687A0007ECCD /* PageProfilerAgent.cpp in Sources */,
    2725427259                                A8EA7EC10A1945D000A8EF5F /* EntityReference.cpp in Sources */,
    2725527260                                FD31609212B026F700C1A359 /* EqualPowerPanner.cpp in Sources */,
     
    2763827643                                7C522D4B15B477E8009B7C95 /* InspectorOverlay.cpp in Sources */,
    2763927644                                4F6FDD641341DEDD001F8EE3 /* InspectorPageAgent.cpp in Sources */,
    27640                                 9F0D6B2E121BFEBA006C0288 /* InspectorProfilerAgent.cpp in Sources */,
    2764127645                                99CC0B6618BE9F15006CEBCC /* InspectorReplayAgent.cpp in Sources */,
    2764227646                                82AB1775125C826700C5069D /* InspectorResourceAgent.cpp in Sources */,
     
    2821228216                                B2FA3DE00AB75A6F000E5AC4 /* JSSVGPatternElement.cpp in Sources */,
    2821328217                                8542A7960AE5C94200DF58DF /* JSSVGPoint.cpp in Sources */,
     28218                                1CC6B06C18F8526B0007ECCD /* WebProfilerAgent.cpp in Sources */,
    2821428219                                B2FA3DE20AB75A6F000E5AC4 /* JSSVGPointList.cpp in Sources */,
    2821528220                                B2FA3DE50AB75A6F000E5AC4 /* JSSVGPolygonElement.cpp in Sources */,
     
    2856428569                                447958051643B4B2001E0A7F /* ParsedContentType.cpp in Sources */,
    2856528570                                F55B3DC91251F12D003EF269 /* PasswordInputType.cpp in Sources */,
     28571                                1CC6B07418F893A20007ECCD /* WorkerProfilerAgent.cpp in Sources */,
    2856628572                                E453901E0EAFCACA003695C8 /* PasteboardIOS.mm in Sources */,
    2856728573                                4B2709830AF2E5E00065127F /* PasteboardMac.mm in Sources */,
     
    2883528841                                41F066E50F64BCF600A07EAC /* ScriptGlobalObject.cpp in Sources */,
    2883628842                                FD31603512B0267600C1A359 /* ScriptProcessorNode.cpp in Sources */,
    28837                                 F33F0282120947F200E5743A /* ScriptProfile.cpp in Sources */,
    28838                                 9F72305011184B4100AD0126 /* ScriptProfiler.cpp in Sources */,
    2883928843                                8A413AE11207BBA50082016E /* ScriptRunner.cpp in Sources */,
    2884028844                                4127D5370F8AAB1D00E424F5 /* ScriptState.cpp in Sources */,
  • trunk/Source/WebCore/bindings/js/JSBindingsAllInOne.cpp

    r167528 r167530  
    144144#include "ScriptCachedFrameData.cpp"
    145145#include "ScriptController.cpp"
    146 #include "ScriptProfiler.cpp"
    147146#include "ScriptState.cpp"
    148147#include "SerializedScriptValue.cpp"
  • trunk/Source/WebCore/bindings/js/ScriptProfile.h

    r165676 r167530  
    2828#define ScriptProfile_h
    2929
    30 #include "ScriptProfileNode.h"
    31 #include <wtf/Forward.h>
    32 #include <wtf/PassRefPtr.h>
    33 #include <wtf/RefCounted.h>
    34 #include <wtf/RefPtr.h>
    35 
    36 #if ENABLE(INSPECTOR)
    37 #include "InspectorWebTypeBuilders.h"
    38 #endif
    39 
    40 namespace JSC {
    41 class Profile;
    42 }
     30#include <profiler/Profile.h>
    4331
    4432namespace WebCore {
    4533
    46 class ScriptProfile : public RefCounted<ScriptProfile> {
    47 public:
    48     static PassRefPtr<ScriptProfile> create(PassRefPtr<JSC::Profile> profile);
    49     virtual ~ScriptProfile();
    50 
    51     String title() const;
    52     unsigned int uid() const;
    53     ScriptProfileNode* head() const;
    54     double idleTime() const;
    55 
    56 #if ENABLE(INSPECTOR)
    57     PassRefPtr<Inspector::TypeBuilder::Profiler::CPUProfile> buildInspectorObject() const;
    58 #endif
    59 
    60 private:
    61     ScriptProfile(PassRefPtr<JSC::Profile> profile);
    62 
    63     RefPtr<JSC::Profile> m_profile;
    64 };
     34typedef JSC::Profile ScriptProfile;
    6535
    6636} // namespace WebCore
  • trunk/Source/WebCore/inspector/InspectorAllInOne.cpp

    r167133 r167530  
    4949#include "InspectorOverlay.cpp"
    5050#include "InspectorPageAgent.cpp"
    51 #include "InspectorProfilerAgent.cpp"
    5251#include "InspectorResourceAgent.cpp"
    5352#include "InspectorStyleSheet.cpp"
     
    5958#include "PageConsoleAgent.cpp"
    6059#include "PageDebuggerAgent.cpp"
     60#include "PageProfilerAgent.cpp"
    6161#include "PageRuntimeAgent.cpp"
    6262#include "PageScriptDebugServer.cpp"
     
    6666#include "WebInjectedScriptHost.cpp"
    6767#include "WebInjectedScriptManager.cpp"
     68#include "WebProfilerAgent.cpp"
    6869#include "WorkerConsoleAgent.cpp"
    6970#include "WorkerDebuggerAgent.cpp"
    7071#include "WorkerInspectorController.cpp"
     72#include "WorkerProfilerAgent.cpp"
    7173#include "WorkerRuntimeAgent.cpp"
  • trunk/Source/WebCore/inspector/InspectorConsoleInstrumentation.h

    r163568 r167530  
    174174}
    175175
    176 inline void InspectorInstrumentation::addStartProfilingMessageToConsole(Page* page, const String& title, unsigned lineNumber, unsigned columnNumber, const String& sourceURL)
    177 {
    178 #if ENABLE(INSPECTOR)
    179     if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
    180         addStartProfilingMessageToConsoleImpl(instrumentingAgents, title, lineNumber, columnNumber, sourceURL);
    181 #else
    182     UNUSED_PARAM(page);
    183     UNUSED_PARAM(title);
    184     UNUSED_PARAM(lineNumber);
    185     UNUSED_PARAM(columnNumber);
    186     UNUSED_PARAM(sourceURL);
    187 #endif
    188 }
    189 
    190 inline void InspectorInstrumentation::addProfile(Page* page, PassRefPtr<ScriptProfile> profile, PassRefPtr<Inspector::ScriptCallStack> callStack)
    191 {
    192 #if ENABLE(INSPECTOR)
    193     if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
    194         addProfileImpl(instrumentingAgents, profile, callStack);
    195 #else
    196     UNUSED_PARAM(page);
    197     UNUSED_PARAM(profile);
    198     UNUSED_PARAM(callStack);
    199 #endif
    200 }
    201 
    202 inline bool InspectorInstrumentation::profilerEnabled(Page* page)
    203 {
    204 #if ENABLE(INSPECTOR)
    205     if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
    206         return profilerEnabledImpl(instrumentingAgents);
    207 #else
    208     UNUSED_PARAM(page);
    209 #endif
    210     return false;
    211 }
    212 
    213 inline String InspectorInstrumentation::getCurrentUserInitiatedProfileName(Page* page, bool incrementProfileNumber)
    214 {
    215 #if ENABLE(INSPECTOR)
    216     if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
    217         return InspectorInstrumentation::getCurrentUserInitiatedProfileNameImpl(instrumentingAgents, incrementProfileNumber);
    218 #else
    219     UNUSED_PARAM(page);
    220     UNUSED_PARAM(incrementProfileNumber);
    221 #endif
    222     return "";
     176inline void InspectorInstrumentation::startProfiling(Page* page, JSC::ExecState* exec, const String &title)
     177{
     178#if ENABLE(INSPECTOR)
     179    if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
     180        startProfilingImpl(instrumentingAgents, exec, title);
     181#else
     182    UNUSED_PARAM(page);
     183    UNUSED_PARAM(title);
     184#endif
     185}
     186
     187inline PassRefPtr<JSC::Profile> InspectorInstrumentation::stopProfiling(Page* page, JSC::ExecState* exec, const String &title)
     188{
     189#if ENABLE(INSPECTOR)
     190    if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
     191        return stopProfilingImpl(instrumentingAgents, exec, title);
     192#else
     193    UNUSED_PARAM(page);
     194    UNUSED_PARAM(title);
     195#endif
     196    return nullptr;
    223197}
    224198
  • trunk/Source/WebCore/inspector/InspectorController.cpp

    r167133 r167530  
    5151#include "InspectorOverlay.h"
    5252#include "InspectorPageAgent.h"
    53 #include "InspectorProfilerAgent.h"
    5453#include "InspectorReplayAgent.h"
    5554#include "InspectorResourceAgent.h"
     
    6665#include "PageConsoleAgent.h"
    6766#include "PageDebuggerAgent.h"
     67#include "PageProfilerAgent.h"
    6868#include "PageRuntimeAgent.h"
    6969#include "PageScriptDebugServer.h"
     
    155155    m_agents.append(std::move(domDebuggerAgentPtr));
    156156
    157     auto profilerAgentPtr = InspectorProfilerAgent::create(m_instrumentingAgents.get(), consoleAgent, &page, m_injectedScriptManager.get());
     157    auto profilerAgentPtr = std::make_unique<PageProfilerAgent>(m_instrumentingAgents.get(), &page);
    158158    m_profilerAgent = profilerAgentPtr.get();
    159159    m_agents.append(std::move(profilerAgentPtr));
     
    176176
    177177    runtimeAgent->setScriptDebugServer(&m_debuggerAgent->scriptDebugServer());
     178    timelineAgent->setPageScriptDebugServer(&m_debuggerAgent->scriptDebugServer());
    178179    m_profilerAgent->setScriptDebugServer(&m_debuggerAgent->scriptDebugServer());
    179     timelineAgent->setPageScriptDebugServer(&m_debuggerAgent->scriptDebugServer());
    180180}
    181181
  • trunk/Source/WebCore/inspector/InspectorController.h

    r167133 r167530  
    4747class InspectorBackendDispatcher;
    4848class InspectorFrontendChannel;
     49class InspectorProfilerAgent;
    4950class InspectorObject;
    5051}
     
    6162class InspectorOverlay;
    6263class InspectorPageAgent;
    63 class InspectorProfilerAgent;
    6464class InspectorResourceAgent;
    6565class InstrumentingAgents;
     
    145145    PageDebuggerAgent* m_debuggerAgent;
    146146    InspectorDOMDebuggerAgent* m_domDebuggerAgent;
    147     InspectorProfilerAgent* m_profilerAgent;
     147    Inspector::InspectorProfilerAgent* m_profilerAgent;
    148148
    149149    RefPtr<Inspector::InspectorBackendDispatcher> m_inspectorBackendDispatcher;
  • trunk/Source/WebCore/inspector/InspectorInstrumentation.cpp

    r166880 r167530  
    5151#include "InspectorLayerTreeAgent.h"
    5252#include "InspectorPageAgent.h"
    53 #include "InspectorProfilerAgent.h"
    5453#include "InspectorResourceAgent.h"
    5554#include "InspectorTimelineAgent.h"
     
    6261#include "RenderView.h"
    6362#include "ScriptController.h"
    64 #include "ScriptProfile.h"
    6563#include "StyleResolver.h"
    6664#include "StyleRule.h"
     
    7371#include <inspector/ScriptCallStack.h>
    7472#include <inspector/agents/InspectorDebuggerAgent.h>
     73#include <inspector/agents/InspectorProfilerAgent.h>
     74#include <profiler/Profile.h>
    7575#include <runtime/ConsoleTypes.h>
    7676#include <wtf/StdLibExtras.h>
     
    774774        if (InspectorResourceAgent* resourceAgent = instrumentingAgents->inspectorResourceAgent())
    775775            resourceAgent->mainFrameNavigated(loader);
     776
    776777        if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent())
    777             profilerAgent->resetState();
     778            profilerAgent->reset();
     779
    778780        if (InspectorCSSAgent* cssAgent = instrumentingAgents->inspectorCSSAgent())
    779781            cssAgent->reset();
     782
    780783#if ENABLE(SQL_DATABASE)
    781784        if (InspectorDatabaseAgent* databaseAgent = instrumentingAgents->inspectorDatabaseAgent())
    782785            databaseAgent->clearResources();
    783786#endif
     787
    784788        if (InspectorDOMAgent* domAgent = instrumentingAgents->inspectorDOMAgent())
    785789            domAgent->setDocument(page->mainFrame().document());
     790
    786791        if (InspectorLayerTreeAgent* layerTreeAgent = instrumentingAgents->inspectorLayerTreeAgent())
    787792            layerTreeAgent->reset();
    788793    }
     794
    789795    if (InspectorDOMAgent* domAgent = instrumentingAgents->inspectorDOMAgent())
    790796        domAgent->didCommitLoad(loader->frame()->document());
     797
    791798    if (InspectorPageAgent* pageAgent = instrumentingAgents->inspectorPageAgent())
    792799        pageAgent->frameNavigated(loader);
     800
    793801#if ENABLE(WEB_REPLAY)
    794802    if (InspectorReplayAgent* replayAgent = instrumentingAgents->inspectorReplayAgent())
     
    942950}
    943951
    944 void InspectorInstrumentation::addStartProfilingMessageToConsoleImpl(InstrumentingAgents* instrumentingAgents, const String& title, unsigned lineNumber, unsigned columnNumber, const String& sourceURL)
     952void InspectorInstrumentation::startProfilingImpl(InstrumentingAgents* instrumentingAgents, JSC::ExecState* exec, const String& title)
    945953{
    946954    if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent())
    947         profilerAgent->addStartProfilingMessageToConsole(title, lineNumber, columnNumber, sourceURL);
    948 }
    949 
    950 void InspectorInstrumentation::addProfileImpl(InstrumentingAgents* instrumentingAgents, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
    951 {
    952     if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent()) {
    953         const ScriptCallFrame& lastCaller = callStack->at(0);
    954         profilerAgent->addProfile(profile, lastCaller.lineNumber(), lastCaller.columnNumber(), lastCaller.sourceURL());
    955     }
    956 }
    957 
    958 String InspectorInstrumentation::getCurrentUserInitiatedProfileNameImpl(InstrumentingAgents* instrumentingAgents, bool incrementProfileNumber)
     955        profilerAgent->startProfiling(title, exec);
     956}
     957
     958PassRefPtr<JSC::Profile> InspectorInstrumentation::stopProfilingImpl(InstrumentingAgents* instrumentingAgents, JSC::ExecState* exec, const String& title)
    959959{
    960960    if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent())
    961         return profilerAgent->getCurrentUserInitiatedProfileName(incrementProfileNumber);
    962     return "";
    963 }
    964 
    965 bool InspectorInstrumentation::profilerEnabledImpl(InstrumentingAgents* instrumentingAgents)
    966 {
    967     if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent())
    968         return profilerAgent->enabled();
    969     return false;
     961        return profilerAgent->stopProfiling(title, exec);
     962    return nullptr;
    970963}
    971964
  • trunk/Source/WebCore/inspector/InspectorInstrumentation.h

    r166846 r167530  
    6262}
    6363
     64namespace JSC {
     65class Profile;
     66}
     67
    6468namespace WebCore {
    6569
     
    9094class ResourceResponse;
    9195class ScriptExecutionContext;
    92 class ScriptProfile;
    9396class SecurityOrigin;
    9497class ShadowRoot;
     
    231234    static void didFireAnimationFrame(const InspectorInstrumentationCookie&);
    232235
    233     static void addStartProfilingMessageToConsole(Page*, const String& title, unsigned lineNumber, unsigned columnNumber, const String& sourceURL);
    234     static void addProfile(Page*, PassRefPtr<ScriptProfile>, PassRefPtr<Inspector::ScriptCallStack>);
    235     static String getCurrentUserInitiatedProfileName(Page*, bool incrementProfileNumber);
    236     static bool profilerEnabled(Page*);
     236    static void startProfiling(Page*, JSC::ExecState*, const String& title);
     237    static PassRefPtr<JSC::Profile> stopProfiling(Page*, JSC::ExecState*, const String& title);
    237238
    238239#if ENABLE(SQL_DATABASE)
     
    430431    static void didFireAnimationFrameImpl(const InspectorInstrumentationCookie&);
    431432
    432     static void addStartProfilingMessageToConsoleImpl(InstrumentingAgents*, const String& title, unsigned lineNumber, unsigned columnNumber, const String& sourceURL);
    433     static void addProfileImpl(InstrumentingAgents*, RefPtr<ScriptProfile>, PassRefPtr<Inspector::ScriptCallStack>);
    434     static String getCurrentUserInitiatedProfileNameImpl(InstrumentingAgents*, bool incrementProfileNumber);
    435     static bool profilerEnabledImpl(InstrumentingAgents*);
     433    static void startProfilingImpl(InstrumentingAgents*, JSC::ExecState*, const String& title);
     434    static PassRefPtr<JSC::Profile> stopProfilingImpl(InstrumentingAgents*, JSC::ExecState*, const String& title);
    436435
    437436#if ENABLE(SQL_DATABASE)
  • trunk/Source/WebCore/inspector/InspectorTimelineAgent.cpp

    r167133 r167530  
    5151#include "ResourceRequest.h"
    5252#include "ResourceResponse.h"
    53 #include "ScriptProfiler.h"
    5453#include "ScriptState.h"
    5554#include "TimelineRecordFactory.h"
    5655#include <inspector/IdentifiersFactory.h>
    5756#include <inspector/ScriptBreakpoint.h>
     57#include <profiler/LegacyProfiler.h>
    5858#include <wtf/CurrentTime.h>
    5959
     
    130130}
    131131
     132static inline void startProfiling(Frame* frame, const String& title)
     133{
     134    JSC::LegacyProfiler::profiler()->startProfiling(toJSDOMWindow(frame, debuggerWorld())->globalExec(), title);
     135}
     136
     137static inline PassRefPtr<JSC::Profile> stopProfiling(Frame* frame, const String& title)
     138{
     139    return JSC::LegacyProfiler::profiler()->stopProfiling(toJSDOMWindow(frame, debuggerWorld())->globalExec(), title);
     140}
     141
    132142void InspectorTimelineAgent::willCallFunction(const String& scriptName, int scriptLine, Frame* frame)
    133143{
     
    136146    if (frame && !m_recordingProfile) {
    137147        m_recordingProfile = true;
    138         ScriptProfiler::start(toJSDOMWindow(frame, debuggerWorld())->globalExec(), ASCIILiteral("Timeline FunctionCall"));
     148        startProfiling(frame, ASCIILiteral("Timeline FunctionCall"));
    139149    }
    140150}
     
    149159        ASSERT(entry.type == TimelineRecordType::FunctionCall);
    150160
    151         RefPtr<ScriptProfile> profile = ScriptProfiler::stop(toJSDOMWindow(frame, debuggerWorld())->globalExec(), ASCIILiteral("Timeline FunctionCall"));
     161        RefPtr<JSC::Profile> profile = stopProfiling(frame, ASCIILiteral("Timeline FunctionCall"));
    152162        if (profile)
    153163            TimelineRecordFactory::appendProfile(entry.data.get(), profile.release());
     
    307317    if (frame && !m_recordingProfile) {
    308318        m_recordingProfile = true;
    309         ScriptProfiler::start(toJSDOMWindow(frame, debuggerWorld())->globalExec(), ASCIILiteral("Timeline EvaluateScript"));
     319        startProfiling(frame, ASCIILiteral("Timeline EvaluateScript"));
    310320    }
    311321}
     
    320330        ASSERT(entry.type == TimelineRecordType::EvaluateScript);
    321331
    322         RefPtr<ScriptProfile> profile = ScriptProfiler::stop(toJSDOMWindow(frame, debuggerWorld())->globalExec(), ASCIILiteral("Timeline EvaluateScript"));
     332        RefPtr<JSC::Profile> profile = stopProfiling(frame, ASCIILiteral("Timeline EvaluateScript"));
    323333        if (profile)
    324334            TimelineRecordFactory::appendProfile(entry.data.get(), profile.release());
  • trunk/Source/WebCore/inspector/InstrumentingAgents.h

    r166622 r167530  
    4242class InspectorAgent;
    4343class InspectorDebuggerAgent;
     44class InspectorProfilerAgent;
    4445}
    4546
     
    5455class InspectorLayerTreeAgent;
    5556class InspectorPageAgent;
    56 class InspectorProfilerAgent;
    5757class InspectorResourceAgent;
    5858class InspectorReplayAgent;
     
    131131    void setInspectorDOMDebuggerAgent(InspectorDOMDebuggerAgent* agent) { m_inspectorDOMDebuggerAgent = agent; }
    132132
    133     InspectorProfilerAgent* inspectorProfilerAgent() const { return m_inspectorProfilerAgent; }
    134     void setInspectorProfilerAgent(InspectorProfilerAgent* agent) { m_inspectorProfilerAgent = agent; }
     133    Inspector::InspectorProfilerAgent* inspectorProfilerAgent() const { return m_inspectorProfilerAgent; }
     134    void setInspectorProfilerAgent(Inspector::InspectorProfilerAgent* agent) { m_inspectorProfilerAgent = agent; }
    135135
    136136    InspectorWorkerAgent* inspectorWorkerAgent() const { return m_inspectorWorkerAgent; }
     
    166166    PageDebuggerAgent* m_pageDebuggerAgent;
    167167    InspectorDOMDebuggerAgent* m_inspectorDOMDebuggerAgent;
    168     InspectorProfilerAgent* m_inspectorProfilerAgent;
     168    Inspector::InspectorProfilerAgent* m_inspectorProfilerAgent;
    169169    InspectorWorkerAgent* m_inspectorWorkerAgent;
    170170};
  • trunk/Source/WebCore/inspector/PageDebuggerAgent.cpp

    r167133 r167530  
    5757    , m_scriptDebugServer(*pageAgent->page())
    5858{
    59 }
    60 
    61 void PageDebuggerAgent::enable()
    62 {
    63     WebDebuggerAgent::enable();
    64     m_instrumentingAgents->setPageDebuggerAgent(this);
    65 }
    66 
    67 void PageDebuggerAgent::disable(bool isBeingDestroyed)
    68 {
    69     WebDebuggerAgent::disable(isBeingDestroyed);
    70     m_instrumentingAgents->setPageDebuggerAgent(nullptr);
    7159}
    7260
  • trunk/Source/WebCore/inspector/PageDebuggerAgent.h

    r167133 r167530  
    5757
    5858protected:
    59     virtual void enable() override;
    60     virtual void disable(bool isBeingDestroyed) override;
    61 
    6259    virtual String sourceMapURLForScript(const Script&) override;
    6360
  • trunk/Source/WebCore/inspector/PageProfilerAgent.cpp

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
    34 };
     26#include "config.h"
     27#include "PageProfilerAgent.h"
    3528
     29#if ENABLE(INSPECTOR)
     30
     31#include "JSDOMWindow.h"
     32#include "MainFrame.h"
     33#include "Page.h"
     34
     35using namespace Inspector;
     36
     37namespace WebCore {
     38
     39PageProfilerAgent::PageProfilerAgent(InstrumentingAgents* instrumentingAgents, Page* page)
     40    : WebProfilerAgent(instrumentingAgents)
     41    , m_inspectedPage(page)
     42{
     43}
     44
     45JSC::ExecState* PageProfilerAgent::profilingGlobalExecState() const
     46{
     47    return toJSDOMWindow(&m_inspectedPage->mainFrame(), debuggerWorld())->globalExec();
     48}
     49
     50} // namespace WebCore
     51
     52#endif // ENABLE(INSPECTOR)
  • trunk/Source/WebCore/inspector/PageProfilerAgent.h

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
     26#ifndef PageProfilerAgent_h
     27#define PageProfilerAgent_h
     28
     29#if ENABLE(INSPECTOR)
     30
     31#include "WebProfilerAgent.h"
     32
     33namespace WebCore {
     34
     35class Page;
     36
     37class PageProfilerAgent final : public WebProfilerAgent {
     38    WTF_MAKE_NONCOPYABLE(PageProfilerAgent);
     39    WTF_MAKE_FAST_ALLOCATED;
     40public:
     41    PageProfilerAgent(InstrumentingAgents*, Page*);
     42    virtual ~PageProfilerAgent() { }
     43
     44private:
     45    virtual JSC::ExecState* profilingGlobalExecState() const override;
     46
     47    Page* m_inspectedPage;
    3448};
    3549
     50} // namespace WebCore
     51
     52#endif // ENABLE(INSPECTOR)
     53
     54#endif // !defined(PageProfilerAgent_h)
  • trunk/Source/WebCore/inspector/ScriptProfile.idl

    r165676 r167530  
    2727[
    2828    NoInterfaceObject,
     29    SkipVTableValidation
    2930] interface ScriptProfile {
    3031    readonly attribute DOMString title;
  • trunk/Source/WebCore/inspector/TimelineRecordFactory.cpp

    r166827 r167530  
    4343#include "ResourceRequest.h"
    4444#include "ResourceResponse.h"
    45 #include "ScriptProfile.h"
    4645#include <inspector/InspectorValues.h>
    4746#include <inspector/ScriptBreakpoint.h>
    4847#include <inspector/ScriptCallStack.h>
    4948#include <inspector/ScriptCallStackFactory.h>
     49#include <inspector/agents/InspectorProfilerAgent.h>
    5050#include <wtf/CurrentTime.h>
    5151
     
    264264}
    265265
    266 void TimelineRecordFactory::appendProfile(InspectorObject* data, PassRefPtr<ScriptProfile> profile)
    267 {
    268     data->setValue(ASCIILiteral("profile"), profile->buildInspectorObject());
     266void TimelineRecordFactory::appendProfile(InspectorObject* data, PassRefPtr<JSC::Profile> profile)
     267{
     268    data->setValue(ASCIILiteral("profile"), InspectorProfilerAgent::buildProfileInspectorObject(profile.get()));
    269269}
    270270
  • trunk/Source/WebCore/inspector/TimelineRecordFactory.h

    r166827 r167530  
    3737#include <wtf/Forward.h>
    3838#include <wtf/text/WTFString.h>
     39
     40namespace JSC {
     41class Profile;
     42}
    3943
    4044namespace Inspector {
     
    101105        static void appendLayoutRoot(Inspector::InspectorObject* data, const FloatQuad&);
    102106
    103         static void appendProfile(Inspector::InspectorObject*, PassRefPtr<ScriptProfile>);
     107        static void appendProfile(Inspector::InspectorObject*, PassRefPtr<JSC::Profile>);
    104108
    105109#if ENABLE(WEB_SOCKETS)
  • trunk/Source/WebCore/inspector/WebConsoleAgent.cpp

    r166622 r167530  
    3434#include "ResourceError.h"
    3535#include "ResourceResponse.h"
    36 #include "ScriptProfiler.h"
    3736#include "ScriptState.h"
    3837#include "WebInjectedScriptManager.h"
  • trunk/Source/WebCore/inspector/WebProfilerAgent.cpp

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
    34 };
     26#include "config.h"
     27#include "WebProfilerAgent.h"
    3528
     29#if ENABLE(INSPECTOR)
     30
     31#include "InstrumentingAgents.h"
     32
     33using namespace Inspector;
     34
     35namespace WebCore {
     36
     37WebProfilerAgent::WebProfilerAgent(InstrumentingAgents* instrumentingAgents)
     38    : InspectorProfilerAgent()
     39    , m_instrumentingAgents(instrumentingAgents)
     40{
     41}
     42
     43void WebProfilerAgent::enable(ShouldRecompile shouldRecompile)
     44{
     45    InspectorProfilerAgent::enable(shouldRecompile);
     46    m_instrumentingAgents->setInspectorProfilerAgent(this);
     47}
     48
     49void WebProfilerAgent::disable(ShouldRecompile shouldRecompile)
     50{
     51    InspectorProfilerAgent::enable(shouldRecompile);
     52    m_instrumentingAgents->setInspectorProfilerAgent(nullptr);
     53}
     54
     55} // namespace WebCore
     56
     57#endif // ENABLE(INSPECTOR)
  • trunk/Source/WebCore/inspector/WebProfilerAgent.h

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
     26#ifndef WebProfilerAgent_h
     27#define WebProfilerAgent_h
     28
     29#if ENABLE(INSPECTOR)
     30
     31#include <inspector/agents/InspectorProfilerAgent.h>
     32
     33namespace WebCore {
     34
     35class InstrumentingAgents;
     36
     37class WebProfilerAgent : public Inspector::InspectorProfilerAgent {
     38    WTF_MAKE_NONCOPYABLE(WebProfilerAgent);
     39    WTF_MAKE_FAST_ALLOCATED;
     40public:
     41    WebProfilerAgent(InstrumentingAgents*);
     42    virtual ~WebProfilerAgent() { }
     43
     44    virtual void enable(ShouldRecompile) override final;
     45    virtual void disable(ShouldRecompile) override final;
     46
     47protected:
     48    InstrumentingAgents* m_instrumentingAgents;
    3449};
    3550
     51} // namespace WebCore
     52
     53#endif // ENABLE(INSPECTOR)
     54
     55#endif // !defined(WebProfilerAgent_h)
  • trunk/Source/WebCore/inspector/WorkerInspectorController.cpp

    r166622 r167530  
    3939#include "InspectorForwarding.h"
    4040#include "InspectorInstrumentation.h"
    41 #include "InspectorProfilerAgent.h"
    4241#include "InspectorTimelineAgent.h"
    4342#include "InspectorWebBackendDispatchers.h"
     
    5049#include "WorkerDebuggerAgent.h"
    5150#include "WorkerGlobalScope.h"
     51#include "WorkerProfilerAgent.h"
    5252#include "WorkerReportingProxy.h"
    5353#include "WorkerRuntimeAgent.h"
     
    9696    m_agents.append(std::move(debuggerAgent));
    9797
    98     m_agents.append(InspectorProfilerAgent::create(m_instrumentingAgents.get(), consoleAgent.get(), &workerGlobalScope, m_injectedScriptManager.get()));
     98    auto profilerAgent = std::make_unique<WorkerProfilerAgent>(m_instrumentingAgents.get(), &workerGlobalScope);
     99    profilerAgent->setScriptDebugServer(&debuggerAgent->scriptDebugServer());
     100    m_agents.append(std::move(profilerAgent));
     101
    99102    m_agents.append(std::make_unique<InspectorTimelineAgent>(m_instrumentingAgents.get(), nullptr, InspectorTimelineAgent::WorkerInspector, nullptr));
    100103    m_agents.append(std::move(consoleAgent));
  • trunk/Source/WebCore/inspector/WorkerProfilerAgent.cpp

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
    34 };
     26#include "config.h"
     27#include "WorkerProfilerAgent.h"
    3528
     29#if ENABLE(INSPECTOR)
     30
     31#include "JSDOMWindow.h"
     32#include "MainFrame.h"
     33#include "Page.h"
     34#include "ScriptState.h"
     35
     36using namespace Inspector;
     37
     38namespace WebCore {
     39
     40WorkerProfilerAgent::WorkerProfilerAgent(InstrumentingAgents* instrumentingAgents, WorkerGlobalScope* workerGlobalScope)
     41    : WebProfilerAgent(instrumentingAgents)
     42    , m_workerGlobalScope(workerGlobalScope)
     43{
     44}
     45
     46JSC::ExecState* WorkerProfilerAgent::profilingGlobalExecState() const
     47{
     48    return execStateFromWorkerGlobalScope(m_workerGlobalScope);
     49}
     50
     51} // namespace WebCore
     52
     53#endif // ENABLE(INSPECTOR)
  • trunk/Source/WebCore/inspector/WorkerProfilerAgent.h

    r167529 r167530  
    11/*
    2  * Copyright (C) 2010 Apple Inc. All rights reserved.
    3  * Copyright (C) 2010 Google Inc. All rights reserved.
     2 * Copyright (C) 2014 Apple Inc. All rights reserved.
    43 *
    54 * Redistribution and use in source and binary forms, with or without
     
    2524 */
    2625
    27 [
    28     NoInterfaceObject,
    29 ] interface ScriptProfile {
    30     readonly attribute DOMString title;
    31     readonly attribute unsigned long uid;
    32     readonly attribute ScriptProfileNode head;
    33     readonly attribute double idleTime;
     26#ifndef WorkerProfilerAgent_h
     27#define WorkerProfilerAgent_h
     28
     29#if ENABLE(INSPECTOR)
     30
     31#include "WebProfilerAgent.h"
     32
     33namespace WebCore {
     34
     35class WorkerGlobalScope;
     36
     37class WorkerProfilerAgent final : public WebProfilerAgent {
     38    WTF_MAKE_NONCOPYABLE(WorkerProfilerAgent);
     39    WTF_MAKE_FAST_ALLOCATED;
     40public:
     41    WorkerProfilerAgent(InstrumentingAgents*, WorkerGlobalScope*);
     42    virtual ~WorkerProfilerAgent() { }
     43
     44private:
     45    virtual JSC::ExecState* profilingGlobalExecState() const override;
     46
     47    WorkerGlobalScope* m_workerGlobalScope;
    3448};
    3549
     50} // namespace WebCore
     51
     52#endif // ENABLE(INSPECTOR)
     53
     54#endif // !defined(WorkerProfilerAgent_h)
  • trunk/Source/WebCore/loader/appcache/ApplicationCacheGroup.cpp

    r166844 r167530  
    4343#include "ResourceBuffer.h"
    4444#include "ResourceHandle.h"
    45 #include "ScriptProfile.h"
    4645#include "SecurityOrigin.h"
    4746#include "Settings.h"
  • trunk/Source/WebCore/page/PageConsole.cpp

    r166661 r167530  
    3939#include "MainFrame.h"
    4040#include "Page.h"
    41 #include "ScriptProfile.h"
    42 #include "ScriptProfiler.h"
    4341#include "ScriptableDocumentParser.h"
    4442#include "Settings.h"
     
    168166void PageConsole::profile(JSC::ExecState* exec, const String& title)
    169167{
    170     // FIXME: log a console message when profiling is disabled.
    171     if (!InspectorInstrumentation::profilerEnabled(&m_page))
    172         return;
    173 
    174     // If no title is given, build the next user initiated profile title.
    175     String resolvedTitle = title;
    176     if (title.isNull())
    177         resolvedTitle = InspectorInstrumentation::getCurrentUserInitiatedProfileName(&m_page, true);
    178 
    179     ScriptProfiler::start(exec, resolvedTitle);
    180 
    181     RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(exec, 1));
    182     const ScriptCallFrame& lastCaller = callStack->at(0);
    183     InspectorInstrumentation::addStartProfilingMessageToConsole(&m_page, resolvedTitle, lastCaller.lineNumber(), lastCaller.columnNumber(), lastCaller.sourceURL());
     168    InspectorInstrumentation::startProfiling(&m_page, exec, title);
    184169}
    185170
    186171void PageConsole::profileEnd(JSC::ExecState* exec, const String& title)
    187172{
    188     if (!InspectorInstrumentation::profilerEnabled(&m_page))
    189         return;
    190 
    191     RefPtr<ScriptProfile> profile = ScriptProfiler::stop(exec, title);
    192     if (!profile)
    193         return;
    194 
    195     m_profiles.append(profile);
    196     RefPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(exec, 1));
    197     InspectorInstrumentation::addProfile(&m_page, profile, callStack);
     173    RefPtr<JSC::Profile> profile = InspectorInstrumentation::stopProfiling(&m_page, exec, title);
     174    if (profile)
     175        m_profiles.append(profile.release());
    198176}
    199177
  • trunk/Source/WebCore/page/PageConsole.h

    r165676 r167530  
    3333#include <runtime/ConsoleClient.h>
    3434#include <wtf/Forward.h>
    35 #include <wtf/PassOwnPtr.h>
    3635
    3736namespace JSC {
    3837class ExecState;
     38class Profile;
    3939}
    4040
     
    4343class Document;
    4444class Page;
    45 class ScriptProfile;
    46 typedef Vector<RefPtr<ScriptProfile>> ProfilesArray;
     45
     46typedef Vector<RefPtr<JSC::Profile>> ProfilesArray;
    4747
    4848class PageConsole final : public JSC::ConsoleClient {
  • trunk/Source/WebCore/testing/Internals.cpp

    r167488 r167530  
    7575#include "MemoryInfo.h"
    7676#include "Page.h"
    77 #include "PageConsole.h"
    7877#include "PrintContext.h"
    7978#include "PseudoElement.h"
  • trunk/Source/WebCore/testing/Internals.h

    r167488 r167530  
    3232#include "ExceptionCodePlaceholder.h"
    3333#include "NodeList.h"
     34#include "PageConsole.h"
    3435#include <bindings/ScriptValue.h>
    3536#include <runtime/ArrayBuffer.h>
     
    5758class Range;
    5859class ScriptExecutionContext;
    59 class ScriptProfile;
    6060class SerializedScriptValue;
    6161class TimeRanges;
     
    6363
    6464typedef int ExceptionCode;
    65 typedef Vector<RefPtr<ScriptProfile>> ProfilesArray;
    6665
    6766class Internals : public RefCounted<Internals>
  • trunk/Source/WebCore/xml/XMLHttpRequest.cpp

    r166047 r167530  
    4545#include "ResourceRequest.h"
    4646#include "ScriptController.h"
    47 #include "ScriptProfile.h"
    4847#include "Settings.h"
    4948#include "SharedBuffer.h"
  • trunk/Source/WebKit/WebKit.vcxproj/WebKitExportGenerator/WebKitExports.def.in

    r167443 r167530  
    356356        symbolWithPointer(?pageSizeAndMarginsInPixels@PrintContext@WebCore@@SA?AVString@WTF@@PAVFrame@2@HHHHHHH@Z, ?pageSizeAndMarginsInPixels@PrintContext@WebCore@@SA?AVString@WTF@@PEAVFrame@2@HHHHHHH@Z)
    357357        symbolWithPointer(?close@DOMWindow@WebCore@@QAEXPAVScriptExecutionContext@2@@Z, ?close@DOMWindow@WebCore@@QEAAXPEAVScriptExecutionContext@2@@Z)
    358         symbolWithPointer(?toJS@WebCore@@YA?AVJSValue@JSC@@PAVExecState@3@PAVJSDOMGlobalObject@1@PAVScriptProfile@1@@Z, ?toJS@WebCore@@YA?AVJSValue@JSC@@PEAVExecState@3@PEAVJSDOMGlobalObject@1@PEAVScriptProfile@1@@Z)
     358        symbolWithPointer(?toJS@WebCore@@YA?AVJSValue@JSC@@PAVExecState@3@PAVJSDOMGlobalObject@1@PAVProfile@3@@Z, ?toJS@WebCore@@YA?AVJSValue@JSC@@PEAVExecState@3@PEAVJSDOMGlobalObject@1@PEAVProfile@3@@Z)
    359359        symbolWithPointer(?document@DOMWindow@WebCore@@QBEPAVDocument@2@XZ, ?document@DOMWindow@WebCore@@QEBAPEAVDocument@2@XZ)
    360360        symbolWithPointer(?open@DOMWindow@WebCore@@QAE?AV?$PassRefPtr@VDOMWindow@WebCore@@@WTF@@ABVString@4@ABVAtomicString@4@0AAV12@2@Z, ?open@DOMWindow@WebCore@@QEAA?AV?$PassRefPtr@VDOMWindow@WebCore@@@WTF@@AEBVString@4@AEBVAtomicString@4@0AEAV12@2@Z)
Note: See TracChangeset for help on using the changeset viewer.