(mark_object): Ignore Lisp_Misc_Display_Objfwd objects.
[bpt/emacs.git] / src / .gdbinit
CommitLineData
a6ffc6a2
JB
1# Set up something to print out s-expressions.
2define pr
36fa5981 3set debug_print ($)
a6ffc6a2
JB
4echo \n
5end
a6ffc6a2
JB
6document pr
7Print the emacs s-expression which is $.
8Works only when an inferior emacs is executing.
9end
10
ec558adc
JB
11# Set this to the same thing as the DATA_SEG_BITS macro in your
12# machine-description files.
13set $data_seg_bits = 0
14
45c18993
JB
15define mips
16set $data_seg_bits = 0x10000000
17end
18document mips
19Set up the xfoo macros to deal with the MIPS processor.
20Specifically, this sets $data_seg_bits to the right thing.
21end
22
a6ffc6a2 23define xtype
3fe8bda5
RS
24output (enum Lisp_Type) (($ >> 28) & 0x7)
25echo \n
26output ((($ >> 28) & 0x7) == Lisp_Misc ? (enum Lisp_Misc_Type) (((struct Lisp_Free *) (($ & 0x0fffffff) | $data_seg_bits))->type) : (($ >> 28) & 0x7) == Lisp_Vectorlike ? ($size = ((struct Lisp_Vector *) (($ & 0x0fffffff) | $data_seg_bits))->size, (enum pvec_type) (($size & PVEC_FLAG) ? $size & PVEC_TYPE_MASK : 0)) : 0)
ef15f270 27echo \n
a6ffc6a2 28end
e065a56e 29document xtype
ba1e23bf 30Print the type of $, assuming it is an Emacs Lisp value.
3fe8bda5
RS
31If the first type printed is Lisp_Vector or Lisp_Misc,
32the second line gives the more precise type.
33Otherwise the second line doesn't mean anything.
34end
35
36define xvectype
37set $size = ((struct Lisp_Vector *) (($ & 0x0fffffff) | $data_seg_bits))->size
38output (enum pvec_type) (($size & PVEC_FLAG) ? $size & PVEC_TYPE_MASK : 0)
39echo \n
40end
41document xvectype
42Print the vector subtype of $, assuming it is a vector or pseudovector.
43end
44
45define xmisctype
46output (enum Lisp_Misc_Type) (((struct Lisp_Free *) (($ & 0x0fffffff) | $data_seg_bits))->type)
47echo \n
48end
49document xmisctype
50Print the specific type of $, assuming it is some misc type.
e065a56e 51end
a6ffc6a2
JB
52
53define xint
dcda44dd 54print (($ & 0x0fffffff) << 4) >> 4
a6ffc6a2 55end
e065a56e 56document xint
ba1e23bf 57Print $, assuming it is an Emacs Lisp integer. This gets the sign right.
e065a56e 58end
a6ffc6a2
JB
59
60define xptr
3fe8bda5 61print (void *) (($ & 0x0fffffff) | $data_seg_bits)
a6ffc6a2 62end
e065a56e 63document xptr
ba1e23bf 64Print the pointer portion of $, assuming it is an Emacs Lisp value.
e065a56e 65end
a6ffc6a2
JB
66
67define xwindow
3fe8bda5 68print (struct window *) (($ & 0x0fffffff) | $data_seg_bits)
ef15f270 69printf "%dx%d+%d+%d\n", $->width, $->height, $->left, $->top
a6ffc6a2 70end
e065a56e 71document xwindow
ba1e23bf 72Print $ as a window pointer, assuming it is an Emacs Lisp window value.
ef15f270 73Print the window's position as "WIDTHxHEIGHT+LEFT+TOP".
e065a56e 74end
a6ffc6a2
JB
75
76define xmarker
3fe8bda5 77print (struct Lisp_Marker *) (($ & 0x0fffffff) | $data_seg_bits)
a6ffc6a2 78end
e065a56e 79document xmarker
ba1e23bf 80Print $ as a marker pointer, assuming it is an Emacs Lisp marker value.
e065a56e 81end
a6ffc6a2 82
a6a3acf0
KH
83define xoverlay
84print (struct Lisp_Overlay *) (($ & 0x0fffffff) | $data_seg_bits)
85end
86document xoverlay
87Print $ as a overlay pointer, assuming it is an Emacs Lisp overlay value.
88end
89
90define xmiscfree
91print (struct Lisp_Free *) (($ & 0x0fffffff) | $data_seg_bits)
92end
93document xmiscfree
94Print $ as a misc free-cell pointer, assuming it is an Emacs Lisp Misc value.
95end
96
97define xintfwd
98print (struct Lisp_Intfwd *) (($ & 0x0fffffff) | $data_seg_bits)
99end
100document xintfwd
101Print $ as an integer forwarding pointer, assuming it is an Emacs Lisp Misc value.
102end
103
104define xboolfwd
105print (struct Lisp_Boolfwd *) (($ & 0x0fffffff) | $data_seg_bits)
106end
107document xboolfwd
108Print $ as a boolean forwarding pointer, assuming it is an Emacs Lisp Misc value.
109end
110
111define xobjfwd
112print (struct Lisp_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits)
113end
114document xobjfwd
115Print $ as an object forwarding pointer, assuming it is an Emacs Lisp Misc value.
116end
117
029c56f6 118define xbufobjfwd
a6a3acf0
KH
119print (struct Lisp_Buffer_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits)
120end
029c56f6 121document xbufobjfwd
a6a3acf0
KH
122Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value.
123end
124
029c56f6 125define xbuflocal
a6a3acf0
KH
126print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits)
127end
029c56f6 128document xbuflocal
a6a3acf0
KH
129Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value.
130end
131
a6ffc6a2 132define xbuffer
3fe8bda5
RS
133print (struct buffer *) (($ & 0x0fffffff) | $data_seg_bits)
134output &((struct Lisp_String *) ((($->name) & 0x0fffffff) | $data_seg_bits))->data
ef15f270 135echo \n
a6ffc6a2 136end
e065a56e 137document xbuffer
ba1e23bf 138Set $ as a buffer pointer, assuming it is an Emacs Lisp buffer value.
daa37602 139Print the name of the buffer.
e065a56e 140end
a6ffc6a2
JB
141
142define xsymbol
3fe8bda5 143print (struct Lisp_Symbol *) ((((int) $) & 0x0fffffff) | $data_seg_bits)
ef15f270
JB
144output &$->name->data
145echo \n
a6ffc6a2 146end
e065a56e
JB
147document xsymbol
148Print the name and address of the symbol $.
ba1e23bf 149This command assumes that $ is an Emacs Lisp symbol value.
e065a56e 150end
a6ffc6a2
JB
151
152define xstring
3fe8bda5 153print (struct Lisp_String *) (($ & 0x0fffffff) | $data_seg_bits)
4ea0847a 154output ($->size > 1000) ? 0 : ($->data[0])@($->size)
ef15f270 155echo \n
a6ffc6a2 156end
a6ffc6a2 157document xstring
e065a56e 158Print the contents and address of the string $.
ba1e23bf 159This command assumes that $ is an Emacs Lisp string value.
a6ffc6a2
JB
160end
161
162define xvector
3fe8bda5 163print (struct Lisp_Vector *) (($ & 0x0fffffff) | $data_seg_bits)
4ea0847a 164output ($->size > 50) ? 0 : ($->contents[0])@($->size)
ef15f270 165echo \n
a6ffc6a2 166end
a6ffc6a2 167document xvector
e065a56e 168Print the contents and address of the vector $.
ba1e23bf 169This command assumes that $ is an Emacs Lisp vector value.
a6ffc6a2
JB
170end
171
ec558adc 172define xframe
3fe8bda5 173print (struct frame *) (($ & 0x0fffffff) | $data_seg_bits)
a6ffc6a2 174end
ec558adc 175document xframe
ba1e23bf 176Print $ as a frame pointer, assuming it is an Emacs Lisp frame value.
e065a56e 177end
a6ffc6a2 178
029c56f6 179define xwinconfig
a6a3acf0
KH
180print (struct save_window_data *) (($ & 0x0fffffff) | $data_seg_bits)
181end
029c56f6 182document xwinconfig
a6a3acf0
KH
183Print $ as a window configuration pointer, assuming it is an Emacs Lisp window configuration value.
184end
185
186define xcompiled
187print (struct Lisp_Vector *) (($ & 0x0fffffff) | $data_seg_bits)
188output ($->contents[0])@($->size & 0xff)
189end
190document xcompiled
191Print $ as a compiled function pointer, assuming it is an Emacs Lisp compiled value.
192end
193
a6ffc6a2 194define xcons
3fe8bda5 195print (struct Lisp_Cons *) (($ & 0x0fffffff) | $data_seg_bits)
cac29370 196output *$
ef15f270 197echo \n
a6ffc6a2 198end
e065a56e 199document xcons
ba1e23bf 200Print the contents of $, assuming it is an Emacs Lisp cons.
e065a56e 201end
a6ffc6a2
JB
202
203define xcar
6a044d86 204print ((($ >> 28) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & 0x0fffffff) | $data_seg_bits))->car : 0)
a6ffc6a2 205end
e065a56e 206document xcar
ba1e23bf 207Print the car of $, assuming it is an Emacs Lisp pair.
e065a56e 208end
a6ffc6a2
JB
209
210define xcdr
6a044d86 211print ((($ >> 28) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & 0x0fffffff) | $data_seg_bits))->cdr : 0)
a6ffc6a2 212end
e065a56e 213document xcdr
ba1e23bf 214Print the cdr of $, assuming it is an Emacs Lisp pair.
e065a56e 215end
a6ffc6a2 216
ec558adc 217define xsubr
3fe8bda5 218print (struct Lisp_Subr *) (($ & 0x0fffffff) | $data_seg_bits)
ec558adc
JB
219output *$
220echo \n
221end
222document xsubr
223Print the address of the subr which the Lisp_Object $ points to.
224end
225
8dd926ca 226define xprocess
3fe8bda5 227print (struct Lisp_Process *) (($ & 0x0fffffff) | $data_seg_bits)
8dd926ca
JB
228output *$
229echo \n
230end
231document xprocess
232Print the address of the struct Lisp_process which the Lisp_Object $ points to.
233end
234
df86e57e 235define xfloat
3fe8bda5 236print ((struct Lisp_Float *) (($ & 0x0fffffff) | $data_seg_bits))->data
df86e57e
JB
237end
238document xfloat
239Print $ assuming it is a lisp floating-point number.
240end
241
b2367490 242define xscrollbar
3fe8bda5 243print (struct scrollbar *) (($ & 0x0fffffff) | $data_seg_bits)
b2367490
JB
244output *$
245echo \n
246end
dec5f4e3 247document xscrollbar
b2367490
JB
248Print $ as a scrollbar pointer.
249end
250
e065a56e 251set print pretty on
df86e57e 252set print sevenbit-strings
a6ffc6a2 253
e5d77022 254show environment DISPLAY
6f5d1a4f 255show environment TERM
6f5d1a4f 256set args -geometry 80x40+0+0
e5d77022 257
a6ffc6a2 258# Don't let abort actually run, as it will make
7f692070 259# stdio stop working and therefore the `pr' command above as well.
a6ffc6a2
JB
260break abort
261
262# If we are running in synchronous mode, we want a chance to look around
263# before Emacs exits. Perhaps we should put the break somewhere else
264# instead...
998ee976
RS
265break x_error_quitter
266
a6ffc6a2 267