forked from macmade/OBJC4-437.1-Runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
objc-gdb.h
117 lines (90 loc) · 4.21 KB
/
objc-gdb.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
* Copyright (c) 2008 Apple Inc. All Rights Reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* compliance with the License. Please obtain a copy of the License at
* http://www.opensource.apple.com/apsl/ and read it before using this
* file.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
* Please see the License for the specific language governing rights and
* limitations under the License.
*
* @APPLE_LICENSE_HEADER_END@
*/
#ifndef _OBJC_GDB_H
#define _OBJC_GDB_H
/*
* WARNING DANGER HAZARD BEWARE EEK
*
* Everything in this file is for debugger and developer tool use only.
* These will change in arbitrary OS updates and in unpredictable ways.
* When your program breaks, you get to keep both pieces.
*/
#ifdef __APPLE_API_PRIVATE
#include <stdint.h>
#include <objc/hashtable.h>
#include <objc/maptable.h>
/***********************************************************************
* Trampoline descriptors for gdb.
**********************************************************************/
typedef struct {
uint32_t offset; // 0 = unused, else code = (uintptr_t)desc + desc->offset
uint32_t flags;
} objc_trampoline_descriptor;
#define OBJC_TRAMPOLINE_MESSAGE (1<<0) // trampoline acts like objc_msgSend
#define OBJC_TRAMPOLINE_STRET (1<<1) // trampoline is struct-returning
#define OBJC_TRAMPOLINE_VTABLE (1<<2) // trampoline is vtable dispatcher
typedef struct objc_trampoline_header {
uint16_t headerSize; // sizeof(objc_trampoline_header)
uint16_t descSize; // sizeof(objc_trampoline_descriptor)
uint32_t descCount; // number of descriptors following this header
struct objc_trampoline_header *next;
} objc_trampoline_header;
extern objc_trampoline_header *gdb_objc_trampolines;
extern void gdb_objc_trampolines_changed(objc_trampoline_header *thdr);
// Notify gdb that gdb_objc_trampolines has changed.
// thdr itself includes the new descriptors; thdr->next is not new.
/***********************************************************************
* Debugger mode.
**********************************************************************/
// Start debugger mode.
// Returns non-zero if debugger mode was successfully started.
// In debugger mode, you can try to use the runtime without deadlocking
// on other threads. All other threads must be stopped during debugger mode.
// OBJC_DEBUGMODE_FULL requires more locks so later operations are less
// likely to fail.
#define OBJC_DEBUGMODE_FULL (1<<0)
extern int gdb_objc_startDebuggerMode(uint32_t flags);
// Stop debugger mode. Do not call if startDebuggerMode returned zero.
extern void gdb_objc_endDebuggerMode(void);
// Failure hook when debugger mode tries something that would block.
// Set a breakpoint here to handle it before the runtime causes a trap.
// Debugger mode is still active; call endDebuggerMode to end it.
extern void gdb_objc_debuggerModeFailure(void);
/***********************************************************************
* Class lists for heap.
**********************************************************************/
#if __OBJC2__
// Maps class name to Class, for in-use classes only. NXStrValueMapPrototype.
extern NXMapTable *gdb_objc_realized_classes;
#else
// Hashes Classes, for all known classes. Custom prototype.
extern NXHashTable *_objc_debug_class_hash;
#endif
/***********************************************************************
* Garbage Collector heap dump
**********************************************************************/
/* Dump GC heap; if supplied the name is returned in filenamebuffer. Returns YES on success. */
OBJC_GC_EXPORT BOOL objc_dumpHeap(char *filenamebuffer, unsigned long length);
#define OBJC_HEAP_DUMP_FILENAME_FORMAT "/tmp/objc-gc-heap-dump-%d-%d"
#endif
#endif