backtrace: test with DLLs
commitd79e1dee8cfc9ddc68810be5af0d68670362094a
authorgrischka <grischka>
Sun, 19 Jan 2020 10:15:12 +0000 (19 11:15 +0100)
committergrischka <grischka>
Sun, 19 Jan 2020 10:46:07 +0000 (19 11:46 +0100)
tree16023a465eef9f478521e87b179ad36503d2d529
parenta5f6e6189e75e2f2cdb85b24b51079884393c04c
backtrace: test with DLLs

- tests2/113_btdll.c: test handling multiple stabs infos
Also:
- libtcc.c: remove _ISOC99_SOURCE pre-defines.  It is causing
  strange warnings such as 'strdup not declared'

- i386/x86_64-gen.c cleanup bounds_pro/epilog.  This discards
  the extra code for main's argv.  If needed, __argv might be
  processed instead.

- tccgen.c:block(): reduce stackspace usage.  For example with
  code like "if (..) ... else if (..) ... else if (..)... "
  considerable numbers of nested block() calls may occur.

  Before that most stack space used when compiling itself was
  for libtcc.c:tcc_set_linker().

  Now it's rather this construct at tccpp.c:2765: in next_nomacro1():

  if (!((isidnum_table[c - CH_EOF] & (IS_ID|IS_NUM))
        || c == '.'
        || ((c == '+' || c == '-')
        ...
13 files changed:
i386-gen.c
lib/bcheck.c
libtcc.c
tcc.h
tccelf.c
tccgen.c
tccrun.c
tests/tests2/112_backtrace.expect
tests/tests2/113_btdll.c [new file with mode: 0644]
tests/tests2/113_btdll.expect [new file with mode: 0644]
tests/tests2/Makefile
win32/build-tcc.bat
x86_64-gen.c