Mercurial > hg > xemacs-beta
annotate lib-src/ellcc.h.in @ 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 | bbba13600d74 |
children | 365bc8cb5894 |
rev | line source |
---|---|
388 | 1 /* DO NOT EDIT THIS FILE!!!! */ |
2 | |
3 /* Most of this is required due to a bug in the GCC compiler driver | |
4 which prevents us from passing this on the command line. It also | |
5 reduces the compiler command line length, which can be a problem | |
6 on some systems. */ | |
7 | |
8 #ifndef ELLCC_HDR | |
9 #define ELLCC_HDR | |
10 | |
1111 | 11 #define ELLCC_CC "@XEMACS_CC@" |
2377 | 12 #define ELLCC_CFLAGS "@XE_CFLAGS@" |
388 | 13 #define ELLCC_CPPFLAGS "@CPPFLAGS@" |
14 #define ELLCC_LDFLAGS "@LDFLAGS@" | |
15 #define ELLCC_CF_GENERAL "@c_switch_general@" | |
16 #define ELLCC_CF_ALL "@c_switch_all@" | |
17 #define ELLCC_LF_GENERAL "@ld_switch_general@" | |
18 #define ELLCC_LF_ALL "@ld_switch_all@" | |
19 #define ELLCC_LIBS_GENERAL "@ld_libs_general@" | |
20 #define ELLCC_DLL_CFLAGS "@dll_cflags@" | |
21 #define ELLCC_DLL_LDFLAGS "@dll_ldflags@" | |
22 #define ELLCC_DLL_POST "@dll_post@" | |
23 #define ELLCC_DLL_LD "@dll_ld@" | |
24 #define ELLCC_DLL_LDO "@dll_ldo@" | |
25 #define ELLCC_CONFIG "@configuration@" | |
26 #define ELLCC_EMACS_VER "@version@" | |
27 #define ELLCC_PROGNAME "@PROGNAME@" | |
28 #define ELLCC_ARCHDIR "@ARCHLIBDIR@" | |
29 #define ELLCC_MODDIR "@MODULEDIR@" | |
30 #define ELLCC_SITEMODS "@SITEMODULEDIR@" | |
31 | |
32 #endif /* ELLCC_HDR */ | |
33 |