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 "vm/globals.h" | 5 #include "vm/globals.h" |
6 #include "vm/instructions.h" | 6 #include "vm/instructions.h" |
7 #include "vm/simulator.h" | 7 #include "vm/simulator.h" |
8 #include "vm/signal_handler.h" | 8 #include "vm/signal_handler.h" |
9 #if defined(TARGET_OS_MACOS) | 9 #if defined(HOST_OS_MACOS) |
10 | 10 |
11 namespace dart { | 11 namespace dart { |
12 | 12 |
13 uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) { | 13 uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) { |
14 uintptr_t pc = 0; | 14 uintptr_t pc = 0; |
15 | 15 |
16 #if defined(HOST_ARCH_IA32) | 16 #if defined(HOST_ARCH_IA32) |
17 pc = static_cast<uintptr_t>(mcontext->__ss.__eip); | 17 pc = static_cast<uintptr_t>(mcontext->__ss.__eip); |
18 #elif defined(HOST_ARCH_X64) | 18 #elif defined(HOST_ARCH_X64) |
19 pc = static_cast<uintptr_t>(mcontext->__ss.__rip); | 19 pc = static_cast<uintptr_t>(mcontext->__ss.__rip); |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 act.sa_handler = SIG_IGN; | 113 act.sa_handler = SIG_IGN; |
114 sigemptyset(&act.sa_mask); | 114 sigemptyset(&act.sa_mask); |
115 act.sa_flags = 0; | 115 act.sa_flags = 0; |
116 int r = sigaction(SIGPROF, &act, NULL); | 116 int r = sigaction(SIGPROF, &act, NULL); |
117 ASSERT(r == 0); | 117 ASSERT(r == 0); |
118 } | 118 } |
119 | 119 |
120 | 120 |
121 } // namespace dart | 121 } // namespace dart |
122 | 122 |
123 #endif // defined(TARGET_OS_MACOS) | 123 #endif // defined(HOST_OS_MACOS) |
OLD | NEW |