/third_party/node/deps/v8/src/inspector/ |
H A D | v8-profiler-agent-impl.cc | 45 std::unique_ptr<protocol::Array<protocol::Profiler::PositionTickInfo>> 50 std::make_unique<protocol::Array<protocol::Profiler::PositionTickInfo>>(); in buildInspectorObjectForPositionTicks() 54 std::unique_ptr<protocol::Profiler::PositionTickInfo> line = in buildInspectorObjectForPositionTicks() 55 protocol::Profiler::PositionTickInfo::create() in buildInspectorObjectForPositionTicks() 65 std::unique_ptr<protocol::Profiler::ProfileNode> buildInspectorObjectFor( in buildInspectorObjectFor() 77 auto result = protocol::Profiler::ProfileNode::create() in buildInspectorObjectFor() 125 protocol::Array<protocol::Profiler::ProfileNode>* list) { in flattenNodesTree() 132 std::unique_ptr<protocol::Profiler::Profile> createCPUProfile( in createCPUProfile() 135 std::make_unique<protocol::Array<protocol::Profiler::ProfileNode>>(); in createCPUProfile() 137 return protocol::Profiler in createCPUProfile() [all...] |
H A D | v8-profiler-agent-impl.h | 13 #include "src/inspector/protocol/Profiler.h" 27 class V8ProfilerAgentImpl : public protocol::Profiler::Backend { 42 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; 49 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* 53 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* 59 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptTypeProfile>>* 71 std::unique_ptr<protocol::Profiler::Profile> stopProfiling( 78 protocol::Profiler::Frontend m_frontend;
|
H A D | v8-inspector-session-impl.cc | 74 protocol::Profiler::Metainfo::commandPrefix) || in canDispatchMethod() 124 this, this, agentState(protocol::Profiler::Metainfo::domainName))); in V8InspectorSessionImpl() 125 protocol::Profiler::Dispatcher::wire(&m_dispatcher, m_profilerAgent.get()); in V8InspectorSessionImpl() 426 .setName(protocol::Profiler::Metainfo::domainName) in supportedDomainsImpl() 427 .setVersion(protocol::Profiler::Metainfo::version) in supportedDomainsImpl()
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
H A D | Config.cpp | 22 Profiler profiler; 24 Profiler::Profiler() in Profiler() function in sw::Profiler 29 void Profiler::reset() in reset() 55 void Profiler::nextFrame() in nextFrame()
|
H A D | Config.hpp | 44 struct Profiler struct 46 Profiler(); 72 extern Profiler profiler;
|
H A D | SwiftConfig.cpp | 31 extern Profiler profiler;
|
/third_party/python/Lib/test/ |
H A D | test_cprofile.py | 26 obj = _lsprof.Profiler(lambda: int) 28 obj = _lsprof.Profiler(1)
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect_repl.js | 368 const { Debugger, HeapProfiler, Profiler, Runtime } = inspector; 936 Profiler.on('consoleProfileFinished', ({ profile }) => { 1009 return Profiler.start(); 1013 return PromisePrototypeThen(Profiler.stop(), 1181 await Profiler.enable(); 1182 await Profiler.setSamplingInterval({ interval: 100 });
|
/third_party/node/deps/v8/src/logging/ |
H A D | log.h | 68 class Profiler; 335 // points to a Profiler, that handles collection 337 std::unique_ptr<Profiler> profiler_; 340 friend class Profiler;
|
H A D | log.cc | 876 // The Profiler samples pc and sp values for the main thread. 881 class Profiler : public base::Thread { class 883 explicit Profiler(Isolate* isolate); 946 void SetProfiler(Profiler* profiler) { in SetProfiler() 973 Profiler* profiler_ = nullptr; 979 // Profiler implementation when invoking with --prof. 981 Profiler::Profiler(Isolate* isolate) in Profiler() function in v8::internal::Profiler 982 : base::Thread(Options("v8:Profiler")), in Profiler() 991 void Profiler [all...] |
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/aes/ |
H A D | aes-armv4.S | 38 @ Profiler-assisted and platform-specific optimization resulted in 16%
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/sha/ |
H A D | sha512-armv4.S | 31 @ Profiler-assisted and platform-specific optimization resulted in 7%
|
H A D | sha256-armv4.S | 31 @ Profiler-assisted and platform-specific optimization resulted in 16%
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/aes/ |
H A D | aes-armv4.S | 38 @ Profiler-assisted and platform-specific optimization resulted in 16%
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/sha/ |
H A D | sha512-armv4.S | 31 @ Profiler-assisted and platform-specific optimization resulted in 7%
|
H A D | sha256-armv4.S | 31 @ Profiler-assisted and platform-specific optimization resulted in 16%
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | GCOVProfiling.cpp | 147 : ModulePass(ID), Profiler(Opts) { in GCOVProfilerLegacyPass() 150 StringRef getPassName() const override { return "GCOV Profiler"; } 153 return Profiler.runOnModule(M, [this](Function &F) -> TargetLibraryInfo & { 163 GCOVProfiler Profiler; member 581 GCOVProfiler Profiler(GCOVOpts); 585 if (!Profiler.runOnModule(M, [&](Function &F) -> TargetLibraryInfo & {
|
/third_party/python/Lib/ |
H A D | cProfile.py | 28 class Profile(_lsprof.Profiler):
|