Skip to content
  1. Dec 21, 2015
    • NAKAMURA Takumi's avatar
      check-llvm: Tweak the feature "timestamps" for autoconf. · 8c6c95ad
      NAKAMURA Takumi authored
      Note, ENABLE_TIMESTAMPS is either 1 or 0 in Makefile.config.
      
      llvm-svn: 256138
      8c6c95ad
    • David Majnemer's avatar
      [MC, COFF] Unbreak support for COFF timestamps · 18663f87
      David Majnemer authored
      Support for COFF timestamps was unintentionally broken in r246905 when
      it was conditionally available depending on whether or not LLVM was
      configured with LLVM_ENABLE_TIMESTAMPS.  However, Config/config.h was
      never included which essentially broke the feature.  Due to lax testing,
      the breakage was never identified until we observed strange failures
      during incremental links of Chromium.
      
      This issue is resolved by simply including Config/config.h in
      WinCOFFObjectWriter and teaching lit that the MC/COFF/timestamp.s test
      is conditionally supported depending on LLVM_ENABLE_TIMESTAMPS.  With
      this in place, we can strengthen the test to ensure that it will not
      accidentally get broken in the future.
      
      This fixes PR25891.
      
      llvm-svn: 256137
      18663f87
  2. Dec 20, 2015
  3. Dec 19, 2015
    • Sanjoy Das's avatar
      Nonnull elements in OperandBundleCallSites are not all Instructions · ab0626e3
      Sanjoy Das authored
      `CloneAndPruneIntoFromInst` sometimes RAUW's dead instructions with
      `undef` before erasing them (to avoid deleting instructions that still
      have uses).  This changes the `WeakVH` in `OperandBundleCallSites` to
      hold an `undef`, and we need to guard for this situation in eventuality
      in `llvm::InlineFunction`.
      
      llvm-svn: 256110
      ab0626e3
    • Sanjoy Das's avatar
      [Deopt bundles] Fix a test case · b496834f
      Sanjoy Das authored
      The `CHECK-NOT` line was incorrect, and would not have caught a
      breakage.
      
      llvm-svn: 256109
      b496834f
    • JF Bastien's avatar
      WebAssembly: add vtable test · 374ea4bd
      JF Bastien authored
      The test will mainly be useful to check that the .s file assembles and relocates properly because vtables reference functions in their data section.
      
      llvm-svn: 256102
      374ea4bd
    • Manuel Jacob's avatar
      Remove double blanks. NFC. · f4b3577d
      Manuel Jacob authored
      llvm-svn: 256100
      f4b3577d
    • Keno Fischer's avatar
      Hopefully fix debug-info-blocks.ll test on win32 bot · f7346e0a
      Keno Fischer authored
      llc_dwarf adds an mtriple, which forces this to use COFF, causing
      the test to fail. Hopefully using regular llc without the triple
      will work fine everywhere
      
      llvm-svn: 256084
      f7346e0a
    • Tom Stellard's avatar
      AMDGPU/SI: Fix implemenation of isSourceOfDivergence() for graphics shaders · ffc1a5ae
      Tom Stellard authored
      Summary:
      The analysis of shader inputs was completely wrong.  We were passing the
      wrong index to AttributeSet::hasAttribute() and the logic for which
      inputs where in SGPRs was wrong too.
      
      Reviewers: arsenm
      
      Subscribers: arsenm, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D15608
      
      llvm-svn: 256082
      ffc1a5ae
    • Philip Reames's avatar
      [RS4GC] Remove an overly strong assertion · 5d54689b
      Philip Reames authored
      As shown by the included test case, it's reasonable to end up with constant references during base pointer calculation.  The code actually handled this case just fine, we only had the assert to help isolate problems under the belief that constant references shouldn't be present in IR generated by managed frontends. This turned out to be wrong on two fronts: 1) Manual Jacobs is working on a language with constant references, and b) we found a case where the optimizer does create them in practice.
      
      llvm-svn: 256079
      5d54689b
    • Keno Fischer's avatar
      Clean up the processing of dbg.value in various places · 00cbf9a6
      Keno Fischer authored
      Summary:
      First up is instcombine, where in the dbg.declare -> dbg.value conversion,
      the llvm.dbg.value needs to be called on the actual loaded value, rather
      than the address (since the whole point of this transformation is to be
      able to get rid of the alloca). Further, now that that's cleaned up, we
      can remove a hack in the backend, that would add an implicit OP_deref if
      the argument to dbg.value was an alloca. This stems from before the
      existence of DIExpression and is no longer necessary since the deref can
      be expressed explicitly.
      
      Now, in order to make sure that the tests pass with this change, we need to
      correct the printing of DEBUG_VALUE comments to take into account the
      expression, which wasn't taken into account before.
      
      Unfortunately, for both these changes, there were a number of incorrect
      test cases (mostly the wrong number of DW_OP_derefs, but also a couple
      where the test itself was broken more badly). aprantl and I have gone
      through and adjusted these test case in order to make them pass with
      these fixes and in some cases to make sure they're actually testing
      what they are meant to test.
      
      Reviewers: aprantl
      
      Subscribers: dsanders
      
      Differential Revision: http://reviews.llvm.org/D14186
      
      llvm-svn: 256077
      00cbf9a6
    • Matt Arsenault's avatar
      AMDGPU: Switch barrier intrinsics to using convergent · 2aed6ca1
      Matt Arsenault authored
      noduplicate prevents unrolling of small loops that happen to have
      barriers in them. If a loop has a barrier in it, it is OK to duplicate
      it for the unroll.
      
      llvm-svn: 256075
      2aed6ca1
    • Matt Arsenault's avatar
      Fix broken type legalization of min/max · 10a50929
      Matt Arsenault authored
      This was using an anyext when promoting the type
      when zext/sext is required.
      
      llvm-svn: 256074
      10a50929
    • Nicolai Haehnle's avatar
      AMDGPU: fix overlapping copies in copyPhysReg · dd58705a
      Nicolai Haehnle authored
      Summary:
      When copying aggregate registers within the same register class, there may
      be an overlap between source and destination that forces us to do the copy
      backwards.
      
      Do the simplest possible thing that guarantees the correct order of moves
      when there are overlaps, and does whatever when there is no overlap. (The
      last part forces some trivial adjustments to test cases.)
      
      Together with r255906, this fixes a VM fault in Unreal Elemental Demo.
      
      While at it, change the generation of kill and def flags to something that
      looks more reasonable. This method is used very late during compilation, so
      it probably doesn't matter in practice, and to be honest, I don't know if
      this change is actually correct because the semantics in connection with
      aggregate registers vs. sub-registers are not clear to me.
      
      Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93264
      
      Reviewers: arsenm, tstellarAMD
      
      Subscribers: arsenm, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D15622
      
      llvm-svn: 256072
      dd58705a
    • Rafael Espindola's avatar
      Deprecate a few C APIs. · 2339ffed
      Rafael Espindola authored
      This deprecates:
      * LLVMParseBitcode
      * LLVMParseBitcodeInContext
      * LLVMGetBitcodeModuleInContext
      * LLVMGetBitcodeModule
      
      They are replaced with the functions with a 2 suffix which do not record
      a diagnostic.
      
      llvm-svn: 256065
      2339ffed
  4. Dec 18, 2015
  5. Dec 17, 2015
Loading