Skip to content
  1. Sep 07, 2019
    • Craig Topper's avatar
      [X86] Add tests for fp128 frem, sqrt, sin, and cos. · dd507867
      Craig Topper authored
      llvm-svn: 371283
      dd507867
    • Craig Topper's avatar
      [X86] Autogenerate fp128-libcalls.ll · 2dd5a205
      Craig Topper authored
      llvm-svn: 371282
      2dd5a205
    • Fangrui Song's avatar
      [llvm-objcopy] Rename SHOffset (e_shoff) field to SHOff. NFC · 78b6909f
      Fangrui Song authored
      Similar to D67254.
      
      `struct Elf*_Shdr` has a field `sh_offset`. Rename SHOffset to SHOff to
      avoid confusion.
      
      llvm-svn: 371281
      78b6909f
    • Jason Molenda's avatar
      Long timeouts for the MacOSX SystemRuntime plugins under ASAN; else quick. · 5b0a687d
      Jason Molenda authored
      In April via r357829, Adrian unified timeouts across lldb and set the
      default value high so that we wouldn't get timeouts on ASAN bots that
      were running under load.
      
      The library that the MacOSX SystemRuntime has functions that need
      to take a lock, and if that lock is held already, those functions
      will never complete; we're seeing the 15 second timeout being hit
      with inferiors that are doing a lot of enqueuing and dequeuing of
      libdispatch work items causing this deadlocking behavior.
      
      This patch reverts to a very short timeout for these SystemRuntime
      function calls, given the behavior of this library that they are 
      calling into.  When lldb is built with AddressSanitizer enabled,
      they will use the default 15 second timeout.
      
      tl;dr: this reverts to the previous timeouts for these SystemRuntime
      inf func calls.
      
      <rdar://problem/54538149> 
      
      llvm-svn: 371280
      5b0a687d
    • Jan Korous's avatar
      [clang][DependencyFileGenerator] Fix missing -MT option handling · 0aee3873
      Jan Korous authored
      Targets in DependencyFileGenerator don't necessarily come from -MT option.
      
      Differential Revision: https://reviews.llvm.org/D67308
      
      llvm-svn: 371279
      0aee3873
    • Reid Kleckner's avatar
      Fix thunks.cpp test, don't FileCheck for anon namespace id · a8d3771a
      Reid Kleckner authored
      The anon namespace id is a hash of the main input path to the compiler,
      which varies in the test suite because the input path is absolute.
      
      llvm-svn: 371277
      a8d3771a
    • Akira Hatanaka's avatar
      [Sema][ObjC] Mark C union fields that have non-trivial ObjC ownership · 3f2c9917
      Akira Hatanaka authored
      qualifications as unavailable if the union is declared in a system
      header
      
      r365985 stopped marking those fields as unavailable, which caused the
      union's NonTrivialToPrimitive* bits to be set to true. This patch
      restores the behavior prior to r365985, except that users can explicitly
      specify the ownership qualification of the field to instruct the
      compiler not to mark it as unavailable.
      
      rdar://problem/53420753
      
      Differential Revision: https://reviews.llvm.org/D65256
      
      llvm-svn: 371276
      3f2c9917
    • Akira Hatanaka's avatar
      [Sema] Diagnose default-initialization, destruction, and copying of · 09051060
      Akira Hatanaka authored
      non-trivial C union types
      
      This recommits r365985, which was reverted because it broke a few
      projects using unions containing non-trivial ObjC pointer fields in
      system headers. We now have a patch to fix the problem (see
      https://reviews.llvm.org/D65256).
      
      Original commit message:
      
      This patch diagnoses uses of non-trivial C unions and structs/unions
      containing non-trivial C unions in the following contexts, which require
      default-initialization, destruction, or copying of the union objects,
      instead of disallowing fields of non-trivial types in C unions, which is
      what we currently do:
      
      - function parameters.
      - function returns.
      - assignments.
      - compound literals.
      - block captures except capturing of `__block` variables by non-escaping blocks.
      - local and global variable definitions.
      - lvalue-to-rvalue conversions of volatile types.
      
      See the discussion in https://reviews.llvm.org/D62988 for more background.
      
      rdar://problem/50679094
      
      Differential Revision: https://reviews.llvm.org/D63753
      
      llvm-svn: 371275
      09051060
    • Richard Smith's avatar
      Synchronize LLVM's copy of libc++abi's demangler with the libc++abi · 0e881b9f
      Richard Smith authored
      version after r371273.
      
      Also fix a minor issue in r371273 that only surfaced after template
      instantiation from LLVM's use of the demangler.
      
      llvm-svn: 371274
      0e881b9f
    • Richard Smith's avatar
      Implement demangling support for C++20 lambda expression extensions. · 4bbe85c5
      Richard Smith authored
      This implements demangling support for the mangling extensions specified
      in https://github.com/itanium-cxx-abi/cxx-abi/pull/85, much of which is
      implemented in Clang r359967 and r371004.
      
      Specifically, this provides demangling for:
      
       * <template-param-decl> in <lambda-sig>
       * <template-param> with non-zero level
       * lambda-expression literals (not emitted by Clang yet)
       * nullptr literals
       * string literals
      
      (The final two seem unrelated, but handling them was necessary in order
      to disambiguate between lambda expressions and the other forms of
      literal for which we have a type but no value.)
      
      When demangling a <lambda-sig>, we form template parameters with no
      corresponding argument, so we cannot substitute in the argument in the
      demangling. Instead we invent synthetic names for the template
      parameters (eg, '[]<typename $T>($T *x)').
      
      llvm-svn: 371273
      4bbe85c5
    • Reid Kleckner's avatar
      Use musttail for variadic method thunks when possible · 28328c37
      Reid Kleckner authored
      This avoids cloning variadic virtual methods when the target supports
      musttail and the return type is not covariant. I think we never
      implemented this previously because it doesn't handle the covariant
      case. But, in the MS ABI, there are some cases where vtable thunks must
      be emitted even when the variadic method defintion is not available, so
      it looks like we need to implement this. Do it for both ABIs, since it's
      a nice size improvement and simplification for Itanium.
      
      Emit an error when emitting thunks for variadic methods with a covariant
      return type. This case is essentially not implementable unless the ABI
      provides a way to perfectly forward variadic arguments without a tail
      call.
      
      Fixes PR43173.
      
      Differential Revision: https://reviews.llvm.org/D67028
      
      llvm-svn: 371269
      28328c37
    • Matthew Voss's avatar
      Update lld tests dynamic-list.s and symbol-override.s to use llvm-nm · c1779194
      Matthew Voss authored
      The following tests failed on Windows bots due to nm not being
      available:
      
        lld/test/ELF/dynamic-list.s
        lld/test/ELF/symbol-override.s
      
      llvm-svn: 371267
      c1779194
    • Amara Emerson's avatar
      [AArch64][GlobalISel] Enable the localizer for optimized builds. · a1cf4d97
      Amara Emerson authored
      Despite the fact that the localizer's original motivation was to fix horrendous
      constant spilling at -O0, shortening live ranges still has net benefits even
      with optimizations enabled.
      
      On an -Os build of CTMark, doing this improves code size by 0.5% geomean.
      
      There are a few regressions, bullet increasing in size by 0.5%. One example from
      bullet where code size increased slightly was due to GlobalISel actually now
      generating the same code as SelectionDAG. So we actually have an opportunity
      in future to implement better heuristics for localization and therefore be
      *better* than SDAG in some cases. In relation to other optimizations though that
      one is relatively minor.
      
      Differential Revision: https://reviews.llvm.org/D67303
      
      llvm-svn: 371266
      a1cf4d97
    • Evandro Menezes's avatar
      [InstCombine] Refactor substitution of instruction in the parent BB (NFC) · 7d677adf
      Evandro Menezes authored
      Add the new method `LibCallSimplifier::substituteInParent()` that calls
      `LibCallSimplifier::replaceAllUsesWith()' and
      `LibCallSimplifier::eraseFromParent()` back to back, simplifying the
      resulting code.
      
      llvm-svn: 371264
      7d677adf
  2. Sep 06, 2019
Loading