diff options
| author | Paul Eggert | 2011-09-21 10:41:20 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-21 10:41:20 -0700 |
| commit | d311d28c3f8a3c43e6ef33d68b852c5ea7f13239 (patch) | |
| tree | 84b390c8bd472074294a31d51e790437f0a9a75d /src/search.c | |
| parent | 4768be09c9866add356a0a9b47ecd42346442b9f (diff) | |
| download | emacs-d311d28c3f8a3c43e6ef33d68b852c5ea7f13239.tar.gz emacs-d311d28c3f8a3c43e6ef33d68b852c5ea7f13239.zip | |
* alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
(allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
(string_bytes, check_sblock, allocate_string_data):
(compact_small_strings, Fmake_bool_vector, make_string)
(make_unibyte_string, make_multibyte_string)
(make_string_from_bytes, make_specified_string)
(allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
(make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
(mark_vectorlike):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(allocate_pseudovector):
Use int, not EMACS_INT, where int is wide enough.
(inhibit_garbage_collection, Fgarbage_collect):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
int might not be wide enough.
(bidi_cache_search, bidi_cache_find, bidi_init_it)
(bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
(bidi_at_paragraph_end, bidi_find_paragraph_start)
(bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
(bidi_level_of_next_char, bidi_move_to_visually_next):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* buffer.c (copy_overlays, Fgenerate_new_buffer_name)
(Fkill_buffer, Fset_buffer_major_mode)
(advance_to_char_boundary, Fbuffer_swap_text)
(Fset_buffer_multibyte, overlays_at, overlays_in)
(overlay_touches_p, struct sortvec, record_overlay_string)
(overlay_strings, recenter_overlay_lists)
(adjust_overlays_for_insert, adjust_overlays_for_delete)
(fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
(Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
(Foverlay_recenter, last_overlay_modification_hooks_used)
(report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(validate_region): Omit unnecessary test for b <= e, since
that's guaranteed by the previous test.
(adjust_overlays_for_delete): Avoid pos + length overflow.
(Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
(report_overlay_modification):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
Omit pointer cast, which isn't needed anyway, and doesn't work
after the EMACS_INT -> ptrdiff_t change.
* buffer.h: Adjust decls to match defn changes elsewhere.
(struct buffer_text, struct buffer):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
Use EMACS_INT, not int, where int might not be wide enough.
* bytecode.c (exec_byte_code): Use ptrdiff_t, not int, to avoid
needless 32-bit limit on 64-bit hosts. Remove unnecessary
memory-full test. Use EMACS_INT, not ptrdiff_t or int, where
ptrdiff_t or int might not be wide enough.
* callint.c (Fcall_interactively):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* callproc.c (call_process_kill, Fcall_process):
Don't assume pid_t fits into an Emacs fixnum.
(call_process_cleanup, Fcall_process, child_setup):
Don't assume pid_t fits into int.
(call_process_cleanup, Fcall_process, delete_temp_file)
(Fcall_process_region):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Fcall_process): Simplify handling of volatile integers.
Use int, not EMACS_INT, where int will do.
* casefiddle.c (casify_object, casify_region, operate_on_word)
(Fupcase_word, Fdowncase_word, Fcapitalize_word):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(casify_object): Avoid integer overflow when overallocating buffer.
* casetab.c (set_identity, shuffle): Prefer int to unsigned when
either works.
* category.c (Fchar_category_set): Don't assume fixnum fits in int.
* category.h (CATEGORYP): Don't assume arg is nonnegative.
* ccl.c (GET_CCL_INT): Remove; no longer needed, since the
integers are now checked earlier. All uses replaced with XINT.
(ccl_driver):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
For CCL_MapSingle, check that content and value are in int range.
(resolve_symbol_ccl_program): Check that vector header is in range.
Always copy the vector, so that we can check its contents reliably
now rather than having to recheck each instruction as it's being
executed. Check that vector words fit in 'int'.
(ccl_get_compiled_code, Fregister_ccl_program)
(Fregister_code_conversion_map): Use ptrdiff_t, not int, for
program indexes, to avoid needless 32-bit limit on 64-bit hosts.
(Fccl_execute, Fccl_execute_on_string): Check that initial reg
contents are in range.
(Fccl_execute_on_string): Check that status is in range.
* ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
* character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
Accept and return EMACS_INT, not int, because callers can pass values
out of 'int' range.
(c_string_width, strwidth, lisp_string_width, chars_in_text)
(multibyte_chars_in_text, parse_str_as_multibyte)
(str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
(str_as_unibyte, str_to_unibyte, string_count_byte8)
(string_escape_byte8, Fget_byte):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Funibyte_string): Use CHECK_CHARACTER, not CHECK_NATNUM, to
avoid mishandling large integers.
* character.h: Adjust decls to match defn changes elsewhere.
* charset.c (load_charset_map_from_file, find_charsets_in_text)
(Ffind_charset_region):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(load_charset_map_from_file): Redo idx calculation to avoid overflow.
(load_charset_map_from_vector, Fdefine_charset_internal):
Don't assume fixnum fits in int or unsigned int.
(load_charset_map_from_vector, Fmap_charset_chars):
Remove now-unnecessary CHECK_NATNUMs.
(Fdefine_charset_internal): Check ranges here, more carefully.
* chartab.c (Fmake_char_table, Fset_char_table_range)
(uniprop_get_decoder, uniprop_get_encoder):
Don't assume fixnum fits in int.
* cmds.c (move_point): New function, that does the gist of
Fforward_char and Fbackward_char, but does so while checking
for integer overflow more accurately.
(Fforward_char, Fbackward_char, internal_self_insert): Use it.
(Fforward_line, Fend_of_line, internal_self_insert)
(internal_self_insert):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
Fix a FIXME, by checking for integer overflow when calculating
target_clm and actual_clm.
* coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
(ASSURE_DESTINATION, coding_alloc_by_realloc)
(coding_alloc_by_making_gap, alloc_destination)
(detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
(encode_coding_utf_16, detect_coding_emacs_mule)
(decode_coding_emacs_mule, encode_coding_emacs_mule)
(detect_coding_iso_2022, decode_coding_iso_2022)
(encode_invocation_designation, encode_designation_at_bol)
(encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
(decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
(encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
(encode_coding_ccl, encode_coding_raw_text)
(detect_coding_charset, decode_coding_charset)
(encode_coding_charset, detect_eol, decode_eol, produce_chars)
(produce_composition, produce_charset, produce_annotation)
(decode_coding, handle_composition_annotation)
(handle_charset_annotation, consume_chars, decode_coding_gap)
(decode_coding_object, encode_coding_object, detect_coding_system)
(Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
(code_convert_region, code_convert_string)
(Fdefine_coding_system_internal):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
(Fdefine_coding_system_internal):
Don't assume fixnums fit in int.
(decode_coding_gap, decode_coding_object, encode_coding_object)
(Fread_coding_system, Fdetect_coding_region, Funencodable_char_position)
(Fcheck_coding_systems_region):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Ffind_operation_coding_system): NATNUMP can eval its arg twice.
(Fdefine_coding_system_internal): Check for charset-id overflow.
* coding.h: Adjust decls to match defn changes elsewhere.
(struct coding_system):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* composite.c (get_composition_id, find_composition)
(run_composition_function, update_compositions)
(compose_text, composition_gstring_put_cache)
(composition_gstring_p, composition_gstring_width)
(fill_gstring_header, fill_gstring_body, autocmp_chars)
(composition_compute_stop_pos, composition_reseat_it)
(composition_update_it, struct position_record)
(find_automatic_composition, composition_adjust_point)
(Fcomposition_get_gstring, Ffind_composition_internal):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(update_compositions):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* composite.h: Adjust decls to match defn changes elsewhere.
(struct composition):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
Do not attempt to compute the address of the object just before a
buffer; this is not portable.
(Faref, Faset):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Faset): Use int, not EMACS_INT, where int is wide enough.
(Fstring_to_number): Don't assume fixnums fit in int.
(Frem): Don't assume arg is nonnegative.
* dbusbind.c (xd_append_arg): Check for integers out of range.
(Fdbus_call_method): Don't overflow the timeout int.
* dired.c (directory_files_internal, file_name_completion, scmp)
(file_name_completion_stat):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(file_name_completion): Don't overflow matchcount.
(file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
* dispextern.h: Adjust decls to match defn changes elsewhere.
(struct text_pos, struct glyph, struct bidi_saved_info)
(struct bidi_string_data, struct bidi_it, struct composition_it)
(struct it):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(struct display_pos, struct composition_it, struct it):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* dispnew.c (increment_matrix_positions)
(increment_row_positions, mode_line_string)
(marginal_area_string):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(change_frame_size_1, Fredisplay):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(duration_to_sec_usec): New function, to check for overflow better.
(Fsleep_for, sit_for): Use it.
* doc.c (get_doc_string, store_function_docstring):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(get_doc_string, Fsnarf_documentation):
Use int, not EMACS_INT, where int is wide enough.
(get_doc_string):
Use SAFE_ALLOCA, not alloca.
Check for overflow when converting EMACS_INT to off_t.
* doprnt.c (doprnt):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
Don't assume uid_t fits into fixnum.
(buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
(Ffield_string, Ffield_string_no_properties, Ffield_beginning)
(Ffield_end, Fconstrain_to_field, Fline_beginning_position)
(Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
(general_insert_function)
(Finsert_char, make_buffer_string, make_buffer_string_both)
(update_buffer_properties, Fbuffer_substring)
(Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
(Fsubst_char_in_region, check_translation)
(Ftranslate_region_internal, save_restriction_restore, Fformat)
(transpose_markers, Ftranspose_regions):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(clip_to_bounds): Move to lisp.h as an inline function).
(Fconstrain_to_field): Don't assume integers are nonnegative.
(Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
(Fsubst_char_in_region, Fsave_restriction):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Femacs_pid): Don't assume pid_t fits into fixnum.
(lo_time): Use int, not EMACS_INT, when int suffices.
(lisp_time_argument): Check for usec out of range.
(Fencode_time): Don't assume fixnum fits in int.
* emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
(gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
(PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
(init_cmdargs, Fdump_emacs):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Fkill_emacs): Don't assume fixnum fits in int; instead, take just
the bottom (typically) 32 bits of the fixnum.
* eval.c (specpdl_size, call_debugger):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(when_entered_debugger, Fbacktrace_debug):
Don't assume fixnum can fit in int.
(Fdefvaralias, Fdefvar): Do not attempt to compute the address of
the object just before a buffer; this is not portable.
(FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
(grow_specpdl, unbind_to):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
(grow_specpdl): Simplify allocation by using xpalloc.
* fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
(Finsert_file_contents, Fwrite_region, Fdo_auto_save):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
(a_write, e_write):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fcopy_file, non_regular_nbytes, read_non_regular)
(Finsert_file_contents):
Use int, not EMACS_INT, where int is wide enough.
(READ_BUF_SIZE): Verify that it fits in int.
(Finsert_file_contents): Check that counts are in proper range,
rather than assuming fixnums fit into ptrdiff_t etc.
Don't assume fixnums fit into int.
(Fdo_auto_save, Fset_buffer_auto_saved)
(Fclear_buffer_auto_save_failure):
Don't assume time_t is signed, or that it fits in int.
* fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec)
(concat, string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
(string_char_to_byte, string_byte_to_char)
(string_make_multibyte, string_to_multibyte)
(string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
(Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
(substring_both, Fdelete, internal_equal, Ffillarray)
(Fclear_string, mapcar1)
(Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
(Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
(larger_vector, make_hash_table, maybe_resize_hash_table)
(hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
(Fmaphash, secure_hash):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(concat): Check for string index and length overflow.
(Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
(Frequire):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(larger_vector): New API (vec, incr_min, size_max) replaces old
one (vec, new_size, init). This catches size overflow.
INIT was removed because it was always Qnil.
All callers changed.
(INDEX_SIZE_BOUND): New macro, which calculates more precisely
the upper bound on a hash table index size.
(make_hash_table, maybe_resize_hash_table): Use it.
(secure_hash): Computer start_byte and end_byte only after
they're known to be in ptrdiff_t range.
* font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
(Ffont_get_glyphs, Ffont_at):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(font_style_to_value, font_prop_validate_style, font_expand_wildcards)
(Flist_fonts, Fopen_font):
Don't assume fixnum can fit in int.
(check_gstring): Don't assume index can fit in int.
(font_match_p): Check that fixnum is a character, not a nonnegative
fixnum, since the later code needs to stuff it into an int.
(font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
(font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
conversion overflow issues.
(Fopen_font): Check for integer out of range.
(Ffont_get_glyphs): Don't assume index can fit in int.
* font.h: Adjust decls to match defn changes elsewhere.
* fontset.c (reorder_font_vector): Redo score calculation to avoid
integer overflow.
(num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
printmax_t, where ptrdiff_t is wide enough.
(Finternal_char_font):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
(Fset_frame_height, Fset_frame_width, Fset_frame_size)
(Fset_frame_position, x_set_frame_parameters)
(x_set_line_spacing, x_set_border_width)
(x_set_internal_border_width, x_set_alpha, x_figure_window_size):
Check that fixnums are in proper range for system types.
(frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fmodify_frame_parameters): Don't assume fixnum fits in int.
Use SAFE_ALLOCA_LISP, not alloca.
* frame.h (struct frame): Use intptr_t, not EMACS_INT, where
intptr_t is wide enough.
* fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
(Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
(Ffringe_bitmaps_at_pos): Don't assume index fits in int.
Check for fixnum out of range.
* ftfont.c (ftfont_list): Don't assume index fits in int.
Check that fixnums are in proper range for system types.
(ftfont_shape_by_flt):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
Remove no-longer-needed lint_assume.
* gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
Check that fixnums are in proper range for system types.
* gnutls.h: Adjust decls to match defn changes elsewhere.
* gtkutil.c (xg_dialog_run):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(update_frame_tool_bar):
Check that fixnums are in proper range for system types.
* image.c (parse_image_spec): Redo count calculation to avoid overflow.
(lookup_image): Check that fixnums are in proper range for system types.
* indent.c (last_known_column, last_known_column_point):
(current_column_bol_cache):
(skip_invisible, current_column, check_display_width):
(check_display_width, scan_for_column, current_column_1)
(Findent_to, Fcurrent_indentation, position_indentation)
(indented_beyond_p, Fmove_to_column, compute_motion):
(Fcompute_motion, Fvertical_motion):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(last_known_column_modified): Use EMACS_INT, not int.
(check_display_width):
(Fcompute_motion):
Check that fixnums and floats are in proper range for system types.
(compute_motion): Don't assume index or fixnum fits in int.
(compute_motion, Fcompute_motion):
Use int, not EMACS_INT, when it is wide enough.
(vmotion): Omit local var start_hpos that is always 0; that way
we don't need to worry about overflow in expressions involving it.
* indent.h: Adjust decls to match defn changes elsewhere.
(struct position):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
Use int, not EMACS_INT, where int is wide enough.
Remove unused members ovstring_chars_done and tab_offset;
all uses removed.
* insdel.c (move_gap, move_gap_both, gap_left, gap_right)
(adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
(adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
(make_gap, copy_text, insert, insert_and_inherit)
(insert_before_markers, insert_before_markers_and_inherit)
(insert_1, count_combining_before, count_combining_after)
(insert_1_both, insert_from_string)
(insert_from_string_before_markers, insert_from_string_1)
(insert_from_gap, insert_from_buffer, insert_from_buffer_1)
(adjust_after_replace, adjust_after_insert, replace_range)
(replace_range_2, del_range, del_range_1, del_range_byte)
(del_range_both, del_range_2, modify_region)
(prepare_to_modify_buffer, signal_before_change)
(signal_after_change, Fcombine_after_change_execute):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* intervals.c (traverse_intervals, rotate_right, rotate_left)
(balance_an_interval, split_interval_right, split_interval_left)
(find_interval, next_interval, update_interval)
(adjust_intervals_for_insertion, delete_node, delete_interval)
(interval_deletion_adjustment, adjust_intervals_for_deletion)
(static_offset_intervals, offset_intervals)
(merge_interval_right, merge_interval_left, make_new_interval)
(graft_intervals_into_buffer, temp_set_point_both)
(temp_set_point, set_point, adjust_for_invis_intang)
(set_point_both, move_if_not_intangible, get_property_and_range)
(get_local_map, copy_intervals, copy_intervals_to_string)
(compare_string_intervals, set_intervals_multibyte_1):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* intervals.h: Adjust decls to match defn changes elsewhere.
(struct interval):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* keyboard.c (this_command_key_count, this_single_command_key_start)
(before_command_key_count, before_command_echo_length, echo_now)
(echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
(command_loop_1, safe_run_hooks, read_char, timer_check_2)
(menu_item_eval_property, read_key_sequence, Fread_key_sequence)
(Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(last_non_minibuf_size, last_point_position, echo_truncate)
(command_loop_1, adjust_point_for_property, read_char, gen_help_event)
(make_lispy_position, make_lispy_event, parse_modifiers_uncached)
(parse_modifiers, modify_event_symbol, Fexecute_extended_command)
(stuff_buffered_input):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(last_auto_save, command_loop_1, read_char):
Use EMACS_INT, not int, to avoid integer overflow.
(record_char): Avoid overflow in total_keys computation.
(parse_modifiers_uncached): Redo index calculation to avoid overflow.
* keyboard.h: Adjust decls to match defn changes elsewhere.
* keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
(Fkey_description, Fdescribe_vector, Flookup_key):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(click_position): New function, to check that positions are in range.
(Fcurrent_active_maps):
(describe_command):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Faccessible_keymaps, Fkey_description):
(preferred_sequence_p):
Don't assume fixnum can fit into int.
(Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
Check for integer overflow in size calculations.
(Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
avoid mishandling large integers.
* lisp.h: Adjust decls to match defn changes elsewhere.
(ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
(struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
(struct Lisp_Marker):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(clip_to_bounds): Now an inline function, moved here from editfns.c.
(XSETSUBR): Use size of 0 since the actual size doesn't matter,
and using 0 avoids overflow.
(GLYPH_CODE_P): Check for overflow in system types, subsuming the
need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
All callers changed.
(GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
Assume the arg has valid form, since it always does.
(TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
unsigned integer system type.
(CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
(struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
(duration_to_sec_usec): New decl.
* lread.c (read_from_string_index, read_from_string_index_byte)
(read_from_string_limit, readchar, unreadchar, openp)
(read_internal_start, read1, oblookup):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fload, readevalloop, Feval_buffer, Feval_region):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(openp): Check for out-of-range argument to 'access'.
(read1): Use int, not EMACS_INT, where int is wide enough.
Don't assume fixnum fits into int.
* macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
in size calculation.
(Fexecute_kbd_macro):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* marker.c (cached_charpos, cached_bytepos, CONSIDER)
(byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
(buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
(set_marker_both, set_marker_restricted_both, marker_position)
(marker_byte_position, Fbuffer_has_markers_at):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
* menu.c (ensure_menu_items): Renamed from grow_menu_items.
It now merely ensures that the menu is large enough, without
necessarily growing it, as this avoids some integer overflow issues.
All callers changed.
(keymap_panes, parse_single_submenu, Fx_popup_menu):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
Use SAFE_ALLOCA_LISP, not alloca.
(find_and_return_menu_selection): Avoid unnecessary casts of pointers
to EMACS_INT. Check that fixnums are in proper range for system types.
* minibuf.c (minibuf_prompt_width, string_to_object)
(Fminibuffer_contents, Fminibuffer_contents_no_properties)
(Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(get_minibuffer, read_minibuf_unwind):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
this simplifies overflow checking. All callers changed.
(read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
(Ftest_completion):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
(x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
Check that fixnums are in proper range for system types.
(Fx_create_frame, Fx_show_tip):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* nsfont.m (ns_findfonts, nsfont_list_family):
Don't assume fixnum fits in long.
* nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
wide enough.
* nsselect.m (ns_get_local_selection):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
(PRINTDECLARE, PRINTPREPARE):
(strout, print_string):
(print, print_preprocess, print_check_string_charset_prop)
(print_object):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(PRINTDECLARE):
(temp_output_buffer_setup, Fprin1_to_string, print_object):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
(PRINTFINISH): Use SAFE_ALLOCA, not alloca.
(printchar, strout): Use xpalloc to catch size calculation overflow.
(Fexternal_debugging_output): Use CHECK_CHARACTER, not CHECK_NUMBER,
to avoid mishandling large integers.
(print_error_message): Use SAFE_ALLOCA, not alloca.
(print_object): Use int, not EMACS_INT, where int is wide enough.
* process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
(Fset_process_window_size, Fformat_network_address)
(get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
(Fsignal_process, sigchld_handler):
Check that fixnums are in proper range for system types.
(Fformat_network_address, read_process_output, send_process)
(Fprocess_send_region, status_notify):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fformat_network_address, Fmake_serial_process, Fmake_network_process)
(wait_reading_process_output, read_process_output, exec_sentinel):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
(Faccept_process_output): Use duration_to_sec_usec to do proper
overflow checking on durations.
* scroll.c (calculate_scrolling, calculate_direct_scrolling)
(line_ins_del): Use int, not EMACS_INT, where int is wide enough.
* search.c (looking_at_1, string_match_1):
(fast_string_match, fast_c_string_match_ignore_case)
(fast_string_match_ignore_case, fast_looking_at, scan_buffer)
(scan_newline, find_before_next_newline, search_command)
(trivial_regexp_p, search_buffer, simple_search, boyer_moore)
(set_search_regs, wordify):
(Freplace_match):
(Fmatch_data):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(string_match_1, search_buffer, set_search_regs):
(Fmatch_data):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(wordify): Check for overflow in size calculation.
(Freplace_match): Avoid potential buffer overflow in search_regs.start.
(Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
Check that fixnums are in proper range for system types.
* sound.c (struct sound_device)
(wav_play, au_play, vox_write, alsa_period_size, alsa_write):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fplay_sound_internal):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* syntax.c (ST_COMMENT_STYLE, ST_STRING_STYLE):
In definitions, make it clearer that these values must be out of range
for the respective integer ranges. This fixes a bug with ST_STRING_STYLE
and non-ASCII characters.
(struct lisp_parse_state, find_start_modiff)
(Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
(Fparse_partial_sexp):
Don't assume fixnums can fit in int.
(struct lisp_parse_state, find_start_pos, find_start_value)
(find_start_value_byte, find_start_begv)
(update_syntax_table, char_quoted, dec_bytepos)
(find_defun_start, prev_char_comend_first, back_comment):
(scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
(scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Finternal_describe_syntax_value): Check that match_lisp is a
character, not an integer, since the code stuffs it into int.
(scan_words, scan_sexps_forward):
Check that fixnums are in proper range for system types.
(Fforward_word):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(scan_sexps_forward):
Use CHARACTERP, not INTEGERP, since the value must fit into int.
(Fparse_partial_sexp): Fix doc; element 8 is not ignored.
* syntax.h: Adjust decls to match defn changes elsewhere.
(struct gl_state_s):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* sysdep.c (wait_for_termination_1, wait_for_termination)
(interruptible_wait_for_termination, mkdir):
Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
(emacs_read, emacs_write):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(system_process_attributes): Don't assume uid_t, gid_t, and
double all fit in int or even EMACS_INT.
* term.c (set_tty_color_mode):
Check that fixnums are in proper range for system types.
* termhooks.h (struct input_event):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* textprop.c (validate_interval_range, interval_of)
(Fadd_text_properties, set_text_properties_1)
(Fremove_text_properties, Fremove_list_of_text_properties)
(Ftext_property_any, Ftext_property_not_all)
(copy_text_properties, text_property_list, extend_property_ranges)
(verify_interval_modification):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fnext_single_char_property_change)
(Fprevious_single_char_property_change):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(copy_text_properties): Check for integer overflow in index calculation.
* undo.c (last_boundary_position, record_point, record_insert)
(record_delete, record_marker_adjustment, record_change)
(record_property_change):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
(Fx_hide_tip, Fx_file_dialog):
* w32menu.c (set_frame_menubar):
Use ptrdiff_t, not int, for consistency with rest of code.
* window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
(select_window, Fdelete_other_windows_internal)
(window_scroll_pixel_based, window_scroll_line_based)
(Frecenter, Fset_window_configuration):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(Fset_window_hscroll, run_window_configuration_change_hook)
(set_window_buffer, temp_output_buffer_show, scroll_command)
(Fscroll_other_window):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
Don't assume fixnum fits in int.
(Fset_window_scroll_bars):
Check that fixnums are in proper range for system types.
* xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
(string_pos, c_string_pos, number_of_chars, init_iterator)
(in_ellipses_for_invisible_text_p, init_from_display_pos)
(compute_stop_pos, next_overlay_change, compute_display_string_pos)
(compute_display_string_end, handle_face_prop)
(face_before_or_after_it_pos, handle_invisible_prop, handle_display_prop)
(handle_display_spec, handle_single_display_spec)
(display_prop_intangible_p, string_buffer_position_lim)
(string_buffer_position, handle_composition_prop, load_overlay_strings)
(get_overlay_strings_1, get_overlay_strings)
(iterate_out_of_display_property, forward_to_next_line_start)
(back_to_previous_visible_line_start, reseat, reseat_to_string)
(get_next_display_element, set_iterator_to_next)
(get_visually_first_element, compute_stop_pos_backwards)
(handle_stop_backwards, next_element_from_buffer)
(move_it_in_display_line_to, move_it_in_display_line)
(move_it_to, move_it_vertically_backward, move_it_by_lines)
(add_to_log, message_dolog, message_log_check_duplicate)
(message2, message2_nolog, message3, message3_nolog
(with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
(current_message_1, truncate_echo_area, truncate_message_1)
(set_message, set_message_1, store_mode_line_noprop)
(hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
(text_outside_line_unchanged_p, check_point_in_composition)
(reconsider_clip_changes)
(redisplay_internal, set_cursor_from_row, try_scrolling)
(try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
(redisplay_window, find_last_unchanged_at_beg_row)
(find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
(trailing_whitespace_p, find_row_edges, display_line)
(RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
(display_mode_element, store_mode_line_string)
(pint2str, pint2hrstr, decode_mode_spec)
(display_count_lines, display_string, draw_glyphs)
(x_produce_glyphs, x_insert_glyphs)
(rows_from_pos_range, mouse_face_from_buffer_pos)
(fast_find_string_pos, mouse_face_from_string_pos)
(note_mode_line_or_margin_highlight, note_mouse_highlight):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(safe_call, init_from_display_pos, handle_fontified_prop)
(handle_single_display_spec, load_overlay_strings)
(with_echo_area_buffer, setup_echo_area_for_printing)
(display_echo_area, echo_area_display)
(x_consider_frame_title, prepare_menu_bars, update_menu_bar)
(update_tool_bar, hscroll_window_tree, redisplay_internal)
(redisplay_window, dump_glyph_row, display_mode_line, Fformat_mode_line)
(decode_mode_spec, on_hot_spot_p):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(handle_single_display_spec, build_desired_tool_bar_string)
(redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
(get_specified_cursor_type):
Check that fixnums are in proper range for system types.
(struct overlay_entry, resize_mini_window, Fdump_glyph_row)
(Flookup_image_map):
Don't assume fixnums fit in int.
(compare_overlay_entries):
Avoid mishandling comparisons due to subtraction overflow.
(load_overlay_strings): Use SAFE_NALLOCA, not alloca.
(last_escape_glyph_face_id, last_glyphless_glyph_face_id):
(handle_tool_bar_click):
Use int, not unsigned, since we prefer signed and the signedness
doesn't matter here.
(get_next_display_element, next_element_from_display_vector):
Use int, not EMACS_INT, when int is wide enough.
(start_hourglass): Use duration_to_sec_usec to do proper
overflow checking on durations.
* xfaces.c (Fbitmap_spec_p):
Check that fixnums are in proper range for system types.
(compare_fonts_by_sort_order):
Avoid mishandling comparisons due to subtraction overflow.
(Fx_family_fonts, realize_basic_faces):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Fx_family_fonts):
Don't assume fixnum fits in int.
Use SAFE_ALLOCA_LISP, not alloca.
(merge_face_heights): Remove unnecessary cast to EMACS_INT.
(Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
(face_at_buffer_position, face_for_overlay_string)
(face_at_string_position):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
(merge_faces): Use int, not EMACS_INT, where int is wide enough.
* xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
(Fx_show_tip):
Check that fixnums are in proper range for system types.
(Fx_create_frame, x_create_tip_frame, Fx_show_tip)
(Fx_hide_tip, Fx_file_dialog, Fx_select_font):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(Fx_change_window_property): Don't assume fixnums fit in int.
* xfont.c (xfont_chars_supported):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* xmenu.c (Fx_popup_dialog, set_frame_menubar)
(create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* xml.c (parse_region):
* xrdb.c (magic_file_p):
Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
* xselect.c (TRACE1): Don't assume pid_t promotes to int.
(x_get_local_selection, x_reply_selection_request)
(x_handle_selection_request, wait_for_property_change):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
(selection_data_to_lisp_data): Use short, not EMACS_INT, where
short is wide enough.
(x_send_client_event): Don't assume fixnum fits in int.
* xterm.c (x_x_to_emacs_modifiers):
Don't assume EMACS_INT overflows nicely into int.
(x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
may come from Lisp.
(handle_one_xevent): NATNUMP can eval its arg twice.
(x_connection_closed):
Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
* xterm.h: Adjust decls to match defn changes elsewhere.
(struct scroll_bar): Use struct vectorlike_header
rather than rolling our own approximation.
(SCROLL_BAR_VEC_SIZE): Remove; not used.
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 243 |
1 files changed, 133 insertions, 110 deletions
diff --git a/src/search.c b/src/search.c index b3d67e6c431..7dc88268c76 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -90,16 +90,16 @@ static Lisp_Object Qinvalid_regexp; | |||
| 90 | /* Error condition used for failing searches */ | 90 | /* Error condition used for failing searches */ |
| 91 | static Lisp_Object Qsearch_failed; | 91 | static Lisp_Object Qsearch_failed; |
| 92 | 92 | ||
| 93 | static void set_search_regs (EMACS_INT, EMACS_INT); | 93 | static void set_search_regs (ptrdiff_t, ptrdiff_t); |
| 94 | static void save_search_regs (void); | 94 | static void save_search_regs (void); |
| 95 | static EMACS_INT simple_search (EMACS_INT, unsigned char *, EMACS_INT, | 95 | static EMACS_INT simple_search (EMACS_INT, unsigned char *, ptrdiff_t, |
| 96 | EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT, | 96 | ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t, |
| 97 | EMACS_INT, EMACS_INT); | 97 | ptrdiff_t, ptrdiff_t); |
| 98 | static EMACS_INT boyer_moore (EMACS_INT, unsigned char *, EMACS_INT, | 98 | static EMACS_INT boyer_moore (EMACS_INT, unsigned char *, ptrdiff_t, |
| 99 | Lisp_Object, Lisp_Object, EMACS_INT, | 99 | Lisp_Object, Lisp_Object, ptrdiff_t, |
| 100 | EMACS_INT, int); | 100 | ptrdiff_t, int); |
| 101 | static EMACS_INT search_buffer (Lisp_Object, EMACS_INT, EMACS_INT, | 101 | static EMACS_INT search_buffer (Lisp_Object, ptrdiff_t, ptrdiff_t, |
| 102 | EMACS_INT, EMACS_INT, EMACS_INT, int, | 102 | ptrdiff_t, ptrdiff_t, EMACS_INT, int, |
| 103 | Lisp_Object, Lisp_Object, int); | 103 | Lisp_Object, Lisp_Object, int); |
| 104 | static void matcher_overflow (void) NO_RETURN; | 104 | static void matcher_overflow (void) NO_RETURN; |
| 105 | 105 | ||
| @@ -272,8 +272,8 @@ looking_at_1 (Lisp_Object string, int posix) | |||
| 272 | { | 272 | { |
| 273 | Lisp_Object val; | 273 | Lisp_Object val; |
| 274 | unsigned char *p1, *p2; | 274 | unsigned char *p1, *p2; |
| 275 | EMACS_INT s1, s2; | 275 | ptrdiff_t s1, s2; |
| 276 | register EMACS_INT i; | 276 | register ptrdiff_t i; |
| 277 | struct re_pattern_buffer *bufp; | 277 | struct re_pattern_buffer *bufp; |
| 278 | 278 | ||
| 279 | if (running_asynch_code) | 279 | if (running_asynch_code) |
| @@ -368,10 +368,10 @@ data if you want to preserve them. */) | |||
| 368 | static Lisp_Object | 368 | static Lisp_Object |
| 369 | string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, int posix) | 369 | string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, int posix) |
| 370 | { | 370 | { |
| 371 | EMACS_INT val; | 371 | ptrdiff_t val; |
| 372 | struct re_pattern_buffer *bufp; | 372 | struct re_pattern_buffer *bufp; |
| 373 | EMACS_INT pos, pos_byte; | 373 | EMACS_INT pos; |
| 374 | int i; | 374 | ptrdiff_t pos_byte, i; |
| 375 | 375 | ||
| 376 | if (running_asynch_code) | 376 | if (running_asynch_code) |
| 377 | save_search_regs (); | 377 | save_search_regs (); |
| @@ -383,7 +383,7 @@ string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, int p | |||
| 383 | pos = 0, pos_byte = 0; | 383 | pos = 0, pos_byte = 0; |
| 384 | else | 384 | else |
| 385 | { | 385 | { |
| 386 | EMACS_INT len = SCHARS (string); | 386 | ptrdiff_t len = SCHARS (string); |
| 387 | 387 | ||
| 388 | CHECK_NUMBER (start); | 388 | CHECK_NUMBER (start); |
| 389 | pos = XINT (start); | 389 | pos = XINT (start); |
| @@ -468,10 +468,10 @@ matched by parenthesis constructs in the pattern. */) | |||
| 468 | and return the index of the match, or negative on failure. | 468 | and return the index of the match, or negative on failure. |
| 469 | This does not clobber the match data. */ | 469 | This does not clobber the match data. */ |
| 470 | 470 | ||
| 471 | EMACS_INT | 471 | ptrdiff_t |
| 472 | fast_string_match (Lisp_Object regexp, Lisp_Object string) | 472 | fast_string_match (Lisp_Object regexp, Lisp_Object string) |
| 473 | { | 473 | { |
| 474 | EMACS_INT val; | 474 | ptrdiff_t val; |
| 475 | struct re_pattern_buffer *bufp; | 475 | struct re_pattern_buffer *bufp; |
| 476 | 476 | ||
| 477 | bufp = compile_pattern (regexp, 0, Qnil, | 477 | bufp = compile_pattern (regexp, 0, Qnil, |
| @@ -491,10 +491,10 @@ fast_string_match (Lisp_Object regexp, Lisp_Object string) | |||
| 491 | This does not clobber the match data. | 491 | This does not clobber the match data. |
| 492 | We assume that STRING contains single-byte characters. */ | 492 | We assume that STRING contains single-byte characters. */ |
| 493 | 493 | ||
| 494 | EMACS_INT | 494 | ptrdiff_t |
| 495 | fast_c_string_match_ignore_case (Lisp_Object regexp, const char *string) | 495 | fast_c_string_match_ignore_case (Lisp_Object regexp, const char *string) |
| 496 | { | 496 | { |
| 497 | EMACS_INT val; | 497 | ptrdiff_t val; |
| 498 | struct re_pattern_buffer *bufp; | 498 | struct re_pattern_buffer *bufp; |
| 499 | size_t len = strlen (string); | 499 | size_t len = strlen (string); |
| 500 | 500 | ||
| @@ -511,10 +511,10 @@ fast_c_string_match_ignore_case (Lisp_Object regexp, const char *string) | |||
| 511 | 511 | ||
| 512 | /* Like fast_string_match but ignore case. */ | 512 | /* Like fast_string_match but ignore case. */ |
| 513 | 513 | ||
| 514 | EMACS_INT | 514 | ptrdiff_t |
| 515 | fast_string_match_ignore_case (Lisp_Object regexp, Lisp_Object string) | 515 | fast_string_match_ignore_case (Lisp_Object regexp, Lisp_Object string) |
| 516 | { | 516 | { |
| 517 | EMACS_INT val; | 517 | ptrdiff_t val; |
| 518 | struct re_pattern_buffer *bufp; | 518 | struct re_pattern_buffer *bufp; |
| 519 | 519 | ||
| 520 | bufp = compile_pattern (regexp, 0, Vascii_canon_table, | 520 | bufp = compile_pattern (regexp, 0, Vascii_canon_table, |
| @@ -535,14 +535,14 @@ fast_string_match_ignore_case (Lisp_Object regexp, Lisp_Object string) | |||
| 535 | indices into the string. This function doesn't modify the match | 535 | indices into the string. This function doesn't modify the match |
| 536 | data. */ | 536 | data. */ |
| 537 | 537 | ||
| 538 | EMACS_INT | 538 | ptrdiff_t |
| 539 | fast_looking_at (Lisp_Object regexp, EMACS_INT pos, EMACS_INT pos_byte, EMACS_INT limit, EMACS_INT limit_byte, Lisp_Object string) | 539 | fast_looking_at (Lisp_Object regexp, ptrdiff_t pos, ptrdiff_t pos_byte, ptrdiff_t limit, ptrdiff_t limit_byte, Lisp_Object string) |
| 540 | { | 540 | { |
| 541 | int multibyte; | 541 | int multibyte; |
| 542 | struct re_pattern_buffer *buf; | 542 | struct re_pattern_buffer *buf; |
| 543 | unsigned char *p1, *p2; | 543 | unsigned char *p1, *p2; |
| 544 | EMACS_INT s1, s2; | 544 | ptrdiff_t s1, s2; |
| 545 | EMACS_INT len; | 545 | ptrdiff_t len; |
| 546 | 546 | ||
| 547 | if (STRINGP (string)) | 547 | if (STRINGP (string)) |
| 548 | { | 548 | { |
| @@ -641,9 +641,9 @@ newline_cache_on_off (struct buffer *buf) | |||
| 641 | If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do | 641 | If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do |
| 642 | except when inside redisplay. */ | 642 | except when inside redisplay. */ |
| 643 | 643 | ||
| 644 | EMACS_INT | 644 | ptrdiff_t |
| 645 | scan_buffer (register int target, EMACS_INT start, EMACS_INT end, | 645 | scan_buffer (register int target, ptrdiff_t start, ptrdiff_t end, |
| 646 | EMACS_INT count, EMACS_INT *shortage, int allow_quit) | 646 | ptrdiff_t count, ptrdiff_t *shortage, int allow_quit) |
| 647 | { | 647 | { |
| 648 | struct region_cache *newline_cache; | 648 | struct region_cache *newline_cache; |
| 649 | int direction; | 649 | int direction; |
| @@ -675,9 +675,9 @@ scan_buffer (register int target, EMACS_INT start, EMACS_INT end, | |||
| 675 | the position of the last character before the next such | 675 | the position of the last character before the next such |
| 676 | obstacle --- the last character the dumb search loop should | 676 | obstacle --- the last character the dumb search loop should |
| 677 | examine. */ | 677 | examine. */ |
| 678 | EMACS_INT ceiling_byte = CHAR_TO_BYTE (end) - 1; | 678 | ptrdiff_t ceiling_byte = CHAR_TO_BYTE (end) - 1; |
| 679 | EMACS_INT start_byte = CHAR_TO_BYTE (start); | 679 | ptrdiff_t start_byte = CHAR_TO_BYTE (start); |
| 680 | EMACS_INT tem; | 680 | ptrdiff_t tem; |
| 681 | 681 | ||
| 682 | /* If we're looking for a newline, consult the newline cache | 682 | /* If we're looking for a newline, consult the newline cache |
| 683 | to see where we can avoid some scanning. */ | 683 | to see where we can avoid some scanning. */ |
| @@ -748,9 +748,9 @@ scan_buffer (register int target, EMACS_INT start, EMACS_INT end, | |||
| 748 | while (start > end) | 748 | while (start > end) |
| 749 | { | 749 | { |
| 750 | /* The last character to check before the next obstacle. */ | 750 | /* The last character to check before the next obstacle. */ |
| 751 | EMACS_INT ceiling_byte = CHAR_TO_BYTE (end); | 751 | ptrdiff_t ceiling_byte = CHAR_TO_BYTE (end); |
| 752 | EMACS_INT start_byte = CHAR_TO_BYTE (start); | 752 | ptrdiff_t start_byte = CHAR_TO_BYTE (start); |
| 753 | EMACS_INT tem; | 753 | ptrdiff_t tem; |
| 754 | 754 | ||
| 755 | /* Consult the newline cache, if appropriate. */ | 755 | /* Consult the newline cache, if appropriate. */ |
| 756 | if (target == '\n' && newline_cache) | 756 | if (target == '\n' && newline_cache) |
| @@ -835,8 +835,8 @@ scan_buffer (register int target, EMACS_INT start, EMACS_INT end, | |||
| 835 | except in special cases. */ | 835 | except in special cases. */ |
| 836 | 836 | ||
| 837 | EMACS_INT | 837 | EMACS_INT |
| 838 | scan_newline (EMACS_INT start, EMACS_INT start_byte, | 838 | scan_newline (ptrdiff_t start, ptrdiff_t start_byte, |
| 839 | EMACS_INT limit, EMACS_INT limit_byte, | 839 | ptrdiff_t limit, ptrdiff_t limit_byte, |
| 840 | register EMACS_INT count, int allow_quit) | 840 | register EMACS_INT count, int allow_quit) |
| 841 | { | 841 | { |
| 842 | int direction = ((count > 0) ? 1 : -1); | 842 | int direction = ((count > 0) ? 1 : -1); |
| @@ -844,7 +844,7 @@ scan_newline (EMACS_INT start, EMACS_INT start_byte, | |||
| 844 | register unsigned char *cursor; | 844 | register unsigned char *cursor; |
| 845 | unsigned char *base; | 845 | unsigned char *base; |
| 846 | 846 | ||
| 847 | EMACS_INT ceiling; | 847 | ptrdiff_t ceiling; |
| 848 | register unsigned char *ceiling_addr; | 848 | register unsigned char *ceiling_addr; |
| 849 | 849 | ||
| 850 | int old_immediate_quit = immediate_quit; | 850 | int old_immediate_quit = immediate_quit; |
| @@ -930,21 +930,21 @@ scan_newline (EMACS_INT start, EMACS_INT start_byte, | |||
| 930 | return count * direction; | 930 | return count * direction; |
| 931 | } | 931 | } |
| 932 | 932 | ||
| 933 | EMACS_INT | 933 | ptrdiff_t |
| 934 | find_next_newline_no_quit (EMACS_INT from, EMACS_INT cnt) | 934 | find_next_newline_no_quit (ptrdiff_t from, ptrdiff_t cnt) |
| 935 | { | 935 | { |
| 936 | return scan_buffer ('\n', from, 0, cnt, (EMACS_INT *) 0, 0); | 936 | return scan_buffer ('\n', from, 0, cnt, (ptrdiff_t *) 0, 0); |
| 937 | } | 937 | } |
| 938 | 938 | ||
| 939 | /* Like find_next_newline, but returns position before the newline, | 939 | /* Like find_next_newline, but returns position before the newline, |
| 940 | not after, and only search up to TO. This isn't just | 940 | not after, and only search up to TO. This isn't just |
| 941 | find_next_newline (...)-1, because you might hit TO. */ | 941 | find_next_newline (...)-1, because you might hit TO. */ |
| 942 | 942 | ||
| 943 | EMACS_INT | 943 | ptrdiff_t |
| 944 | find_before_next_newline (EMACS_INT from, EMACS_INT to, EMACS_INT cnt) | 944 | find_before_next_newline (ptrdiff_t from, ptrdiff_t to, ptrdiff_t cnt) |
| 945 | { | 945 | { |
| 946 | EMACS_INT shortage; | 946 | ptrdiff_t shortage; |
| 947 | EMACS_INT pos = scan_buffer ('\n', from, to, cnt, &shortage, 1); | 947 | ptrdiff_t pos = scan_buffer ('\n', from, to, cnt, &shortage, 1); |
| 948 | 948 | ||
| 949 | if (shortage == 0) | 949 | if (shortage == 0) |
| 950 | pos--; | 950 | pos--; |
| @@ -959,7 +959,8 @@ search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, | |||
| 959 | Lisp_Object count, int direction, int RE, int posix) | 959 | Lisp_Object count, int direction, int RE, int posix) |
| 960 | { | 960 | { |
| 961 | register EMACS_INT np; | 961 | register EMACS_INT np; |
| 962 | EMACS_INT lim, lim_byte; | 962 | EMACS_INT lim; |
| 963 | ptrdiff_t lim_byte; | ||
| 963 | EMACS_INT n = direction; | 964 | EMACS_INT n = direction; |
| 964 | 965 | ||
| 965 | if (!NILP (count)) | 966 | if (!NILP (count)) |
| @@ -1035,7 +1036,7 @@ search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, | |||
| 1035 | static int | 1036 | static int |
| 1036 | trivial_regexp_p (Lisp_Object regexp) | 1037 | trivial_regexp_p (Lisp_Object regexp) |
| 1037 | { | 1038 | { |
| 1038 | EMACS_INT len = SBYTES (regexp); | 1039 | ptrdiff_t len = SBYTES (regexp); |
| 1039 | unsigned char *s = SDATA (regexp); | 1040 | unsigned char *s = SDATA (regexp); |
| 1040 | while (--len >= 0) | 1041 | while (--len >= 0) |
| 1041 | { | 1042 | { |
| @@ -1099,13 +1100,13 @@ while (0) | |||
| 1099 | static struct re_registers search_regs_1; | 1100 | static struct re_registers search_regs_1; |
| 1100 | 1101 | ||
| 1101 | static EMACS_INT | 1102 | static EMACS_INT |
| 1102 | search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte, | 1103 | search_buffer (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte, |
| 1103 | EMACS_INT lim, EMACS_INT lim_byte, EMACS_INT n, | 1104 | ptrdiff_t lim, ptrdiff_t lim_byte, EMACS_INT n, |
| 1104 | int RE, Lisp_Object trt, Lisp_Object inverse_trt, int posix) | 1105 | int RE, Lisp_Object trt, Lisp_Object inverse_trt, int posix) |
| 1105 | { | 1106 | { |
| 1106 | EMACS_INT len = SCHARS (string); | 1107 | ptrdiff_t len = SCHARS (string); |
| 1107 | EMACS_INT len_byte = SBYTES (string); | 1108 | ptrdiff_t len_byte = SBYTES (string); |
| 1108 | register int i; | 1109 | register ptrdiff_t i; |
| 1109 | 1110 | ||
| 1110 | if (running_asynch_code) | 1111 | if (running_asynch_code) |
| 1111 | save_search_regs (); | 1112 | save_search_regs (); |
| @@ -1121,7 +1122,7 @@ search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte, | |||
| 1121 | if (RE && !(trivial_regexp_p (string) && NILP (Vsearch_spaces_regexp))) | 1122 | if (RE && !(trivial_regexp_p (string) && NILP (Vsearch_spaces_regexp))) |
| 1122 | { | 1123 | { |
| 1123 | unsigned char *p1, *p2; | 1124 | unsigned char *p1, *p2; |
| 1124 | EMACS_INT s1, s2; | 1125 | ptrdiff_t s1, s2; |
| 1125 | struct re_pattern_buffer *bufp; | 1126 | struct re_pattern_buffer *bufp; |
| 1126 | 1127 | ||
| 1127 | bufp = compile_pattern (string, | 1128 | bufp = compile_pattern (string, |
| @@ -1157,7 +1158,7 @@ search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte, | |||
| 1157 | 1158 | ||
| 1158 | while (n < 0) | 1159 | while (n < 0) |
| 1159 | { | 1160 | { |
| 1160 | EMACS_INT val; | 1161 | ptrdiff_t val; |
| 1161 | val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2, | 1162 | val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2, |
| 1162 | pos_byte - BEGV_BYTE, lim_byte - pos_byte, | 1163 | pos_byte - BEGV_BYTE, lim_byte - pos_byte, |
| 1163 | (NILP (Vinhibit_changing_match_data) | 1164 | (NILP (Vinhibit_changing_match_data) |
| @@ -1201,7 +1202,7 @@ search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte, | |||
| 1201 | } | 1202 | } |
| 1202 | while (n > 0) | 1203 | while (n > 0) |
| 1203 | { | 1204 | { |
| 1204 | EMACS_INT val; | 1205 | ptrdiff_t val; |
| 1205 | val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2, | 1206 | val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2, |
| 1206 | pos_byte - BEGV_BYTE, lim_byte - pos_byte, | 1207 | pos_byte - BEGV_BYTE, lim_byte - pos_byte, |
| 1207 | (NILP (Vinhibit_changing_match_data) | 1208 | (NILP (Vinhibit_changing_match_data) |
| @@ -1246,8 +1247,8 @@ search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte, | |||
| 1246 | else /* non-RE case */ | 1247 | else /* non-RE case */ |
| 1247 | { | 1248 | { |
| 1248 | unsigned char *raw_pattern, *pat; | 1249 | unsigned char *raw_pattern, *pat; |
| 1249 | EMACS_INT raw_pattern_size; | 1250 | ptrdiff_t raw_pattern_size; |
| 1250 | EMACS_INT raw_pattern_size_byte; | 1251 | ptrdiff_t raw_pattern_size_byte; |
| 1251 | unsigned char *patbuf; | 1252 | unsigned char *patbuf; |
| 1252 | int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters)); | 1253 | int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters)); |
| 1253 | unsigned char *base_pat; | 1254 | unsigned char *base_pat; |
| @@ -1441,15 +1442,15 @@ search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte, | |||
| 1441 | 1442 | ||
| 1442 | static EMACS_INT | 1443 | static EMACS_INT |
| 1443 | simple_search (EMACS_INT n, unsigned char *pat, | 1444 | simple_search (EMACS_INT n, unsigned char *pat, |
| 1444 | EMACS_INT len, EMACS_INT len_byte, Lisp_Object trt, | 1445 | ptrdiff_t len, ptrdiff_t len_byte, Lisp_Object trt, |
| 1445 | EMACS_INT pos, EMACS_INT pos_byte, | 1446 | ptrdiff_t pos, ptrdiff_t pos_byte, |
| 1446 | EMACS_INT lim, EMACS_INT lim_byte) | 1447 | ptrdiff_t lim, ptrdiff_t lim_byte) |
| 1447 | { | 1448 | { |
| 1448 | int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters)); | 1449 | int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters)); |
| 1449 | int forward = n > 0; | 1450 | int forward = n > 0; |
| 1450 | /* Number of buffer bytes matched. Note that this may be different | 1451 | /* Number of buffer bytes matched. Note that this may be different |
| 1451 | from len_byte in a multibyte buffer. */ | 1452 | from len_byte in a multibyte buffer. */ |
| 1452 | EMACS_INT match_byte; | 1453 | ptrdiff_t match_byte; |
| 1453 | 1454 | ||
| 1454 | if (lim > pos && multibyte) | 1455 | if (lim > pos && multibyte) |
| 1455 | while (n > 0) | 1456 | while (n > 0) |
| @@ -1457,9 +1458,9 @@ simple_search (EMACS_INT n, unsigned char *pat, | |||
| 1457 | while (1) | 1458 | while (1) |
| 1458 | { | 1459 | { |
| 1459 | /* Try matching at position POS. */ | 1460 | /* Try matching at position POS. */ |
| 1460 | EMACS_INT this_pos = pos; | 1461 | ptrdiff_t this_pos = pos; |
| 1461 | EMACS_INT this_pos_byte = pos_byte; | 1462 | ptrdiff_t this_pos_byte = pos_byte; |
| 1462 | EMACS_INT this_len = len; | 1463 | ptrdiff_t this_len = len; |
| 1463 | unsigned char *p = pat; | 1464 | unsigned char *p = pat; |
| 1464 | if (pos + len > lim || pos_byte + len_byte > lim_byte) | 1465 | if (pos + len > lim || pos_byte + len_byte > lim_byte) |
| 1465 | goto stop; | 1466 | goto stop; |
| @@ -1503,8 +1504,8 @@ simple_search (EMACS_INT n, unsigned char *pat, | |||
| 1503 | while (1) | 1504 | while (1) |
| 1504 | { | 1505 | { |
| 1505 | /* Try matching at position POS. */ | 1506 | /* Try matching at position POS. */ |
| 1506 | EMACS_INT this_pos = pos; | 1507 | ptrdiff_t this_pos = pos; |
| 1507 | EMACS_INT this_len = len; | 1508 | ptrdiff_t this_len = len; |
| 1508 | unsigned char *p = pat; | 1509 | unsigned char *p = pat; |
| 1509 | 1510 | ||
| 1510 | if (pos + len > lim) | 1511 | if (pos + len > lim) |
| @@ -1542,9 +1543,9 @@ simple_search (EMACS_INT n, unsigned char *pat, | |||
| 1542 | while (1) | 1543 | while (1) |
| 1543 | { | 1544 | { |
| 1544 | /* Try matching at position POS. */ | 1545 | /* Try matching at position POS. */ |
| 1545 | EMACS_INT this_pos = pos; | 1546 | ptrdiff_t this_pos = pos; |
| 1546 | EMACS_INT this_pos_byte = pos_byte; | 1547 | ptrdiff_t this_pos_byte = pos_byte; |
| 1547 | EMACS_INT this_len = len; | 1548 | ptrdiff_t this_len = len; |
| 1548 | const unsigned char *p = pat + len_byte; | 1549 | const unsigned char *p = pat + len_byte; |
| 1549 | 1550 | ||
| 1550 | if (this_pos - len < lim || (pos_byte - len_byte) < lim_byte) | 1551 | if (this_pos - len < lim || (pos_byte - len_byte) < lim_byte) |
| @@ -1585,8 +1586,8 @@ simple_search (EMACS_INT n, unsigned char *pat, | |||
| 1585 | while (1) | 1586 | while (1) |
| 1586 | { | 1587 | { |
| 1587 | /* Try matching at position POS. */ | 1588 | /* Try matching at position POS. */ |
| 1588 | EMACS_INT this_pos = pos - len; | 1589 | ptrdiff_t this_pos = pos - len; |
| 1589 | EMACS_INT this_len = len; | 1590 | ptrdiff_t this_len = len; |
| 1590 | unsigned char *p = pat; | 1591 | unsigned char *p = pat; |
| 1591 | 1592 | ||
| 1592 | if (this_pos < lim) | 1593 | if (this_pos < lim) |
| @@ -1650,18 +1651,18 @@ simple_search (EMACS_INT n, unsigned char *pat, | |||
| 1650 | 1651 | ||
| 1651 | static EMACS_INT | 1652 | static EMACS_INT |
| 1652 | boyer_moore (EMACS_INT n, unsigned char *base_pat, | 1653 | boyer_moore (EMACS_INT n, unsigned char *base_pat, |
| 1653 | EMACS_INT len_byte, | 1654 | ptrdiff_t len_byte, |
| 1654 | Lisp_Object trt, Lisp_Object inverse_trt, | 1655 | Lisp_Object trt, Lisp_Object inverse_trt, |
| 1655 | EMACS_INT pos_byte, EMACS_INT lim_byte, | 1656 | ptrdiff_t pos_byte, ptrdiff_t lim_byte, |
| 1656 | int char_base) | 1657 | int char_base) |
| 1657 | { | 1658 | { |
| 1658 | int direction = ((n > 0) ? 1 : -1); | 1659 | int direction = ((n > 0) ? 1 : -1); |
| 1659 | register EMACS_INT dirlen; | 1660 | register ptrdiff_t dirlen; |
| 1660 | EMACS_INT limit; | 1661 | ptrdiff_t limit; |
| 1661 | int stride_for_teases = 0; | 1662 | int stride_for_teases = 0; |
| 1662 | int BM_tab[0400]; | 1663 | int BM_tab[0400]; |
| 1663 | register unsigned char *cursor, *p_limit; | 1664 | register unsigned char *cursor, *p_limit; |
| 1664 | register EMACS_INT i; | 1665 | register ptrdiff_t i; |
| 1665 | register int j; | 1666 | register int j; |
| 1666 | unsigned char *pat, *pat_end; | 1667 | unsigned char *pat, *pat_end; |
| 1667 | int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters)); | 1668 | int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters)); |
| @@ -1813,7 +1814,7 @@ boyer_moore (EMACS_INT n, unsigned char *base_pat, | |||
| 1813 | char if reverse) of pattern would align in a possible match. */ | 1814 | char if reverse) of pattern would align in a possible match. */ |
| 1814 | while (n != 0) | 1815 | while (n != 0) |
| 1815 | { | 1816 | { |
| 1816 | EMACS_INT tail_end; | 1817 | ptrdiff_t tail_end; |
| 1817 | unsigned char *tail_end_ptr; | 1818 | unsigned char *tail_end_ptr; |
| 1818 | 1819 | ||
| 1819 | /* It's been reported that some (broken) compiler thinks that | 1820 | /* It's been reported that some (broken) compiler thinks that |
| @@ -1917,7 +1918,7 @@ boyer_moore (EMACS_INT n, unsigned char *base_pat, | |||
| 1917 | cursor += dirlen - i - direction; /* fix cursor */ | 1918 | cursor += dirlen - i - direction; /* fix cursor */ |
| 1918 | if (i + direction == 0) | 1919 | if (i + direction == 0) |
| 1919 | { | 1920 | { |
| 1920 | EMACS_INT position, start, end; | 1921 | ptrdiff_t position, start, end; |
| 1921 | 1922 | ||
| 1922 | cursor -= direction; | 1923 | cursor -= direction; |
| 1923 | 1924 | ||
| @@ -2009,7 +2010,7 @@ boyer_moore (EMACS_INT n, unsigned char *base_pat, | |||
| 2009 | pos_byte += dirlen - i - direction; | 2010 | pos_byte += dirlen - i - direction; |
| 2010 | if (i + direction == 0) | 2011 | if (i + direction == 0) |
| 2011 | { | 2012 | { |
| 2012 | EMACS_INT position, start, end; | 2013 | ptrdiff_t position, start, end; |
| 2013 | pos_byte -= direction; | 2014 | pos_byte -= direction; |
| 2014 | 2015 | ||
| 2015 | position = pos_byte + ((direction > 0) ? 1 - len_byte : 0); | 2016 | position = pos_byte + ((direction > 0) ? 1 - len_byte : 0); |
| @@ -2050,9 +2051,9 @@ boyer_moore (EMACS_INT n, unsigned char *base_pat, | |||
| 2050 | Also clear out the match data for registers 1 and up. */ | 2051 | Also clear out the match data for registers 1 and up. */ |
| 2051 | 2052 | ||
| 2052 | static void | 2053 | static void |
| 2053 | set_search_regs (EMACS_INT beg_byte, EMACS_INT nbytes) | 2054 | set_search_regs (ptrdiff_t beg_byte, ptrdiff_t nbytes) |
| 2054 | { | 2055 | { |
| 2055 | int i; | 2056 | ptrdiff_t i; |
| 2056 | 2057 | ||
| 2057 | if (!NILP (Vinhibit_changing_match_data)) | 2058 | if (!NILP (Vinhibit_changing_match_data)) |
| 2058 | return; | 2059 | return; |
| @@ -2087,7 +2088,7 @@ static Lisp_Object | |||
| 2087 | wordify (Lisp_Object string, int lax) | 2088 | wordify (Lisp_Object string, int lax) |
| 2088 | { | 2089 | { |
| 2089 | register unsigned char *o; | 2090 | register unsigned char *o; |
| 2090 | register EMACS_INT i, i_byte, len, punct_count = 0, word_count = 0; | 2091 | register ptrdiff_t i, i_byte, len, punct_count = 0, word_count = 0; |
| 2091 | Lisp_Object val; | 2092 | Lisp_Object val; |
| 2092 | int prev_c = 0; | 2093 | int prev_c = 0; |
| 2093 | EMACS_INT adjust; | 2094 | EMACS_INT adjust; |
| @@ -2124,14 +2125,24 @@ wordify (Lisp_Object string, int lax) | |||
| 2124 | return empty_unibyte_string; | 2125 | return empty_unibyte_string; |
| 2125 | } | 2126 | } |
| 2126 | 2127 | ||
| 2127 | adjust = - punct_count + 5 * (word_count - 1) | 2128 | adjust = word_count - 1; |
| 2129 | if (INT_MULTIPLY_OVERFLOW (5, adjust)) | ||
| 2130 | memory_full (SIZE_MAX); | ||
| 2131 | adjust = - punct_count + 5 * adjust | ||
| 2128 | + ((lax && !whitespace_at_end) ? 2 : 4); | 2132 | + ((lax && !whitespace_at_end) ? 2 : 4); |
| 2129 | if (STRING_MULTIBYTE (string)) | 2133 | if (STRING_MULTIBYTE (string)) |
| 2130 | val = make_uninit_multibyte_string (len + adjust, | 2134 | { |
| 2131 | SBYTES (string) | 2135 | if (INT_ADD_OVERFLOW (SBYTES (string), adjust)) |
| 2132 | + adjust); | 2136 | memory_full (SIZE_MAX); |
| 2137 | val = make_uninit_multibyte_string (len + adjust, | ||
| 2138 | SBYTES (string) + adjust); | ||
| 2139 | } | ||
| 2133 | else | 2140 | else |
| 2134 | val = make_uninit_string (len + adjust); | 2141 | { |
| 2142 | if (INT_ADD_OVERFLOW (len, adjust)) | ||
| 2143 | memory_full (SIZE_MAX); | ||
| 2144 | val = make_uninit_string (len + adjust); | ||
| 2145 | } | ||
| 2135 | 2146 | ||
| 2136 | o = SDATA (val); | 2147 | o = SDATA (val); |
| 2137 | *o++ = '\\'; | 2148 | *o++ = '\\'; |
| @@ -2141,7 +2152,7 @@ wordify (Lisp_Object string, int lax) | |||
| 2141 | for (i = 0, i_byte = 0; i < len; ) | 2152 | for (i = 0, i_byte = 0; i < len; ) |
| 2142 | { | 2153 | { |
| 2143 | int c; | 2154 | int c; |
| 2144 | EMACS_INT i_byte_orig = i_byte; | 2155 | ptrdiff_t i_byte_orig = i_byte; |
| 2145 | 2156 | ||
| 2146 | FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, i, i_byte); | 2157 | FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, i, i_byte); |
| 2147 | 2158 | ||
| @@ -2398,14 +2409,14 @@ since only regular expressions have distinguished subexpressions. */) | |||
| 2398 | (Lisp_Object newtext, Lisp_Object fixedcase, Lisp_Object literal, Lisp_Object string, Lisp_Object subexp) | 2409 | (Lisp_Object newtext, Lisp_Object fixedcase, Lisp_Object literal, Lisp_Object string, Lisp_Object subexp) |
| 2399 | { | 2410 | { |
| 2400 | enum { nochange, all_caps, cap_initial } case_action; | 2411 | enum { nochange, all_caps, cap_initial } case_action; |
| 2401 | register EMACS_INT pos, pos_byte; | 2412 | register ptrdiff_t pos, pos_byte; |
| 2402 | int some_multiletter_word; | 2413 | int some_multiletter_word; |
| 2403 | int some_lowercase; | 2414 | int some_lowercase; |
| 2404 | int some_uppercase; | 2415 | int some_uppercase; |
| 2405 | int some_nonuppercase_initial; | 2416 | int some_nonuppercase_initial; |
| 2406 | register int c, prevc; | 2417 | register int c, prevc; |
| 2407 | ptrdiff_t sub; | 2418 | ptrdiff_t sub; |
| 2408 | EMACS_INT opoint, newpoint; | 2419 | ptrdiff_t opoint, newpoint; |
| 2409 | 2420 | ||
| 2410 | CHECK_STRING (newtext); | 2421 | CHECK_STRING (newtext); |
| 2411 | 2422 | ||
| @@ -2448,7 +2459,7 @@ since only regular expressions have distinguished subexpressions. */) | |||
| 2448 | if (NILP (fixedcase)) | 2459 | if (NILP (fixedcase)) |
| 2449 | { | 2460 | { |
| 2450 | /* Decide how to casify by examining the matched text. */ | 2461 | /* Decide how to casify by examining the matched text. */ |
| 2451 | EMACS_INT last; | 2462 | ptrdiff_t last; |
| 2452 | 2463 | ||
| 2453 | pos = search_regs.start[sub]; | 2464 | pos = search_regs.start[sub]; |
| 2454 | last = search_regs.end[sub]; | 2465 | last = search_regs.end[sub]; |
| @@ -2535,19 +2546,19 @@ since only regular expressions have distinguished subexpressions. */) | |||
| 2535 | if desired. */ | 2546 | if desired. */ |
| 2536 | if (NILP (literal)) | 2547 | if (NILP (literal)) |
| 2537 | { | 2548 | { |
| 2538 | EMACS_INT lastpos = 0; | 2549 | ptrdiff_t lastpos = 0; |
| 2539 | EMACS_INT lastpos_byte = 0; | 2550 | ptrdiff_t lastpos_byte = 0; |
| 2540 | /* We build up the substituted string in ACCUM. */ | 2551 | /* We build up the substituted string in ACCUM. */ |
| 2541 | Lisp_Object accum; | 2552 | Lisp_Object accum; |
| 2542 | Lisp_Object middle; | 2553 | Lisp_Object middle; |
| 2543 | EMACS_INT length = SBYTES (newtext); | 2554 | ptrdiff_t length = SBYTES (newtext); |
| 2544 | 2555 | ||
| 2545 | accum = Qnil; | 2556 | accum = Qnil; |
| 2546 | 2557 | ||
| 2547 | for (pos_byte = 0, pos = 0; pos_byte < length;) | 2558 | for (pos_byte = 0, pos = 0; pos_byte < length;) |
| 2548 | { | 2559 | { |
| 2549 | EMACS_INT substart = -1; | 2560 | ptrdiff_t substart = -1; |
| 2550 | EMACS_INT subend = 0; | 2561 | ptrdiff_t subend = 0; |
| 2551 | int delbackslash = 0; | 2562 | int delbackslash = 0; |
| 2552 | 2563 | ||
| 2553 | FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte); | 2564 | FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte); |
| @@ -2563,8 +2574,8 @@ since only regular expressions have distinguished subexpressions. */) | |||
| 2563 | } | 2574 | } |
| 2564 | else if (c >= '1' && c <= '9') | 2575 | else if (c >= '1' && c <= '9') |
| 2565 | { | 2576 | { |
| 2566 | if (search_regs.start[c - '0'] >= 0 | 2577 | if (c - '0' < search_regs.num_regs |
| 2567 | && c <= search_regs.num_regs + '0') | 2578 | && 0 <= search_regs.start[c - '0']) |
| 2568 | { | 2579 | { |
| 2569 | substart = search_regs.start[c - '0']; | 2580 | substart = search_regs.start[c - '0']; |
| 2570 | subend = search_regs.end[c - '0']; | 2581 | subend = search_regs.end[c - '0']; |
| @@ -2702,7 +2713,7 @@ since only regular expressions have distinguished subexpressions. */) | |||
| 2702 | 2713 | ||
| 2703 | if (c == '&') | 2714 | if (c == '&') |
| 2704 | idx = sub; | 2715 | idx = sub; |
| 2705 | else if (c >= '1' && c <= '9' && c <= search_regs.num_regs + '0') | 2716 | else if (c >= '1' && c <= '9' && c - '0' < search_regs.num_regs) |
| 2706 | { | 2717 | { |
| 2707 | if (search_regs.start[c - '0'] >= 1) | 2718 | if (search_regs.start[c - '0'] >= 1) |
| 2708 | idx = c - '0'; | 2719 | idx = c - '0'; |
| @@ -2754,7 +2765,7 @@ since only regular expressions have distinguished subexpressions. */) | |||
| 2754 | { | 2765 | { |
| 2755 | if (buf_multibyte) | 2766 | if (buf_multibyte) |
| 2756 | { | 2767 | { |
| 2757 | EMACS_INT nchars = | 2768 | ptrdiff_t nchars = |
| 2758 | multibyte_chars_in_text (substed, substed_len); | 2769 | multibyte_chars_in_text (substed, substed_len); |
| 2759 | 2770 | ||
| 2760 | newtext = make_multibyte_string ((char *) substed, nchars, | 2771 | newtext = make_multibyte_string ((char *) substed, nchars, |
| @@ -2780,10 +2791,10 @@ since only regular expressions have distinguished subexpressions. */) | |||
| 2780 | 2791 | ||
| 2781 | /* Adjust search data for this change. */ | 2792 | /* Adjust search data for this change. */ |
| 2782 | { | 2793 | { |
| 2783 | EMACS_INT oldend = search_regs.end[sub]; | 2794 | ptrdiff_t oldend = search_regs.end[sub]; |
| 2784 | EMACS_INT oldstart = search_regs.start[sub]; | 2795 | ptrdiff_t oldstart = search_regs.start[sub]; |
| 2785 | EMACS_INT change = newpoint - search_regs.end[sub]; | 2796 | ptrdiff_t change = newpoint - search_regs.end[sub]; |
| 2786 | int i; | 2797 | ptrdiff_t i; |
| 2787 | 2798 | ||
| 2788 | for (i = 0; i < search_regs.num_regs; i++) | 2799 | for (i = 0; i < search_regs.num_regs; i++) |
| 2789 | { | 2800 | { |
| @@ -2876,7 +2887,7 @@ Return value is undefined if the last search failed. */) | |||
| 2876 | { | 2887 | { |
| 2877 | Lisp_Object tail, prev; | 2888 | Lisp_Object tail, prev; |
| 2878 | Lisp_Object *data; | 2889 | Lisp_Object *data; |
| 2879 | int i, len; | 2890 | ptrdiff_t i, len; |
| 2880 | 2891 | ||
| 2881 | if (!NILP (reseat)) | 2892 | if (!NILP (reseat)) |
| 2882 | for (tail = reuse; CONSP (tail); tail = XCDR (tail)) | 2893 | for (tail = reuse; CONSP (tail); tail = XCDR (tail)) |
| @@ -2897,7 +2908,7 @@ Return value is undefined if the last search failed. */) | |||
| 2897 | len = 0; | 2908 | len = 0; |
| 2898 | for (i = 0; i < search_regs.num_regs; i++) | 2909 | for (i = 0; i < search_regs.num_regs; i++) |
| 2899 | { | 2910 | { |
| 2900 | EMACS_INT start = search_regs.start[i]; | 2911 | ptrdiff_t start = search_regs.start[i]; |
| 2901 | if (start >= 0) | 2912 | if (start >= 0) |
| 2902 | { | 2913 | { |
| 2903 | if (EQ (last_thing_searched, Qt) | 2914 | if (EQ (last_thing_searched, Qt) |
| @@ -2988,11 +2999,13 @@ If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */) | |||
| 2988 | 2999 | ||
| 2989 | /* Allocate registers if they don't already exist. */ | 3000 | /* Allocate registers if they don't already exist. */ |
| 2990 | { | 3001 | { |
| 2991 | ptrdiff_t length = XFASTINT (Flength (list)) / 2; | 3002 | EMACS_INT length = XFASTINT (Flength (list)) / 2; |
| 2992 | 3003 | ||
| 2993 | if (length > search_regs.num_regs) | 3004 | if (length > search_regs.num_regs) |
| 2994 | { | 3005 | { |
| 2995 | ptrdiff_t num_regs = search_regs.num_regs; | 3006 | ptrdiff_t num_regs = search_regs.num_regs; |
| 3007 | if (PTRDIFF_MAX < length) | ||
| 3008 | memory_full (SIZE_MAX); | ||
| 2996 | search_regs.start = | 3009 | search_regs.start = |
| 2997 | xpalloc (search_regs.start, &num_regs, length - num_regs, | 3010 | xpalloc (search_regs.start, &num_regs, length - num_regs, |
| 2998 | min (PTRDIFF_MAX, UINT_MAX), sizeof (regoff_t)); | 3011 | min (PTRDIFF_MAX, UINT_MAX), sizeof (regoff_t)); |
| @@ -3022,7 +3035,7 @@ If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */) | |||
| 3022 | } | 3035 | } |
| 3023 | else | 3036 | else |
| 3024 | { | 3037 | { |
| 3025 | EMACS_INT from; | 3038 | Lisp_Object from; |
| 3026 | Lisp_Object m; | 3039 | Lisp_Object m; |
| 3027 | 3040 | ||
| 3028 | m = marker; | 3041 | m = marker; |
| @@ -3035,7 +3048,7 @@ If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */) | |||
| 3035 | } | 3048 | } |
| 3036 | 3049 | ||
| 3037 | CHECK_NUMBER_COERCE_MARKER (marker); | 3050 | CHECK_NUMBER_COERCE_MARKER (marker); |
| 3038 | from = XINT (marker); | 3051 | from = marker; |
| 3039 | 3052 | ||
| 3040 | if (!NILP (reseat) && MARKERP (m)) | 3053 | if (!NILP (reseat) && MARKERP (m)) |
| 3041 | { | 3054 | { |
| @@ -3052,8 +3065,18 @@ If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */) | |||
| 3052 | XSETFASTINT (marker, 0); | 3065 | XSETFASTINT (marker, 0); |
| 3053 | 3066 | ||
| 3054 | CHECK_NUMBER_COERCE_MARKER (marker); | 3067 | CHECK_NUMBER_COERCE_MARKER (marker); |
| 3055 | search_regs.start[i] = from; | 3068 | if (TYPE_MINIMUM (regoff_t) <= XINT (from) |
| 3056 | search_regs.end[i] = XINT (marker); | 3069 | && XINT (from) <= TYPE_MAXIMUM (regoff_t) |
| 3070 | && TYPE_MINIMUM (regoff_t) <= XINT (marker) | ||
| 3071 | && XINT (marker) <= TYPE_MAXIMUM (regoff_t)) | ||
| 3072 | { | ||
| 3073 | search_regs.start[i] = XINT (from); | ||
| 3074 | search_regs.end[i] = XINT (marker); | ||
| 3075 | } | ||
| 3076 | else | ||
| 3077 | { | ||
| 3078 | search_regs.start[i] = -1; | ||
| 3079 | } | ||
| 3057 | 3080 | ||
| 3058 | if (!NILP (reseat) && MARKERP (m)) | 3081 | if (!NILP (reseat) && MARKERP (m)) |
| 3059 | { | 3082 | { |