Home | History | Annotate | Download | only in src

Lines Matching defs:CpuProfiler

262 void CpuProfiler::StartProfiling(const char* title) {
268 void CpuProfiler::StartProfiling(String* title) {
274 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
281 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) {
289 int CpuProfiler::GetProfilesCount() {
297 CpuProfile* CpuProfiler::GetProfile(Object* security_token, int index) {
299 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
305 CpuProfile* CpuProfiler::FindProfile(Object* security_token, unsigned uid) {
307 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
313 TickSample* CpuProfiler::TickSampleEvent(Isolate* isolate) {
314 if (CpuProfiler::is_profiling(isolate)) {
322 void CpuProfiler::DeleteAllProfiles() {
332 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
339 bool CpuProfiler::HasDetachedProfiles() {
345 void CpuProfiler::CallbackEvent(String* name, Address entry_point) {
351 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
358 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
372 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
388 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
403 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag,
413 void CpuProfiler::CodeMoveEvent(Address from, Address to) {
418 void CpuProfiler::CodeDeleteEvent(Address from) {
422 void CpuProfiler::SharedFunctionInfoMoveEvent(Address from, Address to) {
423 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
428 void CpuProfiler::GetterCallbackEvent(String* name, Address entry_point) {
434 void CpuProfiler::RegExpCodeCreateEvent(Code* code, String* source) {
444 void CpuProfiler::SetterCallbackEvent(String* name, Address entry_point) {
450 CpuProfiler::CpuProfiler()
461 CpuProfiler::~CpuProfiler() {
467 void CpuProfiler::ResetProfiles() {
472 void CpuProfiler::StartCollectingProfile(const char* title) {
480 void CpuProfiler::StartCollectingProfile(String* title) {
485 void CpuProfiler::StartProcessorIfNotStarted() {
518 CpuProfile* CpuProfiler::StopCollectingProfile(const char* title) {
532 CpuProfile* CpuProfiler::StopCollectingProfile(Object* security_token,
542 void CpuProfiler::StopProcessorIfLastProfile(const char* title) {
547 void CpuProfiler::StopProcessor() {
566 void CpuProfiler::SetUp() {
569 isolate->set_cpu_profiler(new CpuProfiler());
574 void CpuProfiler::TearDown() {