Mercurial > hg > xemacs-beta
annotate src/frame.h @ 5169:6c6d78781d59
cleanup of code related to xfree(), better KKCC backtrace capabilities, document XD_INLINE_LISP_OBJECT_BLOCK_PTR, fix some memory leaks, other code cleanup
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-03-24 Ben Wing <ben@xemacs.org>
* array.h:
* array.h (XD_LISP_DYNARR_DESC):
* dumper.c (pdump_register_sub):
* dumper.c (pdump_store_new_pointer_offsets):
* dumper.c (pdump_reloc_one_mc):
* elhash.c:
* gc.c (lispdesc_one_description_line_size):
* gc.c (kkcc_marking):
* lrecord.h:
* lrecord.h (IF_NEW_GC):
* lrecord.h (enum memory_description_type):
* lrecord.h (enum data_description_entry_flags):
* lrecord.h (struct opaque_convert_functions):
Rename XD_LISP_OBJECT_BLOCK_PTR to XD_INLINE_LISP_OBJECT_BLOCK_PTR
and document it in lrecord.h.
* data.c:
* data.c (finish_marking_weak_lists):
* data.c (continue_marking_ephemerons):
* data.c (finish_marking_ephemerons):
* elhash.c (MARK_OBJ):
* gc.c:
* gc.c (lispdesc_indirect_count_1):
* gc.c (struct):
* gc.c (kkcc_bt_push):
* gc.c (kkcc_gc_stack_push):
* gc.c (kkcc_gc_stack_push_lisp_object):
* gc.c (kkcc_gc_stack_repush_dirty_object):
* gc.c (KKCC_DO_CHECK_FREE):
* gc.c (mark_object_maybe_checking_free):
* gc.c (mark_struct_contents):
* gc.c (mark_lisp_object_block_contents):
* gc.c (register_for_finalization):
* gc.c (mark_object):
* gc.h:
* lisp.h:
* profile.c:
* profile.c (mark_profiling_info_maphash):
Clean up KKCC code related to DEBUG_XEMACS. Rename
kkcc_backtrace() to kkcc_backtrace_1() and add two params: a
`size' arg to control how many stack elements to print and a
`detailed' arg to control whether Lisp objects are printed using
`debug_print()'. Create front-ends to kkcc_backtrace_1() --
kkcc_detailed_backtrace(), kkcc_short_backtrace(),
kkcc_detailed_backtrace_full(), kkcc_short_backtrace_full(), as
well as shortened versions kbt(), kbts(), kbtf(), kbtsf() -- to
call it with various parameter values. Add an `is_lisp' field to
the stack and backtrace structures and use it to keep track of
whether an object pushed onto the stack is a Lisp object or a
non-Lisp structure; in kkcc_backtrace_1(), don't try to print a
non-Lisp structure as a Lisp object.
* elhash.c:
* extents.c:
* file-coding.c:
* lrecord.h:
* lrecord.h (IF_NEW_GC):
* marker.c:
* marker.c (Fmarker_buffer):
* mule-coding.c:
* number.c:
* rangetab.c:
* specifier.c:
New macros IF_OLD_GC(), IF_NEW_GC() to simplify declaration of
Lisp objects when a finalizer may exist in one but not the other.
Use them appropriately.
* extents.c (finalize_extent_info):
Don't zero out data->soe and data->extents before trying to free,
else we get memory leaks.
* lrecord.h (enum lrecord_type):
Make the first lrecord type have value 1 not 0 so that 0 remains
without implementation and attempts to interpret zeroed memory
as a Lisp object will be more obvious.
* array.c (Dynarr_free):
* device-msw.c (msprinter_delete_device):
* device-tty.c (free_tty_device_struct):
* device-tty.c (tty_delete_device):
* dialog-msw.c (handle_directory_dialog_box):
* dialog-x.c:
* emacs.c (free_argc_argv):
* emodules.c (attempt_module_delete):
* file-coding.c (chain_finalize_coding_stream_1):
* file-coding.c (chain_finalize_coding_stream):
* glyphs-eimage.c:
* glyphs-eimage.c (jpeg_instantiate_unwind):
* glyphs-eimage.c (gif_instantiate_unwind):
* glyphs-eimage.c (png_instantiate_unwind):
* glyphs-eimage.c (tiff_instantiate_unwind):
* imgproc.c:
* imgproc.c (build_EImage_quantable):
* insdel.c (uninit_buffer_text):
* mule-coding.c (iso2022_finalize_detection_state):
* objects-tty.c (tty_finalize_color_instance):
* objects-tty.c (tty_finalize_font_instance):
* objects-tty.c (tty_font_list):
* process.c:
* process.c (finalize_process):
* redisplay.c (add_propagation_runes):
* scrollbar-gtk.c:
* scrollbar-gtk.c (gtk_free_scrollbar_instance):
* scrollbar-gtk.c (gtk_release_scrollbar_instance):
* scrollbar-msw.c:
* scrollbar-msw.c (mswindows_free_scrollbar_instance):
* scrollbar-msw.c (unshow_that_mofo):
* scrollbar-x.c (x_free_scrollbar_instance):
* scrollbar-x.c (x_release_scrollbar_instance):
* select-x.c:
* select-x.c (x_handle_selection_request):
* syntax.c:
* syntax.c (uninit_buffer_syntax_cache):
* text.h (eifree):
If possible, whenever we call xfree() on a field in a structure,
set the field to 0 afterwards. A lot of code is written so that
it checks the value being freed to see if it is non-zero before
freeing it -- doing this and setting the value to 0 afterwards
ensures (a) we won't try to free twice if the cleanup code is
called twice; (b) if the object itself stays around, KKCC won't
crash when attempting to mark the freed field.
* rangetab.c:
Add a finalization method when not NEW_GC to avoid memory leaks.
(#### We still get memory leaks when NEW_GC; need to convert gap
array to Lisp object).
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 24 Mar 2010 01:22:51 -0500 |
parents | 7be849cb8828 |
children | 308d34e9f07d |
rev | line source |
---|---|
428 | 1 /* Define frame-object for XEmacs. |
2 Copyright (C) 1988, 1992, 1993, 1994 Free Software Foundation, Inc. | |
5043 | 3 Copyright (C) 1995, 2002, 2010 Ben Wing. |
428 | 4 |
5 This file is part of XEmacs. | |
6 | |
7 XEmacs is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
9 Free Software Foundation; either version 2, or (at your option) any | |
10 later version. | |
11 | |
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
21 | |
22 /* Synched up with: FSF 19.30. */ | |
23 | |
440 | 24 #ifndef INCLUDED_frame_h_ |
25 #define INCLUDED_frame_h_ | |
428 | 26 |
27 #include "redisplay.h" | |
800 | 28 #include "console.h" /* for error_check_frame_type */ |
428 | 29 |
872 | 30 struct frame; |
428 | 31 |
872 | 32 EXFUN (Fselected_frame, 1); |
428 | 33 EXFUN (Fdelete_frame, 2); |
34 EXFUN (Fframe_iconified_p, 1); | |
35 EXFUN (Fframe_name, 1); | |
36 EXFUN (Fframe_property, 3); | |
37 EXFUN (Fmake_frame, 2); | |
38 EXFUN (Fmake_frame_visible, 1); | |
39 EXFUN (Fraise_frame, 1); | |
40 EXFUN (Fselect_frame, 1); | |
41 EXFUN (Fset_frame_pointer, 2); | |
42 EXFUN (Fset_frame_position, 3); | |
442 | 43 EXFUN (Fset_frame_properties, 2); |
428 | 44 EXFUN (Fset_frame_size, 4); |
45 | |
46 extern Lisp_Object Qbackground_toolbar_color, Qbell_volume, Qborder_color; | |
47 extern Lisp_Object Qborder_width, Qbottom_toolbar_shadow_color; | |
48 extern Lisp_Object Qbottom_toolbar_shadow_pixmap, Qdelete_frame; | |
49 extern Lisp_Object Qdeselect_frame_hook, Qdrag_and_drop_functions, Qgc_pointer; | |
50 extern Lisp_Object Qiconic, Qinitially_unmapped, Qinter_line_space; | |
51 extern Lisp_Object Qinternal_border_width, Qinvisible, Qmap_frame_hook; | |
52 extern Lisp_Object Qminibuffer, Qmodeline_pointer, Qmouse_enter_frame_hook; | |
53 extern Lisp_Object Qmouse_leave_frame_hook, Qpointer_background; | |
54 extern Lisp_Object Qpointer_color, Qpopup, Qscrollbar_placement; | |
55 extern Lisp_Object Qselect_frame_hook, Qspace_pointer; | |
56 extern Lisp_Object Qsynchronize_minibuffers, Qtext_pointer; | |
57 extern Lisp_Object Qtoolbar_shadow_thickness, Qtop_toolbar_shadow_color; | |
58 extern Lisp_Object Qtop_toolbar_shadow_pixmap, Qunmap_frame_hook; | |
59 extern Lisp_Object Qunsplittable, Quse_backing_store, Qvisible, Qvisual_bell; | |
60 extern Lisp_Object Vframe_icon_title_format, Vframe_title_format; | |
61 extern Lisp_Object Vmouse_motion_handler; | |
62 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
parents:
1318
diff
changeset
|
63 DECLARE_LISP_OBJECT (frame, struct frame); |
428 | 64 #define XFRAME(x) XRECORD (x, frame, struct frame) |
617 | 65 #define wrap_frame(p) wrap_record (p, frame) |
428 | 66 #define FRAMEP(x) RECORDP (x, frame) |
67 #define CHECK_FRAME(x) CHECK_RECORD (x, frame) | |
68 #define CONCHECK_FRAME(x) CONCHECK_RECORD (x, frame) | |
69 | |
872 | 70 /* Basic properties available to non-privileged users; redefined in |
71 frame-impl.h */ | |
72 | |
73 int frame_live_p (struct frame *f); | |
74 Lisp_Object frame_device (struct frame *f); | |
75 | |
76 #define FRAME_LIVE_P(f) frame_live_p (f) | |
77 #define FRAME_DEVICE(f) frame_device (f) | |
78 | |
79 #define FRAME_XDEVICE(f) XDEVICE (FRAME_DEVICE (f)) | |
80 #define FRAME_CONSOLE(f) XDEVICE_CONSOLE (FRAME_DEVICE (f)) | |
81 #define FRAME_XCONSOLE(f) XCONSOLE (FRAME_CONSOLE (f)) | |
82 | |
83 #define XFRAME_DEVICE(f) FRAME_DEVICE (XFRAME (f)) | |
84 #define XFRAME_XDEVICE(f) XDEVICE (XFRAME_DEVICE (f)) | |
85 #define XFRAME_CONSOLE(f) XDEVICE_CONSOLE (XFRAME_DEVICE (f)) | |
86 #define XFRAME_XCONSOLE(f) XCONSOLE (XFRAME_CONSOLE (f)) | |
87 | |
428 | 88 #define CHECK_LIVE_FRAME(x) do { \ |
89 CHECK_FRAME (x); \ | |
90 if (! FRAME_LIVE_P (XFRAME (x))) \ | |
91 dead_wrong_type_argument (Qframe_live_p, (x)); \ | |
92 } while (0) | |
93 #define CONCHECK_LIVE_FRAME(x) do { \ | |
94 CONCHECK_FRAME (x); \ | |
95 if (! FRAME_LIVE_P (XFRAME (x))) \ | |
96 x = wrong_type_argument (Qframe_live_p, (x)); \ | |
97 } while (0) | |
98 | |
99 #define FW_FRAME(obj) \ | |
100 (WINDOWP (obj) ? WINDOW_FRAME (XWINDOW (obj)) \ | |
442 | 101 : (FRAMEP (obj) ? obj \ |
102 : Qnil)) | |
428 | 103 |
104 /* Equivalent in FSF Emacs: | |
105 | |
106 FOR_EACH_FRAME (LIST_VAR, FRAME_VAR) followed by a statement is a | |
107 `for' loop which iterates over the elements of Vframe_list. The | |
108 loop will set FRAME_VAR, a Lisp_Object, to each frame in | |
109 Vframe_list in succession and execute the statement. LIST_VAR | |
110 should be a Lisp_Object too; it is used to iterate through the | |
111 Vframe_list. | |
112 */ | |
113 | |
114 /* NO_BREAK means that "break" doesn't do what you think it does! | |
115 Use goto instead. "continue" is OK, though. */ | |
116 #define FRAME_LOOP_NO_BREAK(frmcons, devcons, concons) \ | |
117 DEVICE_LOOP_NO_BREAK (devcons, concons) \ | |
118 DEVICE_FRAME_LOOP (frmcons, XDEVICE (XCAR (devcons))) | |
119 | |
120 void update_frame_title (struct frame *f); | |
444 | 121 Lisp_Object next_frame (Lisp_Object, Lisp_Object, Lisp_Object); |
122 Lisp_Object previous_frame (Lisp_Object, Lisp_Object, Lisp_Object); | |
5043 | 123 void pixel_to_frame_unit_size (struct frame *f, int pixel_width, int pixel_height, |
124 int *char_width, int *char_height); | |
125 void frame_unit_to_pixel_size (struct frame *f, int char_width, int char_height, | |
126 int *pixel_width, int *pixel_height); | |
428 | 127 void pixel_to_char_size (struct frame *f, int pixel_width, int pixel_height, |
128 int *char_width, int *char_height); | |
129 void char_to_pixel_size (struct frame *f, int char_width, int char_height, | |
130 int *pixel_width, int *pixel_height); | |
131 void round_size_to_char (struct frame *f, int in_width, int in_height, | |
132 int *out_width, int *out_height); | |
133 void change_frame_size (struct frame *frame, | |
134 int newlength, int newwidth, | |
135 int delay); | |
136 void adjust_frame_size (struct frame *frame); | |
5043 | 137 void internal_set_frame_size (struct frame *f, int cols, int rows, |
138 int pretend); | |
428 | 139 void frame_size_slipped (Lisp_Object specifier, struct frame *f, |
140 Lisp_Object oldval); | |
141 void select_frame_1 (Lisp_Object frame); | |
142 void select_frame_2 (Lisp_Object frame); | |
143 struct frame *selected_frame (void); | |
144 struct frame *device_selected_frame (struct device *d); | |
145 struct frame *decode_frame (Lisp_Object frame); | |
146 struct frame *decode_frame_or_selected (Lisp_Object cdf); | |
147 Lisp_Object make_frame (struct frame *f); | |
148 int other_visible_frames (struct frame *f); | |
149 void delete_frame_internal (struct frame *f, int force, | |
150 int called_from_delete_device, | |
151 int from_io_error); | |
152 void io_error_delete_frame (Lisp_Object frame); | |
153 Lisp_Object find_some_frame (int (*predicate) (Lisp_Object, void *), | |
154 void *closure); | |
444 | 155 int device_matches_device_spec (Lisp_Object device, Lisp_Object device_spec); |
428 | 156 Lisp_Object frame_first_window (struct frame *f); |
157 void set_frame_selected_window (struct frame *f, Lisp_Object window); | |
158 int is_surrogate_for_selected_frame (struct frame *f); | |
159 void update_frame_icon (struct frame *f); | |
160 void invalidate_vertical_divider_cache_in_frame (struct frame *f); | |
161 | |
438 | 162 void init_frame (void); |
163 | |
5077
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
164 enum edge_pos |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
165 { |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
166 TOP_EDGE, |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
167 BOTTOM_EDGE, |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
168 LEFT_EDGE, |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
169 RIGHT_EDGE, |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
170 NUM_EDGES |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
171 }; |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
172 |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
173 /* Iterate over all possible edge positions */ |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
174 #define EDGE_POS_LOOP(var) \ |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
175 for (var = (enum edge_pos) 0; var < NUM_EDGES; \ |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
176 var = (enum edge_pos) (var + 1)) |
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
177 |
440 | 178 #endif /* INCLUDED_frame_h_ */ |