mirror of
https://github.com/vim/vim.git
synced 2025-08-23 19:34:27 -04:00
updated for version 7.3.143
Problem: Memfile is not tested sufficiently. Looking up blocks in a memfile is slow when there are many blocks. Solution: Add high level test and unittest. Adjust the number of hash buckets to the number of blocks. (Ivan Krasilnikov)
This commit is contained in:
parent
cab49dff91
commit
b05b10a3c0
3
Filelist
3
Filelist
@ -39,6 +39,7 @@ SRC_ALL = \
|
|||||||
src/mark.c \
|
src/mark.c \
|
||||||
src/mbyte.c \
|
src/mbyte.c \
|
||||||
src/memfile.c \
|
src/memfile.c \
|
||||||
|
src/memfile_test.c \
|
||||||
src/memline.c \
|
src/memline.c \
|
||||||
src/menu.c \
|
src/menu.c \
|
||||||
src/message.c \
|
src/message.c \
|
||||||
@ -686,6 +687,8 @@ LANG_GEN = \
|
|||||||
runtime/tutor/tutor.utf-8 \
|
runtime/tutor/tutor.utf-8 \
|
||||||
runtime/tutor/tutor.?? \
|
runtime/tutor/tutor.?? \
|
||||||
runtime/tutor/tutor.??.* \
|
runtime/tutor/tutor.??.* \
|
||||||
|
runtime/tutor/tutor.bar \
|
||||||
|
runtime/tutor/tutor.bar.* \
|
||||||
runtime/spell/README.txt \
|
runtime/spell/README.txt \
|
||||||
runtime/spell/??/*.diff \
|
runtime/spell/??/*.diff \
|
||||||
runtime/spell/??/main.aap \
|
runtime/spell/??/main.aap \
|
||||||
|
73
src/Makefile
73
src/Makefile
@ -561,7 +561,7 @@ CClink = $(CC)
|
|||||||
#CFLAGS = -g -O2 '-DSTARTUPTIME="vimstartup"' -fno-strength-reduce -Wall -Wmissing-prototypes
|
#CFLAGS = -g -O2 '-DSTARTUPTIME="vimstartup"' -fno-strength-reduce -Wall -Wmissing-prototypes
|
||||||
|
|
||||||
# Use this with GCC to check for mistakes, unused arguments, etc.
|
# Use this with GCC to check for mistakes, unused arguments, etc.
|
||||||
#CFLAGS = -g -Wall -Wextra -Wmissing-prototypes -Wunreachable-code -D_FORTIFY_SOURCE=1 -DU_DEBUG
|
#CFLAGS = -g -Wall -Wextra -Wmissing-prototypes -Wunreachable-code -D_FORTIFY_SOURCE=1
|
||||||
#CFLAGS = -g -O2 -Wall -Wextra -Wmissing-prototypes -D_FORTIFY_SOURCE=1 -DU_DEBUG
|
#CFLAGS = -g -O2 -Wall -Wextra -Wmissing-prototypes -D_FORTIFY_SOURCE=1 -DU_DEBUG
|
||||||
#PYTHON_CFLAGS_EXTRA = -Wno-missing-field-initializers
|
#PYTHON_CFLAGS_EXTRA = -Wno-missing-field-initializers
|
||||||
#MZSCHEME_CFLAGS_EXTRA = -Wno-unreachable-code -Wno-unused-parameter
|
#MZSCHEME_CFLAGS_EXTRA = -Wno-unreachable-code -Wno-unused-parameter
|
||||||
@ -594,8 +594,9 @@ LINT_OPTIONS = -beprxzF
|
|||||||
|
|
||||||
# PROFILING - Uncomment the next two lines to do profiling with gcc and gprof.
|
# PROFILING - Uncomment the next two lines to do profiling with gcc and gprof.
|
||||||
# Might not work with GUI or Perl.
|
# Might not work with GUI or Perl.
|
||||||
# For unknown reasons adding "-lc" fixes a linking problem with GCC. That's
|
# For unknown reasons adding "-lc" fixes a linking problem with some versions
|
||||||
# probably a bug in the "-pg" implementation.
|
# of GCC. That's probably a bug in the "-pg" implementation.
|
||||||
|
# After running Vim see the profile result with: gmon vim gmon.out | vim -
|
||||||
# Need to recompile everything after changing this: "make clean" "make".
|
# Need to recompile everything after changing this: "make clean" "make".
|
||||||
#PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING
|
#PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING
|
||||||
#PROFILE_LIBS = -pg
|
#PROFILE_LIBS = -pg
|
||||||
@ -606,8 +607,8 @@ LINT_OPTIONS = -beprxzF
|
|||||||
# Configuration is in the .ccmalloc or ~/.ccmalloc file.
|
# Configuration is in the .ccmalloc or ~/.ccmalloc file.
|
||||||
# Doesn't work very well, since memory linked to from global variables
|
# Doesn't work very well, since memory linked to from global variables
|
||||||
# (in libraries) is also marked as leaked memory.
|
# (in libraries) is also marked as leaked memory.
|
||||||
#PROFILE_CFLAGS = -DEXITFREE
|
#LEAK_CFLAGS = -DEXITFREE
|
||||||
#PROFILE_LIBS = -lccmalloc
|
#LEAK_LIBS = -lccmalloc
|
||||||
|
|
||||||
#####################################################
|
#####################################################
|
||||||
### Specific systems, check if yours is listed! ### {{{
|
### Specific systems, check if yours is listed! ### {{{
|
||||||
@ -1329,7 +1330,7 @@ SHELL = /bin/sh
|
|||||||
PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS)
|
PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS)
|
||||||
POST_DEFS = $(X_CFLAGS) $(MZSCHEME_CFLAGS) $(TCL_CFLAGS) $(EXTRA_DEFS)
|
POST_DEFS = $(X_CFLAGS) $(MZSCHEME_CFLAGS) $(TCL_CFLAGS) $(EXTRA_DEFS)
|
||||||
|
|
||||||
ALL_CFLAGS = $(PRE_DEFS) $(CFLAGS) $(PROFILE_CFLAGS) $(POST_DEFS)
|
ALL_CFLAGS = $(PRE_DEFS) $(CFLAGS) $(PROFILE_CFLAGS) $(LEAK_CFLAGS) $(POST_DEFS)
|
||||||
|
|
||||||
# Exclude $CFLAGS for osdef.sh, for Mac 10.4 some flags don't work together
|
# Exclude $CFLAGS for osdef.sh, for Mac 10.4 some flags don't work together
|
||||||
# with "-E".
|
# with "-E".
|
||||||
@ -1358,7 +1359,8 @@ ALL_LIBS = \
|
|||||||
$(PYTHON3_LIBS) \
|
$(PYTHON3_LIBS) \
|
||||||
$(TCL_LIBS) \
|
$(TCL_LIBS) \
|
||||||
$(RUBY_LIBS) \
|
$(RUBY_LIBS) \
|
||||||
$(PROFILE_LIBS)
|
$(PROFILE_LIBS) \
|
||||||
|
$(LEAK_LIBS)
|
||||||
|
|
||||||
# abbreviations
|
# abbreviations
|
||||||
DEST_BIN = $(DESTDIR)$(BINDIR)
|
DEST_BIN = $(DESTDIR)$(BINDIR)
|
||||||
@ -1480,8 +1482,15 @@ EXTRA_SRC = hangulin.c if_lua.c if_mzsch.c auto/if_perl.c if_perlsfio.c \
|
|||||||
if_python.c if_python3.c if_tcl.c if_ruby.c if_sniff.c \
|
if_python.c if_python3.c if_tcl.c if_ruby.c if_sniff.c \
|
||||||
gui_beval.c workshop.c wsdebug.c integration.c netbeans.c
|
gui_beval.c workshop.c wsdebug.c integration.c netbeans.c
|
||||||
|
|
||||||
|
# Unittest files
|
||||||
|
MEMFILE_TEST_SRC = memfile_test.c
|
||||||
|
MEMFILE_TEST_TARGET = memfile_test$(EXEEXT)
|
||||||
|
|
||||||
|
UNITTEST_SRC = $(MEMFILE_TEST_SRC)
|
||||||
|
UNITTEST_TARGETS = $(MEMFILE_TEST_TARGET)
|
||||||
|
|
||||||
# All sources, also the ones that are not configured
|
# All sources, also the ones that are not configured
|
||||||
ALL_SRC = $(BASIC_SRC) $(ALL_GUI_SRC) $(EXTRA_SRC)
|
ALL_SRC = $(BASIC_SRC) $(ALL_GUI_SRC) $(UNITTEST_SRC) $(EXTRA_SRC)
|
||||||
|
|
||||||
# Which files to check with lint. Select one of these three lines. ALL_SRC
|
# Which files to check with lint. Select one of these three lines. ALL_SRC
|
||||||
# checks more, but may not work well for checking a GUI that wasn't configured.
|
# checks more, but may not work well for checking a GUI that wasn't configured.
|
||||||
@ -1492,7 +1501,7 @@ LINT_SRC = $(BASIC_SRC) $(GUI_SRC) $(HANGULIN_SRC) $(PYTHON_SRC) $(PYTHON3_SRC)
|
|||||||
#LINT_SRC = $(ALL_SRC)
|
#LINT_SRC = $(ALL_SRC)
|
||||||
#LINT_SRC = $(BASIC_SRC)
|
#LINT_SRC = $(BASIC_SRC)
|
||||||
|
|
||||||
OBJ = \
|
OBJ_COMMON = \
|
||||||
objects/buffer.o \
|
objects/buffer.o \
|
||||||
objects/blowfish.o \
|
objects/blowfish.o \
|
||||||
objects/charset.o \
|
objects/charset.o \
|
||||||
@ -1513,9 +1522,7 @@ OBJ = \
|
|||||||
$(HANGULIN_OBJ) \
|
$(HANGULIN_OBJ) \
|
||||||
objects/if_cscope.o \
|
objects/if_cscope.o \
|
||||||
objects/if_xcmdsrv.o \
|
objects/if_xcmdsrv.o \
|
||||||
objects/main.o \
|
|
||||||
objects/mark.o \
|
objects/mark.o \
|
||||||
objects/memfile.o \
|
|
||||||
objects/memline.o \
|
objects/memline.o \
|
||||||
objects/menu.o \
|
objects/menu.o \
|
||||||
objects/message.o \
|
objects/message.o \
|
||||||
@ -1541,6 +1548,7 @@ OBJ = \
|
|||||||
objects/term.o \
|
objects/term.o \
|
||||||
objects/ui.o \
|
objects/ui.o \
|
||||||
objects/undo.o \
|
objects/undo.o \
|
||||||
|
objects/version.o \
|
||||||
objects/window.o \
|
objects/window.o \
|
||||||
$(GUI_OBJ) \
|
$(GUI_OBJ) \
|
||||||
$(LUA_OBJ) \
|
$(LUA_OBJ) \
|
||||||
@ -1555,6 +1563,13 @@ OBJ = \
|
|||||||
$(NETBEANS_OBJ) \
|
$(NETBEANS_OBJ) \
|
||||||
$(WSDEBUG_OBJ)
|
$(WSDEBUG_OBJ)
|
||||||
|
|
||||||
|
OBJ = $(OBJ_COMMON) \
|
||||||
|
objects/main.o \
|
||||||
|
objects/memfile.o \
|
||||||
|
|
||||||
|
MEMFILE_TEST_OBJ = $(OBJ_COMMON) \
|
||||||
|
objects/memfile_test.o
|
||||||
|
|
||||||
PRO_AUTO = \
|
PRO_AUTO = \
|
||||||
blowfish.pro \
|
blowfish.pro \
|
||||||
buffer.pro \
|
buffer.pro \
|
||||||
@ -1700,7 +1715,7 @@ CCC = $(CC) -c -I$(srcdir) $(ALL_CFLAGS)
|
|||||||
$(VIMTARGET): auto/config.mk objects $(OBJ) version.c version.h
|
$(VIMTARGET): auto/config.mk objects $(OBJ) version.c version.h
|
||||||
$(CCC) version.c -o objects/version.o
|
$(CCC) version.c -o objects/version.o
|
||||||
@LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
|
@LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
|
||||||
-o $(VIMTARGET) $(OBJ) objects/version.o $(ALL_LIBS)" \
|
-o $(VIMTARGET) $(OBJ) $(ALL_LIBS)" \
|
||||||
MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
|
MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
|
||||||
sh $(srcdir)/link.sh
|
sh $(srcdir)/link.sh
|
||||||
|
|
||||||
@ -1825,6 +1840,15 @@ test check:
|
|||||||
ln -s $(VIMTARGET) vim; \
|
ln -s $(VIMTARGET) vim; \
|
||||||
fi
|
fi
|
||||||
cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) $(GUI_TESTARG)
|
cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) $(GUI_TESTARG)
|
||||||
|
$(MAKE) -f Makefile unittest
|
||||||
|
|
||||||
|
unittesttargets:
|
||||||
|
$(MAKE) -f Makefile $(UNITTEST_TARGETS)
|
||||||
|
|
||||||
|
unittest unittests: $(UNITTEST_TARGETS)
|
||||||
|
@for t in $(UNITTEST_TARGETS); do \
|
||||||
|
./$$t || exit 1; echo $$t passed; \
|
||||||
|
done
|
||||||
|
|
||||||
testclean:
|
testclean:
|
||||||
cd testdir; $(MAKE) -f Makefile clean
|
cd testdir; $(MAKE) -f Makefile clean
|
||||||
@ -1832,6 +1856,17 @@ testclean:
|
|||||||
cd $(PODIR); $(MAKE) checkclean; \
|
cd $(PODIR); $(MAKE) checkclean; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Unittests
|
||||||
|
# It's build just like Vim to satisfy all dependencies.
|
||||||
|
$(MEMFILE_TEST_TARGET): auto/config.mk objects $(MEMFILE_TEST_OBJ)
|
||||||
|
$(CCC) version.c -o objects/version.o
|
||||||
|
@LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
|
||||||
|
-o $(MEMFILE_TEST_TARGET) $(MEMFILE_TEST_OBJ) $(ALL_LIBS)" \
|
||||||
|
MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
|
||||||
|
sh $(srcdir)/link.sh
|
||||||
|
|
||||||
|
# install targets
|
||||||
|
|
||||||
install: $(GUI_INSTALL)
|
install: $(GUI_INSTALL)
|
||||||
|
|
||||||
install_normal: installvim installtools $(INSTALL_LANGS) install-icons
|
install_normal: installvim installtools $(INSTALL_LANGS) install-icons
|
||||||
@ -2265,6 +2300,7 @@ clean celan: testclean
|
|||||||
-rm -f *.o objects/* core $(VIMTARGET).core $(VIMTARGET) vim xxd/*.o
|
-rm -f *.o objects/* core $(VIMTARGET).core $(VIMTARGET) vim xxd/*.o
|
||||||
-rm -f $(TOOLS) auto/osdef.h auto/pathdef.c auto/if_perl.c
|
-rm -f $(TOOLS) auto/osdef.h auto/pathdef.c auto/if_perl.c
|
||||||
-rm -f conftest* *~ auto/link.sed
|
-rm -f conftest* *~ auto/link.sed
|
||||||
|
-rm -f $(UNITTEST_TARGETS)
|
||||||
-rm -f runtime pixmaps
|
-rm -f runtime pixmaps
|
||||||
-rm -rf $(APPDIR)
|
-rm -rf $(APPDIR)
|
||||||
-rm -rf mzscheme_base.c
|
-rm -rf mzscheme_base.c
|
||||||
@ -2559,6 +2595,9 @@ objects/mark.o: mark.c
|
|||||||
objects/memfile.o: memfile.c
|
objects/memfile.o: memfile.c
|
||||||
$(CCC) -o $@ memfile.c
|
$(CCC) -o $@ memfile.c
|
||||||
|
|
||||||
|
objects/memfile_test.o: memfile_test.c
|
||||||
|
$(CCC) -o $@ memfile_test.c
|
||||||
|
|
||||||
objects/memline.o: memline.c
|
objects/memline.o: memline.c
|
||||||
$(CCC) -o $@ memline.c
|
$(CCC) -o $@ memline.c
|
||||||
|
|
||||||
@ -2877,7 +2916,7 @@ objects/option.o: option.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h
|
|||||||
objects/os_unix.o: os_unix.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
|
objects/os_unix.o: os_unix.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
|
||||||
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
|
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
|
||||||
gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h \
|
gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h \
|
||||||
arabic.h if_mzsch.h os_unixx.h
|
arabic.h os_unixx.h
|
||||||
objects/pathdef.o: auto/pathdef.c vim.h auto/config.h feature.h os_unix.h \
|
objects/pathdef.o: auto/pathdef.c vim.h auto/config.h feature.h os_unix.h \
|
||||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
||||||
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
||||||
@ -3016,6 +3055,10 @@ objects/gui_at_fs.o: gui_at_fs.c vim.h auto/config.h feature.h os_unix.h \
|
|||||||
objects/pty.o: pty.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
|
objects/pty.o: pty.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \
|
||||||
keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \
|
keymap.h term.h macros.h option.h structs.h regexp.h gui.h gui_beval.h \
|
||||||
proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h arabic.h
|
proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h arabic.h
|
||||||
|
objects/memfile_test.o: memfile_test.c main.c vim.h auto/config.h feature.h \
|
||||||
|
os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h \
|
||||||
|
structs.h regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h \
|
||||||
|
proto.h globals.h farsi.h arabic.h farsi.c arabic.c memfile.c
|
||||||
objects/hangulin.o: hangulin.c vim.h auto/config.h feature.h os_unix.h \
|
objects/hangulin.o: hangulin.c vim.h auto/config.h feature.h os_unix.h \
|
||||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
||||||
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
||||||
@ -3027,7 +3070,7 @@ objects/if_lua.o: if_lua.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h
|
|||||||
objects/if_mzsch.o: if_mzsch.c vim.h auto/config.h feature.h os_unix.h \
|
objects/if_mzsch.o: if_mzsch.c vim.h auto/config.h feature.h os_unix.h \
|
||||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
||||||
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
||||||
globals.h farsi.h arabic.h if_mzsch.h mzscheme_base.c
|
globals.h farsi.h arabic.h if_mzsch.h
|
||||||
objects/if_perl.o: auto/if_perl.c vim.h auto/config.h feature.h os_unix.h \
|
objects/if_perl.o: auto/if_perl.c vim.h auto/config.h feature.h os_unix.h \
|
||||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
||||||
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
||||||
@ -3048,7 +3091,7 @@ objects/if_tcl.o: if_tcl.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h
|
|||||||
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
|
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
|
||||||
gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h \
|
gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h \
|
||||||
arabic.h
|
arabic.h
|
||||||
objects/if_ruby.o: if_ruby.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
|
objects/if_ruby.o: if_ruby.c auto/config.h vim.h feature.h os_unix.h auto/osdef.h \
|
||||||
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
|
ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
|
||||||
gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h \
|
gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h globals.h farsi.h \
|
||||||
arabic.h version.h
|
arabic.h version.h
|
||||||
|
83
src/main.c
83
src/main.c
@ -92,37 +92,39 @@ typedef struct
|
|||||||
#define EDIT_TAG 3 /* tag name argument given, use tagname */
|
#define EDIT_TAG 3 /* tag name argument given, use tagname */
|
||||||
#define EDIT_QF 4 /* start in quickfix mode */
|
#define EDIT_QF 4 /* start in quickfix mode */
|
||||||
|
|
||||||
#if defined(UNIX) || defined(VMS)
|
#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
|
||||||
static int file_owned __ARGS((char *fname));
|
static int file_owned __ARGS((char *fname));
|
||||||
#endif
|
#endif
|
||||||
static void mainerr __ARGS((int, char_u *));
|
static void mainerr __ARGS((int, char_u *));
|
||||||
|
#ifndef NO_VIM_MAIN
|
||||||
static void main_msg __ARGS((char *s));
|
static void main_msg __ARGS((char *s));
|
||||||
static void usage __ARGS((void));
|
static void usage __ARGS((void));
|
||||||
static int get_number_arg __ARGS((char_u *p, int *idx, int def));
|
static int get_number_arg __ARGS((char_u *p, int *idx, int def));
|
||||||
#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
|
# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
|
||||||
static void init_locale __ARGS((void));
|
static void init_locale __ARGS((void));
|
||||||
#endif
|
# endif
|
||||||
static void parse_command_name __ARGS((mparm_T *parmp));
|
static void parse_command_name __ARGS((mparm_T *parmp));
|
||||||
static void early_arg_scan __ARGS((mparm_T *parmp));
|
static void early_arg_scan __ARGS((mparm_T *parmp));
|
||||||
static void command_line_scan __ARGS((mparm_T *parmp));
|
static void command_line_scan __ARGS((mparm_T *parmp));
|
||||||
static void check_tty __ARGS((mparm_T *parmp));
|
static void check_tty __ARGS((mparm_T *parmp));
|
||||||
static void read_stdin __ARGS((void));
|
static void read_stdin __ARGS((void));
|
||||||
static void create_windows __ARGS((mparm_T *parmp));
|
static void create_windows __ARGS((mparm_T *parmp));
|
||||||
#ifdef FEAT_WINDOWS
|
# ifdef FEAT_WINDOWS
|
||||||
static void edit_buffers __ARGS((mparm_T *parmp));
|
static void edit_buffers __ARGS((mparm_T *parmp));
|
||||||
#endif
|
# endif
|
||||||
static void exe_pre_commands __ARGS((mparm_T *parmp));
|
static void exe_pre_commands __ARGS((mparm_T *parmp));
|
||||||
static void exe_commands __ARGS((mparm_T *parmp));
|
static void exe_commands __ARGS((mparm_T *parmp));
|
||||||
static void source_startup_scripts __ARGS((mparm_T *parmp));
|
static void source_startup_scripts __ARGS((mparm_T *parmp));
|
||||||
static void main_start_gui __ARGS((void));
|
static void main_start_gui __ARGS((void));
|
||||||
#if defined(HAS_SWAP_EXISTS_ACTION)
|
# if defined(HAS_SWAP_EXISTS_ACTION)
|
||||||
static void check_swap_exists_action __ARGS((void));
|
static void check_swap_exists_action __ARGS((void));
|
||||||
#endif
|
# endif
|
||||||
#ifdef FEAT_CLIENTSERVER
|
# if defined(FEAT_CLIENTSERVER) || defined(PROTO)
|
||||||
static void exec_on_server __ARGS((mparm_T *parmp));
|
static void exec_on_server __ARGS((mparm_T *parmp));
|
||||||
static void prepare_server __ARGS((mparm_T *parmp));
|
static void prepare_server __ARGS((mparm_T *parmp));
|
||||||
static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
|
static void cmdsrv_main __ARGS((int *argc, char **argv, char_u *serverName_arg, char_u **serverStr));
|
||||||
static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
|
static char_u *serverMakeName __ARGS((char_u *arg, char *cmd));
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@ -145,6 +147,7 @@ static char *(main_errors[]) =
|
|||||||
#define ME_INVALID_ARG 5
|
#define ME_INVALID_ARG 5
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifndef NO_VIM_MAIN /* skip this for unittests */
|
||||||
#ifndef PROTO /* don't want a prototype for main() */
|
#ifndef PROTO /* don't want a prototype for main() */
|
||||||
int
|
int
|
||||||
# ifdef VIMDLL
|
# ifdef VIMDLL
|
||||||
@ -966,6 +969,7 @@ main
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif /* PROTO */
|
#endif /* PROTO */
|
||||||
|
#endif /* NO_VIM_MAIN */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Main loop: Execute Normal mode commands until exiting Vim.
|
* Main loop: Execute Normal mode commands until exiting Vim.
|
||||||
@ -1430,6 +1434,7 @@ getout(exitval)
|
|||||||
mch_exit(exitval);
|
mch_exit(exitval);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef NO_VIM_MAIN
|
||||||
/*
|
/*
|
||||||
* Get a (optional) count for a Vim argument.
|
* Get a (optional) count for a Vim argument.
|
||||||
*/
|
*/
|
||||||
@ -2994,6 +2999,8 @@ main_start_gui()
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* NO_VIM_MAIN */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get an environment variable, and execute it as Ex commands.
|
* Get an environment variable, and execute it as Ex commands.
|
||||||
* Returns FAIL if the environment variable was not executed, OK otherwise.
|
* Returns FAIL if the environment variable was not executed, OK otherwise.
|
||||||
@ -3033,7 +3040,7 @@ process_env(env, is_viminit)
|
|||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(UNIX) || defined(VMS)
|
#if (defined(UNIX) || defined(VMS)) && !defined(NO_VIM_MAIN)
|
||||||
/*
|
/*
|
||||||
* Return TRUE if we are certain the user owns the file "fname".
|
* Return TRUE if we are certain the user owns the file "fname".
|
||||||
* Used for ".vimrc" and ".exrc".
|
* Used for ".vimrc" and ".exrc".
|
||||||
@ -3091,6 +3098,7 @@ mainerr_arg_missing(str)
|
|||||||
mainerr(ME_ARG_MISSING, str);
|
mainerr(ME_ARG_MISSING, str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef NO_VIM_MAIN
|
||||||
/*
|
/*
|
||||||
* print a message with three spaces prepended and '\n' appended.
|
* print a message with three spaces prepended and '\n' appended.
|
||||||
*/
|
*/
|
||||||
@ -3311,6 +3319,8 @@ check_swap_exists_action()
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(STARTUPTIME) || defined(PROTO)
|
#if defined(STARTUPTIME) || defined(PROTO)
|
||||||
static void time_diff __ARGS((struct timeval *then, struct timeval *now));
|
static void time_diff __ARGS((struct timeval *then, struct timeval *now));
|
||||||
|
|
||||||
@ -3420,7 +3430,7 @@ time_msg(mesg, tv_start)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
|
#if (defined(FEAT_CLIENTSERVER) && !defined(NO_VIM_MAIN)) || defined(PROTO)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Common code for the X command server and the Win32 command server.
|
* Common code for the X command server and the Win32 command server.
|
||||||
@ -3887,6 +3897,32 @@ build_drop_cmd(filec, filev, tabs, sendReply)
|
|||||||
return ga.ga_data;
|
return ga.ga_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Make our basic server name: use the specified "arg" if given, otherwise use
|
||||||
|
* the tail of the command "cmd" we were started with.
|
||||||
|
* Return the name in allocated memory. This doesn't include a serial number.
|
||||||
|
*/
|
||||||
|
static char_u *
|
||||||
|
serverMakeName(arg, cmd)
|
||||||
|
char_u *arg;
|
||||||
|
char *cmd;
|
||||||
|
{
|
||||||
|
char_u *p;
|
||||||
|
|
||||||
|
if (arg != NULL && *arg != NUL)
|
||||||
|
p = vim_strsave_up(arg);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
p = vim_strsave_up(gettail((char_u *)cmd));
|
||||||
|
/* Remove .exe or .bat from the name. */
|
||||||
|
if (p != NULL && vim_strchr(p, '.') != NULL)
|
||||||
|
*vim_strchr(p, '.') = NUL;
|
||||||
|
}
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
#endif /* FEAT_CLIENTSERVER */
|
||||||
|
|
||||||
|
#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
|
||||||
/*
|
/*
|
||||||
* Replace termcodes such as <CR> and insert as key presses if there is room.
|
* Replace termcodes such as <CR> and insert as key presses if there is room.
|
||||||
*/
|
*/
|
||||||
@ -3998,32 +4034,7 @@ serverConvert(client_enc, data, tofree)
|
|||||||
# endif
|
# endif
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
|
||||||
* Make our basic server name: use the specified "arg" if given, otherwise use
|
|
||||||
* the tail of the command "cmd" we were started with.
|
|
||||||
* Return the name in allocated memory. This doesn't include a serial number.
|
|
||||||
*/
|
|
||||||
static char_u *
|
|
||||||
serverMakeName(arg, cmd)
|
|
||||||
char_u *arg;
|
|
||||||
char *cmd;
|
|
||||||
{
|
|
||||||
char_u *p;
|
|
||||||
|
|
||||||
if (arg != NULL && *arg != NUL)
|
|
||||||
p = vim_strsave_up(arg);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
p = vim_strsave_up(gettail((char_u *)cmd));
|
|
||||||
/* Remove .exe or .bat from the name. */
|
|
||||||
if (p != NULL && vim_strchr(p, '.') != NULL)
|
|
||||||
*vim_strchr(p, '.') = NUL;
|
|
||||||
}
|
|
||||||
return p;
|
|
||||||
}
|
|
||||||
#endif /* FEAT_CLIENTSERVER */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* When FEAT_FKMAP is defined, also compile the Farsi source code.
|
* When FEAT_FKMAP is defined, also compile the Farsi source code.
|
||||||
|
281
src/memfile.c
281
src/memfile.c
@ -84,6 +84,13 @@ static int mf_write __ARGS((memfile_T *, bhdr_T *));
|
|||||||
static int mf_write_block __ARGS((memfile_T *mfp, bhdr_T *hp, off_t offset, unsigned size));
|
static int mf_write_block __ARGS((memfile_T *mfp, bhdr_T *hp, off_t offset, unsigned size));
|
||||||
static int mf_trans_add __ARGS((memfile_T *, bhdr_T *));
|
static int mf_trans_add __ARGS((memfile_T *, bhdr_T *));
|
||||||
static void mf_do_open __ARGS((memfile_T *, char_u *, int));
|
static void mf_do_open __ARGS((memfile_T *, char_u *, int));
|
||||||
|
static void mf_hash_init __ARGS((mf_hashtab_T *));
|
||||||
|
static void mf_hash_free __ARGS((mf_hashtab_T *));
|
||||||
|
static void mf_hash_free_all __ARGS((mf_hashtab_T *));
|
||||||
|
static mf_hashitem_T *mf_hash_find __ARGS((mf_hashtab_T *, blocknr_T));
|
||||||
|
static void mf_hash_add_item __ARGS((mf_hashtab_T *, mf_hashitem_T *));
|
||||||
|
static void mf_hash_rem_item __ARGS((mf_hashtab_T *, mf_hashitem_T *));
|
||||||
|
static int mf_hash_grow __ARGS((mf_hashtab_T *));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The functions for using a memfile:
|
* The functions for using a memfile:
|
||||||
@ -119,7 +126,6 @@ mf_open(fname, flags)
|
|||||||
int flags;
|
int flags;
|
||||||
{
|
{
|
||||||
memfile_T *mfp;
|
memfile_T *mfp;
|
||||||
int i;
|
|
||||||
off_t size;
|
off_t size;
|
||||||
#if defined(STATFS) && defined(UNIX) && !defined(__QNX__)
|
#if defined(STATFS) && defined(UNIX) && !defined(__QNX__)
|
||||||
# define USE_FSTATFS
|
# define USE_FSTATFS
|
||||||
@ -152,11 +158,8 @@ mf_open(fname, flags)
|
|||||||
mfp->mf_used_last = NULL;
|
mfp->mf_used_last = NULL;
|
||||||
mfp->mf_dirty = FALSE;
|
mfp->mf_dirty = FALSE;
|
||||||
mfp->mf_used_count = 0;
|
mfp->mf_used_count = 0;
|
||||||
for (i = 0; i < MEMHASHSIZE; ++i)
|
mf_hash_init(&mfp->mf_hash);
|
||||||
{
|
mf_hash_init(&mfp->mf_trans);
|
||||||
mfp->mf_hash[i] = NULL; /* hash lists are empty */
|
|
||||||
mfp->mf_trans[i] = NULL; /* trans lists are empty */
|
|
||||||
}
|
|
||||||
mfp->mf_page_size = MEMFILE_PAGE_SIZE;
|
mfp->mf_page_size = MEMFILE_PAGE_SIZE;
|
||||||
#ifdef FEAT_CRYPT
|
#ifdef FEAT_CRYPT
|
||||||
mfp->mf_old_key = NULL;
|
mfp->mf_old_key = NULL;
|
||||||
@ -242,8 +245,6 @@ mf_close(mfp, del_file)
|
|||||||
int del_file;
|
int del_file;
|
||||||
{
|
{
|
||||||
bhdr_T *hp, *nextp;
|
bhdr_T *hp, *nextp;
|
||||||
NR_TRANS *tp, *tpnext;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
if (mfp == NULL) /* safety check */
|
if (mfp == NULL) /* safety check */
|
||||||
return;
|
return;
|
||||||
@ -263,12 +264,8 @@ mf_close(mfp, del_file)
|
|||||||
}
|
}
|
||||||
while (mfp->mf_free_first != NULL) /* free entries in free list */
|
while (mfp->mf_free_first != NULL) /* free entries in free list */
|
||||||
vim_free(mf_rem_free(mfp));
|
vim_free(mf_rem_free(mfp));
|
||||||
for (i = 0; i < MEMHASHSIZE; ++i) /* free entries in trans lists */
|
mf_hash_free(&mfp->mf_hash);
|
||||||
for (tp = mfp->mf_trans[i]; tp != NULL; tp = tpnext)
|
mf_hash_free_all(&mfp->mf_trans); /* free hashtable and its items */
|
||||||
{
|
|
||||||
tpnext = tp->nt_next;
|
|
||||||
vim_free(tp);
|
|
||||||
}
|
|
||||||
vim_free(mfp->mf_fname);
|
vim_free(mfp->mf_fname);
|
||||||
vim_free(mfp->mf_ffname);
|
vim_free(mfp->mf_ffname);
|
||||||
vim_free(mfp);
|
vim_free(mfp);
|
||||||
@ -743,16 +740,7 @@ mf_ins_hash(mfp, hp)
|
|||||||
memfile_T *mfp;
|
memfile_T *mfp;
|
||||||
bhdr_T *hp;
|
bhdr_T *hp;
|
||||||
{
|
{
|
||||||
bhdr_T *hhp;
|
mf_hash_add_item(&mfp->mf_hash, (mf_hashitem_T *)hp);
|
||||||
int hash;
|
|
||||||
|
|
||||||
hash = MEMHASH(hp->bh_bnum);
|
|
||||||
hhp = mfp->mf_hash[hash];
|
|
||||||
hp->bh_hash_next = hhp;
|
|
||||||
hp->bh_hash_prev = NULL;
|
|
||||||
if (hhp != NULL)
|
|
||||||
hhp->bh_hash_prev = hp;
|
|
||||||
mfp->mf_hash[hash] = hp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -763,13 +751,7 @@ mf_rem_hash(mfp, hp)
|
|||||||
memfile_T *mfp;
|
memfile_T *mfp;
|
||||||
bhdr_T *hp;
|
bhdr_T *hp;
|
||||||
{
|
{
|
||||||
if (hp->bh_hash_prev == NULL)
|
mf_hash_rem_item(&mfp->mf_hash, (mf_hashitem_T *)hp);
|
||||||
mfp->mf_hash[MEMHASH(hp->bh_bnum)] = hp->bh_hash_next;
|
|
||||||
else
|
|
||||||
hp->bh_hash_prev->bh_hash_next = hp->bh_hash_next;
|
|
||||||
|
|
||||||
if (hp->bh_hash_next)
|
|
||||||
hp->bh_hash_next->bh_hash_prev = hp->bh_hash_prev;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -780,12 +762,7 @@ mf_find_hash(mfp, nr)
|
|||||||
memfile_T *mfp;
|
memfile_T *mfp;
|
||||||
blocknr_T nr;
|
blocknr_T nr;
|
||||||
{
|
{
|
||||||
bhdr_T *hp;
|
return (bhdr_T *)mf_hash_find(&mfp->mf_hash, nr);
|
||||||
|
|
||||||
for (hp = mfp->mf_hash[MEMHASH(nr)]; hp != NULL; hp = hp->bh_hash_next)
|
|
||||||
if (hp->bh_bnum == nr)
|
|
||||||
break;
|
|
||||||
return hp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -1187,7 +1164,6 @@ mf_trans_add(mfp, hp)
|
|||||||
{
|
{
|
||||||
bhdr_T *freep;
|
bhdr_T *freep;
|
||||||
blocknr_T new_bnum;
|
blocknr_T new_bnum;
|
||||||
int hash;
|
|
||||||
NR_TRANS *np;
|
NR_TRANS *np;
|
||||||
int page_count;
|
int page_count;
|
||||||
|
|
||||||
@ -1235,12 +1211,8 @@ mf_trans_add(mfp, hp)
|
|||||||
hp->bh_bnum = new_bnum;
|
hp->bh_bnum = new_bnum;
|
||||||
mf_ins_hash(mfp, hp); /* insert in new hash list */
|
mf_ins_hash(mfp, hp); /* insert in new hash list */
|
||||||
|
|
||||||
hash = MEMHASH(np->nt_old_bnum); /* insert in trans list */
|
/* Insert "np" into "mf_trans" hashtable with key "np->nt_old_bnum" */
|
||||||
np->nt_next = mfp->mf_trans[hash];
|
mf_hash_add_item(&mfp->mf_trans, (mf_hashitem_T *)np);
|
||||||
mfp->mf_trans[hash] = np;
|
|
||||||
if (np->nt_next != NULL)
|
|
||||||
np->nt_next->nt_prev = np;
|
|
||||||
np->nt_prev = NULL;
|
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
@ -1255,25 +1227,20 @@ mf_trans_del(mfp, old_nr)
|
|||||||
memfile_T *mfp;
|
memfile_T *mfp;
|
||||||
blocknr_T old_nr;
|
blocknr_T old_nr;
|
||||||
{
|
{
|
||||||
int hash;
|
|
||||||
NR_TRANS *np;
|
NR_TRANS *np;
|
||||||
blocknr_T new_bnum;
|
blocknr_T new_bnum;
|
||||||
|
|
||||||
hash = MEMHASH(old_nr);
|
np = (NR_TRANS *)mf_hash_find(&mfp->mf_trans, old_nr);
|
||||||
for (np = mfp->mf_trans[hash]; np != NULL; np = np->nt_next)
|
|
||||||
if (np->nt_old_bnum == old_nr)
|
|
||||||
break;
|
|
||||||
if (np == NULL) /* not found */
|
if (np == NULL) /* not found */
|
||||||
return old_nr;
|
return old_nr;
|
||||||
|
|
||||||
mfp->mf_neg_count--;
|
mfp->mf_neg_count--;
|
||||||
new_bnum = np->nt_new_bnum;
|
new_bnum = np->nt_new_bnum;
|
||||||
if (np->nt_prev != NULL) /* remove entry from the trans list */
|
|
||||||
np->nt_prev->nt_next = np->nt_next;
|
/* remove entry from the trans list */
|
||||||
else
|
mf_hash_rem_item(&mfp->mf_trans, (mf_hashitem_T *)np);
|
||||||
mfp->mf_trans[hash] = np->nt_next;
|
|
||||||
if (np->nt_next != NULL)
|
|
||||||
np->nt_next->nt_prev = np->nt_prev;
|
|
||||||
vim_free(np);
|
vim_free(np);
|
||||||
|
|
||||||
return new_bnum;
|
return new_bnum;
|
||||||
@ -1397,3 +1364,207 @@ mf_do_open(mfp, fname, flags)
|
|||||||
mch_hide(mfp->mf_fname); /* try setting the 'hidden' flag */
|
mch_hide(mfp->mf_fname); /* try setting the 'hidden' flag */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Implementation of mf_hashtab_T follows.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The number of buckets in the hashtable is increased by a factor of
|
||||||
|
* MHT_GROWTH_FACTOR when the average number of items per bucket
|
||||||
|
* exceeds 2 ^ MHT_LOG_LOAD_FACTOR.
|
||||||
|
*/
|
||||||
|
#define MHT_LOG_LOAD_FACTOR 6
|
||||||
|
#define MHT_GROWTH_FACTOR 2 /* must be a power of two */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Initialize an empty hash table.
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
mf_hash_init(mht)
|
||||||
|
mf_hashtab_T *mht;
|
||||||
|
{
|
||||||
|
vim_memset(mht, 0, sizeof(mf_hashtab_T));
|
||||||
|
mht->mht_buckets = mht->mht_small_buckets;
|
||||||
|
mht->mht_mask = MHT_INIT_SIZE - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Free the array of a hash table. Does not free the items it contains!
|
||||||
|
* The hash table must not be used again without another mf_hash_init() call.
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
mf_hash_free(mht)
|
||||||
|
mf_hashtab_T *mht;
|
||||||
|
{
|
||||||
|
if (mht->mht_buckets != mht->mht_small_buckets)
|
||||||
|
vim_free(mht->mht_buckets);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Free the array of a hash table and all the items it contains.
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
mf_hash_free_all(mht)
|
||||||
|
mf_hashtab_T *mht;
|
||||||
|
{
|
||||||
|
long_u idx;
|
||||||
|
mf_hashitem_T *mhi;
|
||||||
|
mf_hashitem_T *next;
|
||||||
|
|
||||||
|
for (idx = 0; idx <= mht->mht_mask; idx++)
|
||||||
|
for (mhi = mht->mht_buckets[idx]; mhi != NULL; mhi = next)
|
||||||
|
{
|
||||||
|
next = mhi->mhi_next;
|
||||||
|
vim_free(mhi);
|
||||||
|
}
|
||||||
|
|
||||||
|
mf_hash_free(mht);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Find "key" in hashtable "mht".
|
||||||
|
* Returns a pointer to a mf_hashitem_T or NULL if the item was not found.
|
||||||
|
*/
|
||||||
|
static mf_hashitem_T *
|
||||||
|
mf_hash_find(mht, key)
|
||||||
|
mf_hashtab_T *mht;
|
||||||
|
blocknr_T key;
|
||||||
|
{
|
||||||
|
mf_hashitem_T *mhi;
|
||||||
|
|
||||||
|
mhi = mht->mht_buckets[key & mht->mht_mask];
|
||||||
|
while (mhi != NULL && mhi->mhi_key != key)
|
||||||
|
mhi = mhi->mhi_next;
|
||||||
|
|
||||||
|
return mhi;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Add item "mhi" to hashtable "mht".
|
||||||
|
* "mhi" must not be NULL.
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
mf_hash_add_item(mht, mhi)
|
||||||
|
mf_hashtab_T *mht;
|
||||||
|
mf_hashitem_T *mhi;
|
||||||
|
{
|
||||||
|
long_u idx;
|
||||||
|
|
||||||
|
idx = mhi->mhi_key & mht->mht_mask;
|
||||||
|
mhi->mhi_next = mht->mht_buckets[idx];
|
||||||
|
mhi->mhi_prev = NULL;
|
||||||
|
if (mhi->mhi_next != NULL)
|
||||||
|
mhi->mhi_next->mhi_prev = mhi;
|
||||||
|
mht->mht_buckets[idx] = mhi;
|
||||||
|
|
||||||
|
mht->mht_count++;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Grow hashtable when we have more thank 2^MHT_LOG_LOAD_FACTOR
|
||||||
|
* items per bucket on average
|
||||||
|
*/
|
||||||
|
if (mht->mht_fixed == 0
|
||||||
|
&& (mht->mht_count >> MHT_LOG_LOAD_FACTOR) > mht->mht_mask)
|
||||||
|
{
|
||||||
|
if (mf_hash_grow(mht) == FAIL)
|
||||||
|
{
|
||||||
|
/* stop trying to grow after first failure to allocate memory */
|
||||||
|
mht->mht_fixed = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Remove item "mhi" from hashtable "mht".
|
||||||
|
* "mhi" must not be NULL and must have been inserted into "mht".
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
mf_hash_rem_item(mht, mhi)
|
||||||
|
mf_hashtab_T *mht;
|
||||||
|
mf_hashitem_T *mhi;
|
||||||
|
{
|
||||||
|
if (mhi->mhi_prev == NULL)
|
||||||
|
mht->mht_buckets[mhi->mhi_key & mht->mht_mask] = mhi->mhi_next;
|
||||||
|
else
|
||||||
|
mhi->mhi_prev->mhi_next = mhi->mhi_next;
|
||||||
|
|
||||||
|
if (mhi->mhi_next != NULL)
|
||||||
|
mhi->mhi_next->mhi_prev = mhi->mhi_prev;
|
||||||
|
|
||||||
|
mht->mht_count--;
|
||||||
|
|
||||||
|
/* We could shrink the table here, but it typically takes little memory,
|
||||||
|
* so why bother? */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Increase number of buckets in the hashtable by MHT_GROWTH_FACTOR and
|
||||||
|
* rehash items.
|
||||||
|
* Returns FAIL when out of memory.
|
||||||
|
*/
|
||||||
|
static int
|
||||||
|
mf_hash_grow(mht)
|
||||||
|
mf_hashtab_T *mht;
|
||||||
|
{
|
||||||
|
long_u i, j;
|
||||||
|
int shift;
|
||||||
|
mf_hashitem_T *mhi;
|
||||||
|
mf_hashitem_T *tails[MHT_GROWTH_FACTOR];
|
||||||
|
mf_hashitem_T **buckets;
|
||||||
|
size_t size;
|
||||||
|
|
||||||
|
size = (mht->mht_mask + 1) * MHT_GROWTH_FACTOR * sizeof(void *);
|
||||||
|
buckets = (mf_hashitem_T **)lalloc_clear(size, FALSE);
|
||||||
|
if (buckets == NULL)
|
||||||
|
return FAIL;
|
||||||
|
|
||||||
|
shift = 0;
|
||||||
|
while ((mht->mht_mask >> shift) != 0)
|
||||||
|
shift++;
|
||||||
|
|
||||||
|
for (i = 0; i <= mht->mht_mask; i++)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Traverse the items in the i-th original bucket and move them into
|
||||||
|
* MHT_GROWTH_FACTOR new buckets, preserving their relative order
|
||||||
|
* within each new bucket. Preserving the order is important because
|
||||||
|
* mf_get() tries to keep most recently used items at the front of
|
||||||
|
* each bucket.
|
||||||
|
*
|
||||||
|
* Here we strongly rely on the fact the hashes are computed modulo
|
||||||
|
* a power of two.
|
||||||
|
*/
|
||||||
|
|
||||||
|
vim_memset(tails, 0, sizeof(tails));
|
||||||
|
|
||||||
|
for (mhi = mht->mht_buckets[i]; mhi != NULL; mhi = mhi->mhi_next)
|
||||||
|
{
|
||||||
|
j = (mhi->mhi_key >> shift) & (MHT_GROWTH_FACTOR - 1);
|
||||||
|
if (tails[j] == NULL)
|
||||||
|
{
|
||||||
|
buckets[i + (j << shift)] = mhi;
|
||||||
|
tails[j] = mhi;
|
||||||
|
mhi->mhi_prev = NULL;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tails[j]->mhi_next = mhi;
|
||||||
|
mhi->mhi_prev = tails[j];
|
||||||
|
tails[j] = mhi;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (j = 0; j < MHT_GROWTH_FACTOR; j++)
|
||||||
|
if (tails[j] != NULL)
|
||||||
|
tails[j]->mhi_next = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mht->mht_buckets != mht->mht_small_buckets)
|
||||||
|
vim_free(mht->mht_buckets);
|
||||||
|
|
||||||
|
mht->mht_buckets = buckets;
|
||||||
|
mht->mht_mask = (mht->mht_mask + 1) * MHT_GROWTH_FACTOR - 1;
|
||||||
|
|
||||||
|
return OK;
|
||||||
|
}
|
||||||
|
@ -377,6 +377,35 @@ typedef struct block_hdr bhdr_T;
|
|||||||
typedef struct memfile memfile_T;
|
typedef struct memfile memfile_T;
|
||||||
typedef long blocknr_T;
|
typedef long blocknr_T;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* mf_hashtab_T is a chained hashtable with blocknr_T key and arbitrary
|
||||||
|
* structures as items. This is an intrusive data structure: we require
|
||||||
|
* that items begin with mf_hashitem_T which contains the key and linked
|
||||||
|
* list pointers. List of items in each bucket is doubly-linked.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef struct mf_hashitem_S mf_hashitem_T;
|
||||||
|
|
||||||
|
struct mf_hashitem_S
|
||||||
|
{
|
||||||
|
mf_hashitem_T *mhi_next;
|
||||||
|
mf_hashitem_T *mhi_prev;
|
||||||
|
blocknr_T mhi_key;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define MHT_INIT_SIZE 64
|
||||||
|
|
||||||
|
typedef struct mf_hashtab_S
|
||||||
|
{
|
||||||
|
long_u mht_mask; /* mask used for hash value (nr of items
|
||||||
|
* in array is "mht_mask" + 1) */
|
||||||
|
long_u mht_count; /* nr of items inserted into hashtable */
|
||||||
|
mf_hashitem_T **mht_buckets; /* points to mht_small_buckets or
|
||||||
|
*dynamically allocated array */
|
||||||
|
mf_hashitem_T *mht_small_buckets[MHT_INIT_SIZE]; /* initial buckets */
|
||||||
|
char mht_fixed; /* non-zero value forbids growth */
|
||||||
|
} mf_hashtab_T;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* for each (previously) used block in the memfile there is one block header.
|
* for each (previously) used block in the memfile there is one block header.
|
||||||
*
|
*
|
||||||
@ -394,11 +423,11 @@ typedef long blocknr_T;
|
|||||||
|
|
||||||
struct block_hdr
|
struct block_hdr
|
||||||
{
|
{
|
||||||
|
mf_hashitem_T bh_hashitem; /* header for hash table and key */
|
||||||
|
#define bh_bnum bh_hashitem.mhi_key /* block number, part of bh_hashitem */
|
||||||
|
|
||||||
bhdr_T *bh_next; /* next block_hdr in free or used list */
|
bhdr_T *bh_next; /* next block_hdr in free or used list */
|
||||||
bhdr_T *bh_prev; /* previous block_hdr in used list */
|
bhdr_T *bh_prev; /* previous block_hdr in used list */
|
||||||
bhdr_T *bh_hash_next; /* next block_hdr in hash list */
|
|
||||||
bhdr_T *bh_hash_prev; /* previous block_hdr in hash list */
|
|
||||||
blocknr_T bh_bnum; /* block number */
|
|
||||||
char_u *bh_data; /* pointer to memory (for used block) */
|
char_u *bh_data; /* pointer to memory (for used block) */
|
||||||
int bh_page_count; /* number of pages in this block */
|
int bh_page_count; /* number of pages in this block */
|
||||||
|
|
||||||
@ -417,9 +446,9 @@ typedef struct nr_trans NR_TRANS;
|
|||||||
|
|
||||||
struct nr_trans
|
struct nr_trans
|
||||||
{
|
{
|
||||||
NR_TRANS *nt_next; /* next nr_trans in hash list */
|
mf_hashitem_T nt_hashitem; /* header for hash table and key */
|
||||||
NR_TRANS *nt_prev; /* previous nr_trans in hash list */
|
#define nt_old_bnum nt_hashitem.mhi_key /* old, negative, number */
|
||||||
blocknr_T nt_old_bnum; /* old, negative, number */
|
|
||||||
blocknr_T nt_new_bnum; /* new, positive, number */
|
blocknr_T nt_new_bnum; /* new, positive, number */
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -499,12 +528,6 @@ typedef struct
|
|||||||
|
|
||||||
typedef struct file_buffer buf_T; /* forward declaration */
|
typedef struct file_buffer buf_T; /* forward declaration */
|
||||||
|
|
||||||
/*
|
|
||||||
* Simplistic hashing scheme to quickly locate the blocks in the used list.
|
|
||||||
* 64 blocks are found directly (64 * 4K = 256K, most files are smaller).
|
|
||||||
*/
|
|
||||||
#define MEMHASHSIZE 64
|
|
||||||
#define MEMHASH(nr) ((nr) & (MEMHASHSIZE - 1))
|
|
||||||
#define MF_SEED_LEN 8
|
#define MF_SEED_LEN 8
|
||||||
|
|
||||||
struct memfile
|
struct memfile
|
||||||
@ -517,8 +540,8 @@ struct memfile
|
|||||||
bhdr_T *mf_used_last; /* lru block_hdr in used list */
|
bhdr_T *mf_used_last; /* lru block_hdr in used list */
|
||||||
unsigned mf_used_count; /* number of pages in used list */
|
unsigned mf_used_count; /* number of pages in used list */
|
||||||
unsigned mf_used_count_max; /* maximum number of pages in memory */
|
unsigned mf_used_count_max; /* maximum number of pages in memory */
|
||||||
bhdr_T *mf_hash[MEMHASHSIZE]; /* array of hash lists */
|
mf_hashtab_T mf_hash; /* hash lists */
|
||||||
NR_TRANS *mf_trans[MEMHASHSIZE]; /* array of trans lists */
|
mf_hashtab_T mf_trans; /* trans lists */
|
||||||
blocknr_T mf_blocknr_max; /* highest positive block number + 1*/
|
blocknr_T mf_blocknr_max; /* highest positive block number + 1*/
|
||||||
blocknr_T mf_blocknr_min; /* lowest negative block number - 1 */
|
blocknr_T mf_blocknr_min; /* lowest negative block number - 1 */
|
||||||
blocknr_T mf_neg_count; /* number of negative blocks numbers */
|
blocknr_T mf_neg_count; /* number of negative blocks numbers */
|
||||||
|
@ -28,7 +28,7 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \
|
|||||||
test61.out test62.out test63.out test64.out test65.out \
|
test61.out test62.out test63.out test64.out test65.out \
|
||||||
test66.out test67.out test68.out test69.out test70.out \
|
test66.out test67.out test68.out test69.out test70.out \
|
||||||
test71.out test72.out test73.out test74.out test75.out \
|
test71.out test72.out test73.out test74.out test75.out \
|
||||||
test76.out
|
test76.out test77.out
|
||||||
|
|
||||||
.SUFFIXES: .in .out
|
.SUFFIXES: .in .out
|
||||||
|
|
||||||
@ -124,3 +124,4 @@ test73.out: test73.in
|
|||||||
test74.out: test74.in
|
test74.out: test74.in
|
||||||
test75.out: test75.in
|
test75.out: test75.in
|
||||||
test76.out: test76.in
|
test76.out: test76.in
|
||||||
|
test77.out: test77.in
|
||||||
|
@ -28,7 +28,7 @@ SCRIPTS = test3.out test4.out test5.out test6.out test7.out \
|
|||||||
test37.out test38.out test39.out test40.out test41.out \
|
test37.out test38.out test39.out test40.out test41.out \
|
||||||
test42.out test52.out test65.out test66.out test67.out \
|
test42.out test52.out test65.out test66.out test67.out \
|
||||||
test68.out test69.out test71.out test72.out test73.out \
|
test68.out test69.out test71.out test72.out test73.out \
|
||||||
test74.out test75.out test76.out
|
test74.out test75.out test76.out test77.out
|
||||||
|
|
||||||
SCRIPTS32 = test50.out test70.out
|
SCRIPTS32 = test50.out test70.out
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ SCRIPTS = test3.out test4.out test5.out test6.out test7.out \
|
|||||||
test37.out test38.out test39.out test40.out test41.out \
|
test37.out test38.out test39.out test40.out test41.out \
|
||||||
test42.out test52.out test65.out test66.out test67.out \
|
test42.out test52.out test65.out test66.out test67.out \
|
||||||
test68.out test69.out test71.out test72.out test73.out \
|
test68.out test69.out test71.out test72.out test73.out \
|
||||||
test74.out test75.out test76.out
|
test74.out test75.out test76.out test77.out
|
||||||
|
|
||||||
SCRIPTS32 = test50.out test70.out
|
SCRIPTS32 = test50.out test70.out
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \
|
|||||||
test61.out test62.out test63.out test64.out test65.out \
|
test61.out test62.out test63.out test64.out test65.out \
|
||||||
test66.out test67.out test68.out test69.out test70.out \
|
test66.out test67.out test68.out test69.out test70.out \
|
||||||
test71.out test72.out test73.out test74.out test75.out \
|
test71.out test72.out test73.out test74.out test75.out \
|
||||||
test76.out
|
test76.out test77.out
|
||||||
|
|
||||||
.SUFFIXES: .in .out
|
.SUFFIXES: .in .out
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
|
|||||||
test59.out test60.out test61.out test62.out test63.out \
|
test59.out test60.out test61.out test62.out test63.out \
|
||||||
test64.out test65.out test66.out test67.out test68.out \
|
test64.out test65.out test66.out test67.out test68.out \
|
||||||
test69.out test70.out test71.out test72.out test73.out \
|
test69.out test70.out test71.out test72.out test73.out \
|
||||||
test74.out test75.out test76.out
|
test74.out test75.out test76.out test77.out
|
||||||
|
|
||||||
SCRIPTS_GUI = test16.out
|
SCRIPTS_GUI = test16.out
|
||||||
|
|
||||||
@ -71,7 +71,7 @@ test1.out: test1.in
|
|||||||
fi \
|
fi \
|
||||||
else echo $* NO OUTPUT >>test.log; \
|
else echo $* NO OUTPUT >>test.log; \
|
||||||
fi"
|
fi"
|
||||||
-rm -rf X* test.ok viminfo
|
# -rm -rf X* test.ok viminfo
|
||||||
|
|
||||||
test49.out: test49.vim
|
test49.out: test49.vim
|
||||||
|
|
||||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
143,
|
||||||
/**/
|
/**/
|
||||||
142,
|
142,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user