Skip to content
  1. Oct 24, 2018
    • Matthias Braun's avatar
      SelectionDAG: Reuse bigger sized constants in memset expansion. · 4f82406c
      Matthias Braun authored
      When implementing memset's today we often see this pattern:
      $x0 = MOV 0xXYXYXYXYXYXYXYXY
      store $x0, ...
      $w1 = MOV 0xXYXYXYXY
      store $w1, ...
      
      We first create a 64bit constant in a 64bit register with all bytes the
      same and then create a 32bit constant with all bytes the same in a 32bit
      register. In many targets we could just access the lower byte of the
      64bit register instead.
      
      - Ideally this would be handled by the ConstantHoist pass but it runs
        too early when memset isn't expanded yet.
      - The memset expansion code already had this optimization implemented,
        however SelectionDAG constantfolding would constantfold the
        "trunc(bigconstnat)" pattern to "smallconstant".
      - This patch makes the memset expansion mark the constant as Opaque and
        stop DAGCombiner from constant folding in this situation. (Similar to
        how ConstantHoisting marks things as Opaque to avoid folding
        ADD/SUB/etc.)
      
      Differential Revision: https://reviews.llvm.org/D53181
      
      llvm-svn: 345102
      4f82406c
    • Lang Hames's avatar
      [ORC] Re-apply r345077 with fixes to remove ambiguity in lookup calls. · 23cb2e7f
      Lang Hames authored
      llvm-svn: 345098
      23cb2e7f
    • Teresa Johnson's avatar
      Revert "[ThinLTO] Fix a crash in lazy loading of Metadata" · 7c6344a6
      Teresa Johnson authored
      This reverts commit r345095. It was accidentally committed.
      
      llvm-svn: 345097
      7c6344a6
    • Teresa Johnson's avatar
      [hot-cold-split] Only perform splitting in ThinLTO backend post-link · d725335b
      Teresa Johnson authored
      Summary:
      Fix the new PM to only perform hot cold splitting once during ThinLTO,
      by skipping it in the pre-link phase.
      
      This was already fixed in the old PM by the move of the hot cold split
      pass later (after the early return when PrepareForThinLTO) by r344869.
      
      Reviewers: vsk, sebpop, hiraditya
      
      Subscribers: mehdi_amini, inglorion, eraman, steven_wu, dexonsmith, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D53611
      
      llvm-svn: 345096
      d725335b
    • Teresa Johnson's avatar
      [ThinLTO] Fix a crash in lazy loading of Metadata · 3513dc24
      Teresa Johnson authored
      Summary:
      This is a revised version of D41474.
      
      When the debug location is parsed in BitcodeReader::parseFunction, the
      scope and inlinedAt MDNodes are obtained via MDLoader->getMDNodeFwdRefOrNull(),
      which will create a forward ref if they were not yet loaded.
      Specifically, if one of these MDNodes is in the module level metadata
      block, and this is during ThinLTO importing, that metadata block is
      lazily loaded.
      
      Most places in that invoke getMDNodeFwdRefOrNull have a corresponding call
      to resolveForwardRefsAndPlaceholders which will take care of resolving them.
      E.g. places that call getMetadataFwdRefOrLoad, or at the end of parsing a
      function-level metadata block, or at the end of the initial lazy load of
      module level metadata in order to handle invocations of getMDNodeFwdRefOrNull
      for named metadata and global object attachments. However, the calls for
      the scope/inlinedAt of debug locations are not backed by any such call to
      resolveForwardRefsAndPlaceholders.
      
      To fix this, change the scope and inlinedAt parsing to instead use
      getMetadataFwdRefOrLoad, which will ensure the forward refs to lazily
      loaded metadata are resolved.
      
      Fixes PR35472.
      
      Reviewers: dexonsmith, Sunil_Srivastava, vsk
      
      Subscribers: inglorion, eraman, steven_wu, sebpop, mehdi_amini, dmikulin, vsk, hiraditya, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D53596
      
      llvm-svn: 345095
      3513dc24
  2. Oct 23, 2018
Loading