| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 } | 246 } |
| 247 | 247 |
| 248 | 248 |
| 249 void CpuProfiler::StartProfiling(String* title) { | 249 void CpuProfiler::StartProfiling(String* title) { |
| 250 ASSERT(singleton_ != NULL); | 250 ASSERT(singleton_ != NULL); |
| 251 singleton_->StartCollectingProfile(title); | 251 singleton_->StartCollectingProfile(title); |
| 252 } | 252 } |
| 253 | 253 |
| 254 | 254 |
| 255 CpuProfile* CpuProfiler::StopProfiling(const char* title) { | 255 CpuProfile* CpuProfiler::StopProfiling(const char* title) { |
| 256 ASSERT(singleton_ != NULL); | 256 return singleton_ != NULL ? singleton_->StopCollectingProfile(title) : NULL; |
| 257 return singleton_->StopCollectingProfile(title); | |
| 258 } | 257 } |
| 259 | 258 |
| 260 | 259 |
| 261 CpuProfile* CpuProfiler::StopProfiling(String* title) { | 260 CpuProfile* CpuProfiler::StopProfiling(String* title) { |
| 262 ASSERT(singleton_ != NULL); | 261 return singleton_ != NULL ? singleton_->StopCollectingProfile(title) : NULL; |
| 263 return singleton_->StopCollectingProfile(title); | |
| 264 } | 262 } |
| 265 | 263 |
| 266 | 264 |
| 267 int CpuProfiler::GetProfilesCount() { | 265 int CpuProfiler::GetProfilesCount() { |
| 268 ASSERT(singleton_ != NULL); | 266 ASSERT(singleton_ != NULL); |
| 269 return singleton_->profiles_->profiles()->length(); | 267 return singleton_->profiles_->profiles()->length(); |
| 270 } | 268 } |
| 271 | 269 |
| 272 | 270 |
| 273 CpuProfile* CpuProfiler::GetProfile(int index) { | 271 CpuProfile* CpuProfiler::GetProfile(int index) { |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 void CpuProfiler::TearDown() { | 483 void CpuProfiler::TearDown() { |
| 486 #ifdef ENABLE_LOGGING_AND_PROFILING | 484 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 487 if (singleton_ != NULL) { | 485 if (singleton_ != NULL) { |
| 488 delete singleton_; | 486 delete singleton_; |
| 489 } | 487 } |
| 490 singleton_ = NULL; | 488 singleton_ = NULL; |
| 491 #endif | 489 #endif |
| 492 } | 490 } |
| 493 | 491 |
| 494 } } // namespace v8::internal | 492 } } // namespace v8::internal |
| OLD | NEW |