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

Side by Side Diff: src/trusted/service_runtime/osx/mach_thread_map.c

Issue 12207165: Mac x86_64: Mach exception support (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 7 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2013 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 #include "native_client/src/trusted/service_runtime/osx/mach_thread_map.h"
8
9 #include <pthread.h>
10
11 #include "native_client/src/shared/platform/nacl_check.h"
12 #include "native_client/src/trusted/service_runtime/arch/sel_ldr_arch.h"
13 #include "native_client/src/trusted/service_runtime/nacl_globals.h"
14
15 #if NACL_ARCH(NACL_BUILD_ARCH) == NACL_x86 && NACL_BUILD_SUBARCH == 64
16
17 static mach_port_t mach_threads[NACL_THREAD_MAX];
18
19 uint32_t NaClGetThreadIndexForMachThread(mach_port_t mach_thread) {
20 uint32_t nacl_thread_index;
21
22 DCHECK(mach_thread != MACH_PORT_NULL);
23
24 CHECK(NACL_TLS_INDEX_INVALID < NACL_THREAD_MAX); /* Skip the invalid slot. */
25 for (nacl_thread_index = NACL_TLS_INDEX_INVALID + 1;
26 nacl_thread_index < NACL_THREAD_MAX;
27 ++nacl_thread_index) {
28 if (mach_threads[nacl_thread_index] == mach_thread) {
29 return nacl_thread_index;
30 }
31 }
32
33 return NACL_TLS_INDEX_INVALID;
34 }
35
36 void NaClSetCurrentMachThreadForThreadIndex(uint32_t nacl_thread_index) {
37 /*
38 * This implementation relies on the Mach port for the thread stored by the
39 * pthread library, and assumes that the pthread library does not close and
40 * re-acquire the Mach port for the thread. If that happens, Mach could
41 * theoretically assign the port a different number in the process' port
42 * table. This approach avoids having to deal with ownership of the port and
43 * the system call overhad to obtain and deallocate it as would be the case
44 * with mach_thread_self().
45 *
46 * When used by the Mach exception handler, this also assumes that the
47 * thread port number when received for an exception will match the port
48 * stored in the mach_threads table. This is guaranteed by how the kernel
49 * coalesces ports in a single port namespace. (A task, or process, is a
50 * single port namespace.)
51 *
52 * An alternative implementation that works on Mac OS X 10.6 or higher is to
53 * use pthread_threadid_np() to obtain a thread ID to use as the key for
54 * this thread map. Such thread IDs are unique system-wide. An exception
55 * handler can find the thread ID for a Mach thread by calling thread_info()
56 * with flavor THREAD_IDENTIFIER_INFO. This approach is not used here
57 * because of the added system call overhead at exception time.
58 */
59 mach_port_t mach_thread = pthread_mach_thread_np(pthread_self());
60 CHECK(mach_thread != MACH_PORT_NULL);
61
62 DCHECK(nacl_thread_index > NACL_TLS_INDEX_INVALID &&
63 nacl_thread_index < NACL_THREAD_MAX);
64 DCHECK(mach_threads[nacl_thread_index] == MACH_PORT_NULL);
65 DCHECK(NaClGetThreadIndexForMachThread(mach_thread) ==
66 NACL_TLS_INDEX_INVALID);
67
68 mach_threads[nacl_thread_index] = mach_thread;
69 }
70
71 void NaClClearMachThreadForThreadIndex(uint32_t nacl_thread_index) {
72 mach_port_t mach_thread = mach_threads[nacl_thread_index];
73
74 DCHECK(nacl_thread_index > NACL_TLS_INDEX_INVALID &&
75 nacl_thread_index < NACL_THREAD_MAX);
76 DCHECK(mach_thread == pthread_mach_thread_np(pthread_self()));
77
78 mach_threads[nacl_thread_index] = MACH_PORT_NULL;
79
80 DCHECK(NaClGetThreadIndexForMachThread(mach_thread) ==
Mark Mentovai 2013/02/20 20:15:48 Note that I’ve added this DCHECK in as an addition
81 NACL_TLS_INDEX_INVALID);
82 }
83
84 #endif
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/osx/mach_thread_map.h ('k') | src/trusted/service_runtime/service_runtime.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698