| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_LINUX) | 6 #if defined(TARGET_OS_LINUX) |
| 7 | 7 |
| 8 #include <errno.h> // NOLINT | |
| 9 | |
| 10 #include "vm/flags.h" | 8 #include "vm/flags.h" |
| 11 #include "vm/os.h" | 9 #include "vm/os.h" |
| 12 #include "vm/profiler.h" | |
| 13 #include "vm/signal_handler.h" | 10 #include "vm/signal_handler.h" |
| 14 #include "vm/thread_interrupter.h" | 11 #include "vm/thread_interrupter.h" |
| 15 | 12 |
| 16 namespace dart { | 13 namespace dart { |
| 17 | 14 |
| 18 DECLARE_FLAG(bool, thread_interrupter); | 15 DECLARE_FLAG(bool, thread_interrupter); |
| 19 DECLARE_FLAG(bool, trace_thread_interrupter); | 16 DECLARE_FLAG(bool, trace_thread_interrupter); |
| 20 | 17 |
| 21 class ThreadInterrupterLinux : public AllStatic { | 18 class ThreadInterrupterLinux : public AllStatic { |
| 22 public: | 19 public: |
| 23 static void ThreadInterruptSignalHandler(int signal, siginfo_t* info, | 20 static void ThreadInterruptSignalHandler(int signal, siginfo_t* info, |
| 24 void* context_) { | 21 void* context_) { |
| 25 if (signal != SIGPROF) { | 22 if (signal != SIGPROF) { |
| 26 return; | 23 return; |
| 27 } | 24 } |
| 28 Thread* thread = Thread::Current(); | 25 Thread* thread = Thread::Current(); |
| 29 if (thread == NULL) { | 26 if (thread == NULL) { |
| 30 return; | 27 return; |
| 31 } | 28 } |
| 29 ThreadInterruptCallback callback = NULL; |
| 30 void* callback_data = NULL; |
| 31 if (!thread->IsThreadInterrupterEnabled(&callback, &callback_data)) { |
| 32 return; |
| 33 } |
| 32 // Extract thread state. | 34 // Extract thread state. |
| 33 ucontext_t* context = reinterpret_cast<ucontext_t*>(context_); | 35 ucontext_t* context = reinterpret_cast<ucontext_t*>(context_); |
| 34 mcontext_t mcontext = context->uc_mcontext; | 36 mcontext_t mcontext = context->uc_mcontext; |
| 35 InterruptedThreadState its; | 37 InterruptedThreadState its; |
| 38 its.tid = thread->id(); |
| 36 its.pc = SignalHandler::GetProgramCounter(mcontext); | 39 its.pc = SignalHandler::GetProgramCounter(mcontext); |
| 37 its.fp = SignalHandler::GetFramePointer(mcontext); | 40 its.fp = SignalHandler::GetFramePointer(mcontext); |
| 38 its.csp = SignalHandler::GetCStackPointer(mcontext); | 41 its.csp = SignalHandler::GetCStackPointer(mcontext); |
| 39 its.dsp = SignalHandler::GetDartStackPointer(mcontext); | 42 its.dsp = SignalHandler::GetDartStackPointer(mcontext); |
| 40 its.lr = SignalHandler::GetLinkRegister(mcontext); | 43 its.lr = SignalHandler::GetLinkRegister(mcontext); |
| 41 Profiler::SampleThread(thread, its); | 44 callback(its, callback_data); |
| 42 } | 45 } |
| 43 }; | 46 }; |
| 44 | 47 |
| 45 | 48 |
| 46 void ThreadInterrupter::InterruptThread(Thread* thread) { | 49 void ThreadInterrupter::InterruptThread(Thread* thread) { |
| 47 if (FLAG_trace_thread_interrupter) { | 50 if (FLAG_trace_thread_interrupter) { |
| 48 OS::Print("ThreadInterrupter interrupting %p\n", | 51 OS::Print("ThreadInterrupter interrupting %p\n", |
| 49 reinterpret_cast<void*>(thread->id())); | 52 reinterpret_cast<void*>(thread->id())); |
| 50 } | 53 } |
| 51 int result = pthread_kill(thread->id(), SIGPROF); | 54 int result = pthread_kill(thread->id(), SIGPROF); |
| 52 ASSERT((result == 0) || (result == ESRCH)); | 55 ASSERT(result == 0); |
| 53 } | 56 } |
| 54 | 57 |
| 55 | 58 |
| 56 void ThreadInterrupter::InstallSignalHandler() { | 59 void ThreadInterrupter::InstallSignalHandler() { |
| 57 SignalHandler::Install(ThreadInterrupterLinux::ThreadInterruptSignalHandler); | 60 SignalHandler::Install(ThreadInterrupterLinux::ThreadInterruptSignalHandler); |
| 58 } | 61 } |
| 59 | 62 |
| 60 | 63 |
| 61 void ThreadInterrupter::RemoveSignalHandler() { | 64 void ThreadInterrupter::RemoveSignalHandler() { |
| 62 SignalHandler::Remove(); | 65 SignalHandler::Remove(); |
| 63 } | 66 } |
| 64 | 67 |
| 65 | 68 |
| 66 } // namespace dart | 69 } // namespace dart |
| 67 | 70 |
| 68 #endif // defined(TARGET_OS_LINUX) | 71 #endif // defined(TARGET_OS_LINUX) |
| OLD | NEW |