12022-10-21 Yonggang Luo <luoyonggang@gmail.com> 2 3 * asm_abort.c: Don't include unistd.h. 4 * asm_addint8.c: Don't include byteswap.h and endian.h. 5 * asm_begin.c: Don't include unistd.h and system.h. 6 * asm_end.c: Likewise. 7 * libasmP.h: Include system.h. 8 92021-09-06 Dmitry V. Levin <ldv@altlinux.org> 10 11 * asm_align.c (__libasm_ensure_section_space): Remove casts of calloc 12 return values. 13 * asm_begin.c (asm_begin): Remove cast of malloc return value. 14 * asm_fill.c (asm_fill): Likewise. 15 * asm_newabssym.c (asm_newabssym): Likewise. 16 * asm_newcomsym.c (asm_newcomsym): Likewise. 17 * asm_newscn.c (asm_newscn): Likewise. 18 * asm_newscngrp.c (asm_newscngrp): Likewise. 19 * asm_newsubscn.c (asm_newsubscn): Likewise. 20 * asm_newsym.c (asm_newsym): Likewise. 21 * disasm_begin.c (disasm_begin): Likewise. 22 232021-04-19 Martin Liska <mliska@suse.cz> 24 25 * libasmP.h (asm_emit_symbol_p): Use startswith. 26 272020-12-16 Dmitry V. Levin <ldv@altlinux.org> 28 29 * libasmP.h (_): Remove. 30 312020-12-12 Dmitry V. Levin <ldv@altlinux.org> 32 33 * asm_begin.c (prepare_binary_output): Fix spelling typo in comment. 34 * asm_end.c (binary_end): Likewise. 35 362020-12-11 Dmitry V. Levin <ldv@altlinux.org> 37 38 * Makefile.am (GCC_INCLUDE): Remove. 39 402020-12-09 Dmitry V. Levin <ldv@altlinux.org> 41 42 * Makefile.am (noinst_PROGRAMS): Rename to noinst_DATA. 43 (libasm_so_SOURCES): Remove. 44 (CLEANFILES): Add libasm.so. 45 462020-11-30 Dmitry V. Levin <ldv@altlinux.org> 47 48 * Makefile.am (libasm.so$(EXEEXT)): Drop $(EXEEXT) suffix. 49 502020-10-29 Mark Wielaard <mark@klomp.org> 51 52 * asm_align.c (__libasm_ensure_section_space): Use calloc, not 53 malloc to allocate extra space. 54 552020-07-19 Mark Wielaard <mark@klomp.org> 56 57 * libasmP.h: Include libebl.h after libasm.h. 58 592020-07-05 Mark Wielaard <mark@klomp.org> 60 61 * libasm.h: Include gelf.h. 62 632020-04-25 Mark Wielaard <mark@klomp.org> 64 65 * asm_end.c (text_end): Call fflush instead of fclose. 66 672020-01-08 Mark Wielaard <mark@klomp.org> 68 69 * libasm.h: Don't include libebl.h. Define an opaque Ebl handle. 70 * libasmP.h: Do include libebl.h. 71 722019-08-28 Mark Wielaard <mark@klomp.org> 73 74 * Makefile.am (libasm_so_DEPS): Replace libebl.a with libebl_pic.a. 75 762019-03-06 Mark Wielaard <mark@klomp.org> 77 78 * asm_end.c (binary_end): Check return value of gelf_update_ehdr. 79 802018-10-19 Mark Wielaard <mark@klomp.org> 81 82 * disasm_cb.c (read_symtab_exec): Check sh_entsize is not zero. 83 842018-07-04 Ross Burton <ross.burton@intel.com> 85 86 * asm_end.c: Remove error.h include. 87 * asm_newscn.c: Likewise. 88 * i386_gendis.c: Likewise and add system.h include. 89 * i386_lex.l: Likewise. 90 * i386_parse.y: Likewise. 91 922017-02-27 Ulf Hermann <ulf.hermann@qt.io> 93 94 * Makefile.am: Use dso_LDFLAGS. 95 962017-02-17 Ulf Hermann <ulf.hermann@qt.io> 97 98 * Makefile.am: Add libasm_so_DEPS to specify external libraries 99 that have to be linked in, and libasm_so_LIBS to specify the 100 archives libasm consists of. The dependencies include libeu.a. 101 (libasm_so_LDLIBS): Add $(libasm_so_DEPS). 102 (libasm_so$(EXEEXT): Use $(libasm_so_LIBS), 103 add --no-undefined,-z,defs,-z,relro, 104 drop the manual enumeration of dependencies, 105 specify the correct path for libasm.map. 106 1072017-04-27 Ulf Hermann <ulf.hermann@qt.io> 108 109 * asm_end.c (binary_end): Fix nesting of braces. 110 1112017-02-12 Mark Wielaard <mjw@redhat.com> 112 113 * asm_newsym.c (asm_newsym): Increase TEMPSYMLEN to 13. 114 1152017-02-15 Ulf Hermann <ulf.hermann@qt.io> 116 117 * disasm_str.c: Include system.h. 118 1192016-10-11 Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> 120 121 * asm_align.c: Remove sys/param.h include. 122 1232016-07-08 Mark Wielaard <mjw@redhat.com> 124 125 * Makefile.am (AM_CPPFLAGS): Add libdwelf. 126 (libasm.so): Add libdw. 127 * asm_begin.c (prepare_binary_output): Use dwelf_strtab instead of 128 ebl_strtab. 129 * asm_end.c (binary_end): Likewise. 130 (__libasm_finictx): Likewise. 131 * asm_newabssym.c (asm_newabssym): Likewise. 132 * asm_newcomsym.c (asm_newcomsym): Likewise. 133 * asm_newscn.c (binary_newscn): Likewise. 134 * asm_newscngrp.c (asm_newscngrp): Likewise. 135 * asm_newsym.c (asm_newsym): Likewise. 136 * libasmP.h: Likewise. 137 * symbolhash.c (COMPARE): Likewise. 138 * symbolhash.h (COMPARE): Likewise. 139 1402016-06-28 Richard Henderson <rth@redhat.com> 141 142 * disasm_cb.c (disasm_cb): Pass ebl to disasm hook. 143 1442016-02-12 Mark Wielaard <mjw@redhat.com> 145 146 * asm_begin.c (prepare_text_output): Only call __fsetlocking when 147 result isn't NULL. 148 1492015-10-05 Josh Stone <jistone@redhat.com> 150 151 * Makefile.am (libasm.so): Add AM_V_CCLD and AM_V_at silencers. 152 1532015-09-23 Mark Wielaard <mjw@redhat.com> 154 155 * asm_align.c (__libasm_ensure_section_space): Mark as 156 internal_function. 157 * asm_end.c (__libasm_finictx): Likewise. 158 * asm_error.c (__libasm_seterrno): Likewise. 159 1602015-09-22 Mark Wielaard <mjw@redhat.com> 161 162 * asm_*.c: Remove old-style function definitions. 163 1642015-09-04 Chih-Hung Hsieh <chh@google.com> 165 166 * asm_addint8.c (FCT): Replace K&R function definition 167 with ansi-C definitions. 168 * asm_adduint8.c (UFCT): Likewise. 169 * asm_begin.c (asm_begin): Likewise. 170 1712014-12-18 Ulrich Drepper <drepper@gmail.com> 172 173 * Makefile.am: Suppress output of textrel_check command. 174 1752014-11-27 Mark Wielaard <mjw@redhat.com> 176 177 * Makefile.am (libasm.so): Use textrel_check. 178 1792014-04-13 Mark Wielaard <mjw@redhat.com> 180 181 * Makefile.am: Remove !MUDFLAP conditions. 182 1832013-04-24 Mark Wielaard <mjw@redhat.com> 184 185 * Makefile.am: Use AM_CPPFLAGS instead of INCLUDES. 186 1872011-02-08 Roland McGrath <roland@redhat.com> 188 189 * asm_newscn.c (asm_newscn): Remove unused variable. 190 1912010-02-15 Roland McGrath <roland@redhat.com> 192 193 * Makefile.am: Use config/eu.am for common stuff. 194 1952009-01-10 Ulrich Drepper <drepper@redhat.com> 196 197 * Makefile.am: Use USE_LOCKS instead of USE_TLS. 198 * asm_error.c: Always use __thread. Remove all !USE_TLS code. 199 2002008-12-03 Ulrich Drepper <drepper@redhat.com> 201 202 * Makefile.am [USE_TLS]: Like libasm.so with libpthread. 203 2042008-01-11 Ulrich Drepper <drepper@redhat.com> 205 206 * libasm.h (DisasmGetSymCB_t): Change type of fourth and fifth 207 parameter. 208 * disasm_cb.c: Adjust accordingly. 209 2102008-01-08 Roland McGrath <roland@redhat.com> 211 212 * Makefile.am (euinclude): Variable removed. 213 (pkginclude_HEADERS): Set this instead of euinclude_HEADERS. 214 2152007-12-20 Ulrich Drepper <drepper@redhat.com> 216 217 * disasm_cb.c: Add initial support to resolve addresses to symbols. 218 2192007-02-05 Ulrich Drepper <drepper@redhat.com> 220 221 * disasm_begin.c: New file. 222 * disasm_cb.c: New file. 223 * disasm_end.c: New file. 224 * disasm_str.c: New file. 225 2262006-08-29 Roland McGrath <roland@redhat.com> 227 228 * Makefile.am (CLEANFILES): Add libasm.so.$(VERSION). 229 2302005-11-13 Roland McGrath <roland@redhat.com> 231 232 * Makefile.am (INCLUDES): Search in libdw. 233 2342005-09-02 Ulrich Drepper <drepper@redhat.com> 235 236 * asm_error.c (asm_errmsg): Unify error message. 237 2382005-08-28 Ulrich Drepper <drepper@redhat.com> 239 240 * Makefile.am: Use $(LINK) not $(CC) when creating DSO. 241 (%.os): Use COMPILE.os. 242 (COMPILE.os): Filter out gconv options. 243 2442005-08-02 Ulrich Drepper <drepper@redhat.com> 245 246 * Makefile.am (AM_CFLAGS): Add -std=gnu99. 247 * asm_abort.c: Don't try to remove output file if there is none. 248 * asm_addint8.c: In print mode, print to file not stdout. 249 * asm_addsleb128.c: Likewise. 250 * asm_adduleb128.c: Likewise. 251 * asm_newscn.c: Likewise. 252 * asm_align.c: Implement print mode. 253 * asm_begin.c (asm_begin): Change interface. Take binary class and 254 byte order information from new Ebl parameter. 255 * libasm.h: Adjust prototype. 256 * asm_end.c (text_end): Close file if necesary. 257 * asm_error.c: Add new error ASM_E_IOERROR. 258 * libasmP.h: Add ASM_E_IOERROR definition. 259 2602005-02-15 Ulrich Drepper <drepper@redhat.com> 261 262 * Makefile.am (AM_CFLAGS): Add -Wunused -Wextra -Wformat=2. 263 264 * asm_end.c (text_end): Mark parameter as possibly unused. 265 2662005-02-06 Ulrich Drepper <drepper@redhat.com> 267 268 * Makefile.am: Remove lint handling. 269 2702005-02-05 Ulrich Drepper <drepper@redhat.com> 271 272 * asm_end.c (binary_end): Don't terminate with error() in case 273 something goes wrong. 274 275 * Makefile.am: Check for text relocations in constructed DSO. 276 277 * Makefile.am (AM_CFLAGS): More warnings. Add -fmudflap for MUDFLAP. 278 279 * asm_end.c (binary_end): Remove shadowing variables. 280 Little cleanups. 281 282 * asm_newsym.c: Allocate memory for the string parameter. 283 2842005-02-04 Ulrich Drepper <drepper@redhat.com> 285 286 * asm_newscn_ingrp.c (asm_newscn_ingrp): Use INTUSE to reference 287 asm_newscn. 288 2892004-09-25 Ulrich Drepper <drepper@redhat.com> 290 291 * asm_error.c: Make compile with gcc 4.0. 292 2932004-01-20 Ulrich Drepper <drepper@redhat.com> 294 295 * Makefile.am: Support building with mudflap. 296 2972004-01-18 Ulrich Drepper <drepper@redhat.com> 298 299 * libasmP.h (_): Use elfutils domain. 300 3012004-01-17 Ulrich Drepper <drepper@redhat.com> 302 303 * Makefile.am: Support building with mudflap. 304 3052003-08-13 Ulrich Drepper <drepper@redhat.com> 306 307 * Makefile.in: Depend on libebl.a, not libebl.so. 308 3092003-08-11 Ulrich Drepper <drepper@redhat.com> 310 311 * Moved to CVS archive. 312