Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: src/platform-freebsd.cc

Issue 9455088: Remove static initializers in v8. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Lint. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 FULL_INTERVAL 710 FULL_INTERVAL
711 }; 711 };
712 712
713 static const int kSignalSenderStackSize = 64 * KB; 713 static const int kSignalSenderStackSize = 64 * KB;
714 714
715 explicit SignalSender(int interval) 715 explicit SignalSender(int interval)
716 : Thread(Thread::Options("SignalSender", kSignalSenderStackSize)), 716 : Thread(Thread::Options("SignalSender", kSignalSenderStackSize)),
717 interval_(interval) {} 717 interval_(interval) {}
718 718
719 static void AddActiveSampler(Sampler* sampler) { 719 static void AddActiveSampler(Sampler* sampler) {
720 ScopedLock lock(mutex_); 720 ScopedLock lock(mutex_.Pointer());
721 SamplerRegistry::AddActiveSampler(sampler); 721 SamplerRegistry::AddActiveSampler(sampler);
722 if (instance_ == NULL) { 722 if (instance_ == NULL) {
723 // Install a signal handler. 723 // Install a signal handler.
724 struct sigaction sa; 724 struct sigaction sa;
725 sa.sa_sigaction = ProfilerSignalHandler; 725 sa.sa_sigaction = ProfilerSignalHandler;
726 sigemptyset(&sa.sa_mask); 726 sigemptyset(&sa.sa_mask);
727 sa.sa_flags = SA_RESTART | SA_SIGINFO; 727 sa.sa_flags = SA_RESTART | SA_SIGINFO;
728 signal_handler_installed_ = 728 signal_handler_installed_ =
729 (sigaction(SIGPROF, &sa, &old_signal_handler_) == 0); 729 (sigaction(SIGPROF, &sa, &old_signal_handler_) == 0);
730 730
731 // Start a thread that sends SIGPROF signal to VM threads. 731 // Start a thread that sends SIGPROF signal to VM threads.
732 instance_ = new SignalSender(sampler->interval()); 732 instance_ = new SignalSender(sampler->interval());
733 instance_->Start(); 733 instance_->Start();
734 } else { 734 } else {
735 ASSERT(instance_->interval_ == sampler->interval()); 735 ASSERT(instance_->interval_ == sampler->interval());
736 } 736 }
737 } 737 }
738 738
739 static void RemoveActiveSampler(Sampler* sampler) { 739 static void RemoveActiveSampler(Sampler* sampler) {
740 ScopedLock lock(mutex_); 740 ScopedLock lock(mutex_.Pointer());
741 SamplerRegistry::RemoveActiveSampler(sampler); 741 SamplerRegistry::RemoveActiveSampler(sampler);
742 if (SamplerRegistry::GetState() == SamplerRegistry::HAS_NO_SAMPLERS) { 742 if (SamplerRegistry::GetState() == SamplerRegistry::HAS_NO_SAMPLERS) {
743 RuntimeProfiler::StopRuntimeProfilerThreadBeforeShutdown(instance_); 743 RuntimeProfiler::StopRuntimeProfilerThreadBeforeShutdown(instance_);
744 delete instance_; 744 delete instance_;
745 instance_ = NULL; 745 instance_ = NULL;
746 746
747 // Restore the old signal handler. 747 // Restore the old signal handler.
748 if (signal_handler_installed_) { 748 if (signal_handler_installed_) {
749 sigaction(SIGPROF, &old_signal_handler_, 0); 749 sigaction(SIGPROF, &old_signal_handler_, 0);
750 signal_handler_installed_ = false; 750 signal_handler_installed_ = false;
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 ASSERT(result == 0 || errno == EINTR); 823 ASSERT(result == 0 || errno == EINTR);
824 } 824 }
825 #endif 825 #endif
826 USE(result); 826 USE(result);
827 } 827 }
828 828
829 const int interval_; 829 const int interval_;
830 RuntimeProfilerRateLimiter rate_limiter_; 830 RuntimeProfilerRateLimiter rate_limiter_;
831 831
832 // Protects the process wide state below. 832 // Protects the process wide state below.
833 static Mutex* mutex_; 833 static LazyMutex mutex_;
834 static SignalSender* instance_; 834 static SignalSender* instance_;
835 static bool signal_handler_installed_; 835 static bool signal_handler_installed_;
836 static struct sigaction old_signal_handler_; 836 static struct sigaction old_signal_handler_;
837 837
838 private: 838 private:
839 DISALLOW_COPY_AND_ASSIGN(SignalSender); 839 DISALLOW_COPY_AND_ASSIGN(SignalSender);
840 }; 840 };
841 841
842 Mutex* SignalSender::mutex_ = OS::CreateMutex(); 842 LazyMutex SignalSender::mutex_ = LAZY_MUTEX_INITIALIZER;
843 SignalSender* SignalSender::instance_ = NULL; 843 SignalSender* SignalSender::instance_ = NULL;
844 struct sigaction SignalSender::old_signal_handler_; 844 struct sigaction SignalSender::old_signal_handler_;
845 bool SignalSender::signal_handler_installed_ = false; 845 bool SignalSender::signal_handler_installed_ = false;
846 846
847 847
848 Sampler::Sampler(Isolate* isolate, int interval) 848 Sampler::Sampler(Isolate* isolate, int interval)
849 : isolate_(isolate), 849 : isolate_(isolate),
850 interval_(interval), 850 interval_(interval),
851 profiling_(false), 851 profiling_(false),
852 active_(false), 852 active_(false),
(...skipping 16 matching lines...) Expand all
869 869
870 870
871 void Sampler::Stop() { 871 void Sampler::Stop() {
872 ASSERT(IsActive()); 872 ASSERT(IsActive());
873 SignalSender::RemoveActiveSampler(this); 873 SignalSender::RemoveActiveSampler(this);
874 SetActive(false); 874 SetActive(false);
875 } 875 }
876 876
877 877
878 } } // namespace v8::internal 878 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698