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

Side by Side Diff: src/platform-openbsd.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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 } 799 }
800 800
801 static void RestoreSignalHandler() { 801 static void RestoreSignalHandler() {
802 if (signal_handler_installed_) { 802 if (signal_handler_installed_) {
803 sigaction(SIGPROF, &old_signal_handler_, 0); 803 sigaction(SIGPROF, &old_signal_handler_, 0);
804 signal_handler_installed_ = false; 804 signal_handler_installed_ = false;
805 } 805 }
806 } 806 }
807 807
808 static void AddActiveSampler(Sampler* sampler) { 808 static void AddActiveSampler(Sampler* sampler) {
809 ScopedLock lock(mutex_); 809 ScopedLock lock(mutex_.Pointer());
810 SamplerRegistry::AddActiveSampler(sampler); 810 SamplerRegistry::AddActiveSampler(sampler);
811 if (instance_ == NULL) { 811 if (instance_ == NULL) {
812 // Start a thread that will send SIGPROF signal to VM threads, 812 // Start a thread that will send SIGPROF signal to VM threads,
813 // when CPU profiling will be enabled. 813 // when CPU profiling will be enabled.
814 instance_ = new SignalSender(sampler->interval()); 814 instance_ = new SignalSender(sampler->interval());
815 instance_->Start(); 815 instance_->Start();
816 } else { 816 } else {
817 ASSERT(instance_->interval_ == sampler->interval()); 817 ASSERT(instance_->interval_ == sampler->interval());
818 } 818 }
819 } 819 }
820 820
821 static void RemoveActiveSampler(Sampler* sampler) { 821 static void RemoveActiveSampler(Sampler* sampler) {
822 ScopedLock lock(mutex_); 822 ScopedLock lock(mutex_.Pointer());
823 SamplerRegistry::RemoveActiveSampler(sampler); 823 SamplerRegistry::RemoveActiveSampler(sampler);
824 if (SamplerRegistry::GetState() == SamplerRegistry::HAS_NO_SAMPLERS) { 824 if (SamplerRegistry::GetState() == SamplerRegistry::HAS_NO_SAMPLERS) {
825 RuntimeProfiler::StopRuntimeProfilerThreadBeforeShutdown(instance_); 825 RuntimeProfiler::StopRuntimeProfilerThreadBeforeShutdown(instance_);
826 delete instance_; 826 delete instance_;
827 instance_ = NULL; 827 instance_ = NULL;
828 RestoreSignalHandler(); 828 RestoreSignalHandler();
829 } 829 }
830 } 830 }
831 831
832 // Implement Thread::Run(). 832 // Implement Thread::Run().
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 } 906 }
907 #endif 907 #endif
908 USE(result); 908 USE(result);
909 } 909 }
910 910
911 const int vm_tgid_; 911 const int vm_tgid_;
912 const int interval_; 912 const int interval_;
913 RuntimeProfilerRateLimiter rate_limiter_; 913 RuntimeProfilerRateLimiter rate_limiter_;
914 914
915 // Protects the process wide state below. 915 // Protects the process wide state below.
916 static Mutex* mutex_; 916 static LazyMutex mutex_;
917 static SignalSender* instance_; 917 static SignalSender* instance_;
918 static bool signal_handler_installed_; 918 static bool signal_handler_installed_;
919 static struct sigaction old_signal_handler_; 919 static struct sigaction old_signal_handler_;
920 920
921 private: 921 private:
922 DISALLOW_COPY_AND_ASSIGN(SignalSender); 922 DISALLOW_COPY_AND_ASSIGN(SignalSender);
923 }; 923 };
924 924
925 925
926 Mutex* SignalSender::mutex_ = OS::CreateMutex(); 926 LazyMutex SignalSender::mutex_ = LAZY_MUTEX_INITIALIZER;
927 SignalSender* SignalSender::instance_ = NULL; 927 SignalSender* SignalSender::instance_ = NULL;
928 struct sigaction SignalSender::old_signal_handler_; 928 struct sigaction SignalSender::old_signal_handler_;
929 bool SignalSender::signal_handler_installed_ = false; 929 bool SignalSender::signal_handler_installed_ = false;
930 930
931 931
932 Sampler::Sampler(Isolate* isolate, int interval) 932 Sampler::Sampler(Isolate* isolate, int interval)
933 : isolate_(isolate), 933 : isolate_(isolate),
934 interval_(interval), 934 interval_(interval),
935 profiling_(false), 935 profiling_(false),
936 active_(false), 936 active_(false),
(...skipping 16 matching lines...) Expand all
953 953
954 954
955 void Sampler::Stop() { 955 void Sampler::Stop() {
956 ASSERT(IsActive()); 956 ASSERT(IsActive());
957 SignalSender::RemoveActiveSampler(this); 957 SignalSender::RemoveActiveSampler(this);
958 SetActive(false); 958 SetActive(false);
959 } 959 }
960 960
961 961
962 } } // namespace v8::internal 962 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698