1
0
Fork 0
remarkable-linux/lib/lz4
Colin Ian King 8cb5d74828 lib/lz4: make arrays static const, reduces object code size
Don't populate the read-only arrays dec32table and dec64table on the
stack, instead make them both static const.  Makes the object code
smaller by over 10K bytes:

  Before:
     text	   data	    bss	    dec	    hex	filename
    31500	      0	      0	  31500	   7b0c	lib/lz4/lz4_decompress.o

  After:
     text	   data	    bss	    dec	    hex	filename
    20237	    176	      0	  20413	   4fbd	lib/lz4/lz4_decompress.o

(gcc version 7.2.0 x86_64)

Link: http://lkml.kernel.org/r/20170921221939.20820-1-colin.king@canonical.com
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Cc: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Cc: Sven Schmidt <4sschmid@informatik.uni-hamburg.de>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-10-03 17:54:25 -07:00
..
Makefile lib: update LZ4 compressor module 2017-02-24 17:46:57 -08:00
lz4_compress.c lib/lz4: remove back-compat wrappers 2017-02-24 17:46:57 -08:00
lz4_decompress.c lib/lz4: make arrays static const, reduces object code size 2017-10-03 17:54:25 -07:00
lz4defs.h lib: update LZ4 compressor module 2017-02-24 17:46:57 -08:00
lz4hc_compress.c lib/lz4: remove back-compat wrappers 2017-02-24 17:46:57 -08:00