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_LINUX) | 9 #if defined(HOST_OS_LINUX) |
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.gregs[REG_EIP]); | 17 pc = static_cast<uintptr_t>(mcontext.gregs[REG_EIP]); |
18 #elif defined(HOST_ARCH_X64) | 18 #elif defined(HOST_ARCH_X64) |
19 pc = static_cast<uintptr_t>(mcontext.gregs[REG_RIP]); | 19 pc = static_cast<uintptr_t>(mcontext.gregs[REG_RIP]); |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 act.sa_handler = SIG_IGN; | 118 act.sa_handler = SIG_IGN; |
119 sigemptyset(&act.sa_mask); | 119 sigemptyset(&act.sa_mask); |
120 act.sa_flags = 0; | 120 act.sa_flags = 0; |
121 int r = sigaction(SIGPROF, &act, NULL); | 121 int r = sigaction(SIGPROF, &act, NULL); |
122 ASSERT(r == 0); | 122 ASSERT(r == 0); |
123 } | 123 } |
124 | 124 |
125 | 125 |
126 } // namespace dart | 126 } // namespace dart |
127 | 127 |
128 #endif // defined(TARGET_OS_LINUX) | 128 #endif // defined(HOST_OS_LINUX) |
OLD | NEW |