Skip to content
  1. Jun 20, 2015
  2. Jun 19, 2015
    • Dan Liew's avatar
      Try to fix generation of LLVMExports.cmake under Visual Studio. · 7b62aec0
      Dan Liew authored
      If LLVMDebugInfoPDB links against the DIA SDK then the exports file
      would contain an INTERFACE_LINK_LIBRARIES property that contained an
      absolute path to ``diaguids.lib`` which used a native windows path (interpreted
      as escape sequences when LLVMExports.cmake is imported causing
      ``find_package(LLVM)`` to fail) rather than the correct CMake style path.
      
      llvm-svn: 240181
      7b62aec0
    • Rui Ueyama's avatar
      COFF: Add search paths in the correct order. · 165b254e
      Rui Ueyama authored
      Previously, we added search paths in reverse order.
      
      llvm-svn: 240180
      165b254e
    • Alexey Samsonov's avatar
      [Sanitizers] Provide better diagnostic for sanitizers unsupported for target triple. · 7f2a0d2c
      Alexey Samsonov authored
      Introduce ToolChain::getSupportedSanitizers() that would return the set
      of sanitizers available on given toolchain. By default, these are
      sanitizers which don't necessarily require runtime support and are
      not toolchain- or architecture-dependent.
      
      Sanitizers (ASan, DFSan, TSan, MSan etc.) which cannot function
      without runtime library are marked as supported only on platforms
      for which we actually build these runtimes.
      
      This would allow more fine-grained checks in the future: for instance,
      we have to restrict availability of -fsanitize=vptr to Mac OS 10.9+
      (PR23539).
      
      Update test cases accrodingly: add tests for certain unsupported
      configurations, remove test cases for -fsanitize=vptr + PS4
      integration, as we don't build the runtime for PS4 at the moment.
      
      This change was first submitted as r239953 and reverted in r239958.
      The problem was and still is in Darwin toolchains, which get the
      knowledge about target platform too late after initializaition, while
      now we require this information when ToolChain::getSanitizerArgs() is
      called. r240170 works around this issue.
      
      llvm-svn: 240179
      7f2a0d2c
    • Rui Ueyama's avatar
      COFF: Cache Archive::Symbol::getName(). NFC. · 29792a82
      Rui Ueyama authored
      getName() does strlen() on the symbol table, so it's not very fast.
      It's not as bad as r239332 because the number of symbols exported
      from archive files are fewer than object files, and they are usually
      shorter, though.
      
      llvm-svn: 240178
      29792a82
    • Rui Ueyama's avatar
      COFF: Continue reading object files until converge. · 573bf7de
      Rui Ueyama authored
      In this linker model, adding an undefined symbol may trigger chain
      reactions. It may trigger a Lazy symbol to read a new file.
      A new file may contain a directive section, which may contain various
      command line options.
      
      Previously, we didn't handle chain reactions well. We visited /include'd
      symbols only once, so newly-added /include symbols were ignored.
      This patch fixes that bug.
      
      Now, the symbol table is versioned; every time the symbol table is
      updated, the version number is incremented. We repeat adding undefined
      symbols until the version number does not change. It is guaranteed to
      converge -- the number of undefined symbol in the system is finite,
      and adding the same undefined symbol more than once is basically no-op.
      
      llvm-svn: 240177
      573bf7de
    • Rafael Espindola's avatar
      Improve error handling of getRelocationAddend. · 3dc0d05b
      Rafael Espindola authored
      This patch changes getRelocationAddend to use ErrorOr and considers it an error
      to try to get the addend of a REL section.
      
      If, for example, a x86_64 file has a REL section, that file is corrupted and
      we should reject it.
      
      Using ErrorOr is not ideal since we check the section type once per relocation
      instead of once per section.
      
      Checking once per section would involve getRelocationAddend just asserting and
      callers checking the section before iterating over the relocations.
      
      In any case, this is an improvement and includes a test.
      
      llvm-svn: 240176
      3dc0d05b
    • Pete Cooper's avatar
      Fix header path in CMake. NFC. · 90b05b52
      Pete Cooper authored
      The ADDITIONAL_HEADER_DIRS command can be used to tell UIs that a given library
      owns certain headers.  The path for MCParser was missing MC/ in it.
      
      llvm-svn: 240175
      90b05b52
    • Alex Lorenz's avatar
      MIR Parser: report an error when a basic block isn't found. · 00302df3
      Alex Lorenz authored
      This commit reports an error when the MIR parser can't find
      a basic block with the machine basic block's name.
      
      llvm-svn: 240174
      00302df3
    • Greg Clayton's avatar
      Fix the MacOSX build to include the Mips64 ABI plug-in. · 9350f0dd
      Greg Clayton authored
      llvm-svn: 240173
      9350f0dd
    • David Blaikie's avatar
      Fix the clang -Werror build (-Wbraced-scalar-init) · de867e1e
      David Blaikie authored
      llvm-svn: 240172
      de867e1e
Loading