Files
sdk/runtime/vm/thread_interrupter_win.cc
T
johnmccutchan@google.com 919dc2d6eb * Introduce ThreadInterrupter which calls a TLS set callback when thread is interrupted.
* Threads can only register and unregister themselves with ThreadInterrupter.
* Profiler is no longer involved in interrupting threads. It's just a callback and the buffer.
* Profiler operates lock free using an atomic operation to reserve sample in sample buffer.
* Linux, Mac, and Windows done.

R=asiva@google.com

Review URL: https://codereview.chromium.org//109803002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@31170 260f80e4-7a28-3924-810f-c04153c831b5
2013-12-16 18:52:15 +00:00

99 lines
2.8 KiB
C++

// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "platform/globals.h"
#if defined(TARGET_OS_WINDOWS)
#include "vm/thread_interrupter.h"
namespace dart {
DECLARE_FLAG(bool, thread_interrupter);
DECLARE_FLAG(bool, trace_thread_interrupter);
#define kThreadError -1
class ThreadInterrupterWin : public AllStatic {
public:
static bool GrabRegisters(ThreadId thread, InterruptedThreadState* state) {
CONTEXT context;
memset(&context, 0, sizeof(context));
context.ContextFlags = CONTEXT_FULL;
if (GetThreadContext(thread, &context) != 0) {
#if defined(TARGET_ARCH_IA32)
state->pc = static_cast<uintptr_t>(context.Eip);
state->fp = static_cast<uintptr_t>(context.Ebp);
state->sp = static_cast<uintptr_t>(context.Esp);
#elif defined(TARGET_ARCH_X64)
state->pc = reinterpret_cast<uintptr_t>(context.Rip);
state->fp = reinterpret_cast<uintptr_t>(context.Rbp);
state->sp = reinterpret_cast<uintptr_t>(context.Rsp);
#else
UNIMPLEMENTED();
#endif
return true;
}
return false;
}
static void Interrupt(ThreadInterrupter::ThreadState* state) {
ASSERT(GetCurrentThread() != state->id);
DWORD result = SuspendThread(state->id);
if (result == kThreadError) {
if (FLAG_trace_thread_interrupter) {
OS::Print("ThreadInterrupted failed to suspend thread %p\n",
reinterpret_cast<void*>(state->id));
}
return;
}
InterruptedThreadState its;
its.tid = state->id;
if (!GrabRegisters(state->id, &its)) {
// Failed to get thread registers.
ResumeThread(state->id);
if (FLAG_trace_thread_interrupter) {
OS::Print("ThreadInterrupted failed to get registers for %p\n",
reinterpret_cast<void*>(state->id));
}
return;
}
if (state->callback == NULL) {
// No callback registered.
ResumeThread(state->id);
return;
}
state->callback(its, state->data);
ResumeThread(state->id);
}
};
void ThreadInterrupter::InterruptThreads(int64_t current_time) {
for (intptr_t i = 0; i < threads_size_; i++) {
ThreadState* state = threads_[i];
ASSERT(state->id != Thread::kInvalidThreadId);
if (FLAG_trace_thread_interrupter) {
OS::Print("ThreadInterrupter suspending %p\n",
reinterpret_cast<void*>(state->id));
}
ThreadInterrupterWin::Interrupt(state);
if (FLAG_trace_thread_interrupter) {
OS::Print("ThreadInterrupter resuming %p\n",
reinterpret_cast<void*>(state->id));
}
}
}
void ThreadInterrupter::InstallSignalHandler() {
// Nothing to do on Windows.
}
} // namespace dart
#endif // defined(TARGET_OS_WINDOWS)