summaryrefslogtreecommitdiff
path: root/src/profiler.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-07-31 09:55:49 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-07-31 10:13:36 -0700
commit0f23e95b29a7a0a07bba0e9bc796cd7b7bc7232a (patch)
treecc081e1fbfeae45269d3a8c64b3be33e4f53fb02 /src/profiler.c
parent8a7a99e0280103e223b8e1a717107bdf9b8eabc7 (diff)
downloademacs-0f23e95b29a7a0a07bba0e9bc796cd7b7bc7232a.tar.gz
Fix some int overflows in profiler.c
* src/profiler.c (make_log): Make args EMACS_INT, not int, to avoid unwanted behavior on 'int' overflow. (make_log, evict_lower_half, record_backtrace): Use ptrdiff_t, not int, for object indexes.
Diffstat (limited to 'src/profiler.c')
-rw-r--r--src/profiler.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/profiler.c b/src/profiler.c
index d4c98a82657..efdb1d9fe14 100644
--- a/src/profiler.c
+++ b/src/profiler.c
@@ -38,7 +38,7 @@ typedef struct Lisp_Hash_Table log_t;
static struct hash_table_test hashtest_profiler;
static Lisp_Object
-make_log (int heap_size, int max_stack_depth)
+make_log (EMACS_INT heap_size, EMACS_INT max_stack_depth)
{
/* We use a standard Elisp hash-table object, but we use it in
a special way. This is OK as long as the object is not exposed
@@ -53,7 +53,7 @@ make_log (int heap_size, int max_stack_depth)
/* What is special about our hash-tables is that the keys are pre-filled
with the vectors we'll put in them. */
- int i = ASIZE (h->key_and_value) / 2;
+ ptrdiff_t i = ASIZE (h->key_and_value) >> 1;
while (i > 0)
set_hash_key_slot (h, --i,
Fmake_vector (make_number (max_stack_depth), Qnil));
@@ -120,12 +120,11 @@ static void evict_lower_half (log_t *log)
Fremhash (key, tmp);
}
eassert (EQ (log->next_free, make_number (i)));
- {
- int j;
- eassert (VECTORP (key));
- for (j = 0; j < ASIZE (key); j++)
- ASET (key, j, Qnil);
- }
+
+ eassert (VECTORP (key));
+ for (ptrdiff_t j = 0; j < ASIZE (key); j++)
+ ASET (key, j, Qnil);
+
set_hash_key_slot (log, i, key);
}
}
@@ -165,9 +164,8 @@ record_backtrace (log_t *log, EMACS_INT count)
else
{ /* BEWARE! hash_put in general can allocate memory.
But currently it only does that if log->next_free is nil. */
- int j;
eassert (!NILP (log->next_free));
- j = hash_put (log, backtrace, make_number (count), hash);
+ ptrdiff_t j = hash_put (log, backtrace, make_number (count), hash);
/* Let's make sure we've put `backtrace' right where it
already was to start with. */
eassert (index == j);