- Feb 26, 2014
-
-
Simon Atanasyan authored
llvm-svn: 202288
-
Simon Atanasyan authored
llvm-svn: 202287
-
Rui Ueyama authored
If all input files are compatible with Structured Exception Handling, linker is supposed to create an exectuable with a table for SEH handlers. The table consists of exception handlers entry point addresses. The basic idea of SEH in x86 Microsoft ABI is to list all valid entry points of exception handlers in an read-only memory, so that an attacker cannot override the addresses in it. In x86 ABI, data for exception handling is mostly on stack, so it's volnerable to stack overflow attack. In order to protect against it, Windows runtime uses the table to check a return address, to ensure that the address is really an valid entry point for an exception handler. Compiler emits a list of exception handler functions to .sxdata section. It also emits a marker symbol "@feat.00" to indicate that the object is compatible with SEH. SEH is a relatively new feature for COFF, and mixing SEH-compatible and SEH-incompatible objects will result in an invalid executable, so is the marker. If all input files are compatible with SEH, LLD emits a SEH table. SEH table needs to be pointed by Load Configuration strucutre, so when emitting a SEH table LLD emits it too. The address of a Load Configuration will be stored to the file header. llvm-svn: 202248
-
NAKAMURA Takumi authored
[CMake] Use target_link_libraries(INTERFACE|PRIVATE) on CMake-2.8.12 to increase opportunity for parallel build. target_link_libraries(INTERFACE) doesn't bring inter-target dependencies in add_library, although final targets have dependencies to whole dependent libraries. It makes most libraries can be built in parallel. target_link_libraries(PRIVATE) is used to shaared library. Each dependent library is linked to the target.so, and its user will not see its grandchildren. For example, - libclang.so has sufficient libclang*.a(s). - c-index-test requires just only libclang.so. FIXME: lld is tweaked minimally. Adding INTERFACE in each library would be better thing. llvm-svn: 202241
-
NAKAMURA Takumi authored
For now, use both keywords, INTERFACE and PRIVATE via the variable, - ${cmake_2_8_12_INTERFACE} - ${cmake_2_8_12_PRIVATE} They could be cleaned up when we introduce 2.8.12. llvm-svn: 202239
-
NAKAMURA Takumi authored
Please give LLVMObject explicitly in each subdirectory if any of subdirectories required it. llvm-svn: 202236
-
NAKAMURA Takumi authored
llvm-svn: 202235
-
Rui Ueyama authored
llvm-svn: 202217
-
Rui Ueyama authored
IMAGE_DLL_CHARACTERISTICS_NO_SEH flag should be set only when SEH is disabled. llvm-svn: 202215
-
- Feb 25, 2014
-
-
Shankar Easwaran authored
llvm-svn: 202166
-
Rui Ueyama authored
llvm-svn: 202113
-
Shankar Easwaran authored
llvm-svn: 202111
-
Shankar Easwaran authored
llvm-svn: 202101
-
Shankar Easwaran authored
llvm-svn: 202100
-
- Feb 24, 2014
-
-
Nico Rieck authored
This restores the debug output to how it was before r197727 broke it. This went undetected because the corresponding test was never run due to broken feature detection. llvm-svn: 202079
-
Nico Rieck authored
llvm-svn: 202078
-
Rafael Espindola authored
llvm-svn: 202054
-
Rafael Espindola authored
llvm-svn: 202039
-
- Feb 23, 2014
-
-
Nico Rieck authored
llvm-svn: 201970
-
NAKAMURA Takumi authored
[CMake] add_lld_library: link_system_libs is not needed any more. LLVMSupport may provide dependencies to system libs. llvm-svn: 201967
-
- Feb 21, 2014
-
-
Rui Ueyama authored
LLD now prints an error message if /SAFESEH option is specified and one or more input files are not compatible with SEH. llvm-svn: 201900
-
Rui Ueyama authored
Syntactically /SAFESEH is a boolean flag -- you can pass /SAFESEH or /SAFESEH:no. The meaning of /SAFESEH is as follows. - If /SAFESEH is specified, the linker will produce an executable with SEH table. If any input files are not compatible with SEH, it's an error. - If /SAFESEH:no is specified, the linker will not emit SEH table even if all input files are compatible with SEH. - If no option is specified, the linker emits SEH table if all input files are compatible with SEH. llvm-svn: 201895
-
- Feb 20, 2014
-
-
Shankar Easwaran authored
llvm-svn: 201741
-
Shankar Easwaran authored
The sections .rela/.rel.(*) have a alignment of 2 in the final image created by the linker. This needs to be properly set to the right alignment depending on the architecture(32/64bits). llvm-svn: 201740
-
- Feb 11, 2014
-
-
Simon Atanasyan authored
line by line. llvm-svn: 201133
-
Simon Atanasyan authored
llvm-svn: 201131
-
Simon Atanasyan authored
llvm-svn: 201129
-
Simon Atanasyan authored
llvm-svn: 201128
-
- Feb 10, 2014
-
-
Rafael Espindola authored
llvm-svn: 201109
-
- Feb 07, 2014
-
-
Nick Kledzik authored
llvm-svn: 200956
-
- Feb 06, 2014
-
-
Simon Atanasyan authored
llvm-svn: 200911
-
- Feb 03, 2014
-
-
Simon Atanasyan authored
undefined symbols to '.dynsym' if these symbols have corresponding entries in a global part of GOT. llvm-svn: 200716
-
Simon Atanasyan authored
llvm-svn: 200715
-
Rui Ueyama authored
llvm-svn: 200712
-
Shankar Easwaran authored
This makes it a lot easier for Section Group design. llvm-svn: 200675
-
- Feb 02, 2014
-
-
Joey Gouly authored
llvm-svn: 200649
-
Simon Atanasyan authored
The patch reviewed by Shankar Easwaran and Rui Ueyama. llvm-svn: 200630
-
Simon Atanasyan authored
llvm-svn: 200629
-
- Feb 01, 2014
-
-
Rui Ueyama authored
llvm-svn: 200599
-
- Jan 31, 2014
-
-
Rui Ueyama authored
The target machine type affects the meaning of other options, in particular how to mangle symbols. So we want to handle the option first and then parse all the other options. llvm-svn: 200589
-