comparison src/redisplay-output.c @ 5038:9410323e4b0d

major dynarr fixes -------------------- ChangeLog entries follow: -------------------- src/ChangeLog addition: 2010-02-20 Ben Wing <ben@xemacs.org> * device-x.c (Fx_get_resource): * dynarr.c: * dynarr.c (Dynarr_realloc): * dynarr.c (Dynarr_newf): * dynarr.c (Dynarr_lisp_realloc): * dynarr.c (Dynarr_lisp_newf): * dynarr.c (Dynarr_resize): * dynarr.c (Dynarr_insert_many): * dynarr.c (Dynarr_delete_many): * dynarr.c (Dynarr_memory_usage): * dynarr.c (stack_like_free): * file-coding.c (coding_reader): * file-coding.c (gzip_convert): * gutter.c (output_gutter): * lisp.h: * lisp.h (Dynarr_declare): * lisp.h (DYNARR_SET_LISP_IMP): * lisp.h (CHECK_NATNUM): * profile.c (create_timing_profile_table): * redisplay-output.c (sync_rune_structs): * redisplay-output.c (sync_display_line_structs): * redisplay-output.c (redisplay_output_window): * redisplay.c: * redisplay.c (get_display_block_from_line): * redisplay.c (add_ichar_rune_1): * redisplay.c (ensure_modeline_generated): * redisplay.c (generate_displayable_area): * redisplay.c (regenerate_window): * redisplay.c (update_line_start_cache): * signal.c: * signal.c (check_quit): Lots of rewriting of dynarr code. (1) Lots of documentation added. Also fix places that referenced a now-bogus internals node concerning redisplay critical sections. (2) Rename: Dynarr_add_lisp_string -> Dynarr_add_ext_lisp_string Dynarr_set_length -> Dynarr_set_lengthr ("restricted") Dynarr_increment -> Dynarr_incrementr Dynarr_resize_if -> Dynarr_resize_to_add (3) New functions: Dynarr_elsize = dy->elsize_ Dynarr_set_length(): Set length, resizing as necessary Dynarr_set_length_and_zero(): Set length, resizing as necessary, zeroing out new elements Dynarr_increase_length(), Dynarr_increase_length_and_zero(): Optimization of Dynarr_set_length(), Dynarr_set_length_and_zero() when size is known to increase Dynarr_resize_to_fit(): Resize as necessary to fit a given length. Dynarr_set(): Set element at a given position, increasing length as necessary and setting any newly created positions to 0 (4) Use Elemcount, Bytecount. (5) Rewrite many macros as inline functions.
author Ben Wing <ben@xemacs.org>
date Sat, 20 Feb 2010 03:46:22 -0600
parents 0d4c9d0f6a8d
children 548f1f47eb82
comparison
equal deleted inserted replaced
5037:e70a73f9243d 5038:9410323e4b0d
81 /* #### Doing this directly breaks the encapsulation. But, the 81 /* #### Doing this directly breaks the encapsulation. But, the
82 running time of this function has a measurable impact on 82 running time of this function has a measurable impact on
83 redisplay performance so avoiding all excess overhead is a 83 redisplay performance so avoiding all excess overhead is a
84 good thing. Is all of this true? */ 84 good thing. Is all of this true? */
85 memcpy (cra->base, dra->base, sizeof (struct rune) * max_move); 85 memcpy (cra->base, dra->base, sizeof (struct rune) * max_move);
86 Dynarr_set_length (cra, max_move); 86 Dynarr_set_lengthr (cra, max_move);
87 } 87 }
88 else 88 else
89 Dynarr_reset (cra); 89 Dynarr_reset (cra);
90 90
91 for (rune_elt = max_move; rune_elt < Dynarr_length (dra); rune_elt++) 91 for (rune_elt = max_move; rune_elt < Dynarr_length (dra); rune_elt++)
169 169
170 cdb = Dynarr_atp (clp->display_blocks, db_elt); 170 cdb = Dynarr_atp (clp->display_blocks, db_elt);
171 tr = cdb->runes; 171 tr = cdb->runes;
172 memcpy (cdb, ddb, sizeof (struct display_block)); 172 memcpy (cdb, ddb, sizeof (struct display_block));
173 cdb->runes = tr; 173 cdb->runes = tr;
174 Dynarr_increment (clp->display_blocks); 174 Dynarr_incrementr (clp->display_blocks);
175 } 175 }
176 176
177 sync_rune_structs (w, cdb->runes, ddb->runes); 177 sync_rune_structs (w, cdb->runes, ddb->runes);
178 } 178 }
179 } 179 }
181 if (local) 181 if (local)
182 Dynarr_add (cdla, *clp); 182 Dynarr_add (cdla, *clp);
183 else if (line >= Dynarr_length (cdla)) 183 else if (line >= Dynarr_length (cdla))
184 { 184 {
185 assert (line == Dynarr_length (cdla)); 185 assert (line == Dynarr_length (cdla));
186 Dynarr_increment (cdla); 186 Dynarr_incrementr (cdla);
187 } 187 }
188 } 188 }
189 189
190 /***************************************************************************** 190 /*****************************************************************************
191 compare_runes 191 compare_runes
2462 } 2462 }
2463 2463
2464 /* If the number of display lines has shrunk, adjust. */ 2464 /* If the number of display lines has shrunk, adjust. */
2465 if (cdla_len > ddla_len) 2465 if (cdla_len > ddla_len)
2466 { 2466 {
2467 Dynarr_set_length (cdla, ddla_len); 2467 Dynarr_set_lengthr (cdla, ddla_len);
2468 } 2468 }
2469 2469
2470 /* Output a vertical divider between windows, if necessary. */ 2470 /* Output a vertical divider between windows, if necessary. */
2471 if (window_needs_vertical_divider (w) 2471 if (window_needs_vertical_divider (w)
2472 && (f->windows_structure_changed || f->clear)) 2472 && (f->windows_structure_changed || f->clear))