]> git.eshelyaron.com Git - emacs.git/commit
Bignums from garbage-collect, memory-use-counts
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Jan 2019 23:06:50 +0000 (15:06 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Jan 2019 23:07:16 +0000 (15:07 -0800)
commit8b5f05e93871a6a6f853b3f0807eb0a3660f5f5e
treee9ee28ae75a293f7abb469f14ad2f9458b8f2348
parentba1b340988ab79a1173f402f8f66bff06e0dd7c5
Bignums from garbage-collect, memory-use-counts

Do not limit the results of garbage-collect and memory-use-counts
to fixnums, as they might be bignums now on 32-bit hosts.
* src/lisp.h (byte_ct): New type.
* src/alloc.c (object_ct): New type.
(consing_since_gc, gc_relative_threshold)
(memory_full_cons_threshold, total_string_bytes):
Now byte_ct, not EMACS_INT.
(total_conses, total_symbols, total_buffers, total_free_conses)
(total_free_symbols, total_free_floats, total_floats)
(total_free_intervals, total_intervals, total_strings)
(total_free_strings, total_vectors, total_vector_slots)
(total_free_vector_slots): Now object_ct, not EMACS_INT.
(bounded_number): Remove.  All uses removed.
(object_bytes): New function.
(total_bytes_of_live_objects, garbage_collect_1): Use byte_ct,
not size_t, to count total GC bytes where multiple objects are
involved.
(garbage_collect_1, Fmemory_use_counts):
Do not limit returned counts to fixnums.
(sweep_conses, sweep_floats, sweep_intervals, sweep_symbols):
Use object_ct, not EMACS_INT, to count GC objects.
src/alloc.c
src/lisp.h