Files
clang-p2996/lld/lib/ReaderWriter/PECOFF
Rui Ueyama 495a031ce4 [PECOFF] Fix AMD64_REL_[1-5] and AMD64_SECTION relocations
I hope this is the last fix for x64 relocations as I've wasted
a few days on this.

This caused a mysterious issue that some C++ programs crash on
startup. It was because a null pointer is passed as argv to main.
__tmainCRTStartup calls main, but before that it calls all
initialization routines between .text$xc_a and .text$xc_z.
pre_cpp_init is one of such routines, and it is the one who
initializes a heap pointer for argv for later use. That routine
was not called for some reason.

It turned out that __tmainCRTStartup was skipping a block of
code because of the relocation bug. A condition in the function
depends on a memory load, and that memory load was referring
a wrong location. As a result a jump instruction took the
wrong branch, skipping pre_cpp_init and so on.

This patch fixes the issue. Also added more tests to fix them
once and for all.

llvm-svn: 216772
2014-08-29 20:33:27 +00:00
..
2014-08-22 22:03:16 +00:00
2014-08-22 01:15:43 +00:00
2014-08-22 01:15:43 +00:00
2014-08-22 01:15:43 +00:00
2014-08-22 01:15:43 +00:00
2014-06-04 09:54:07 +00:00
2014-08-22 22:03:16 +00:00
2014-08-22 01:15:43 +00:00
2014-07-23 23:47:28 +00:00
2014-05-20 16:17:53 +00:00