Skip to content
  1. Dec 08, 2013
    • Mark Seaborn's avatar
      Fix inlining to not produce duplicate landingpad clauses · ef3dbb93
      Mark Seaborn authored
      Before this change, inlining one "invoke" into an outer "invoke" call
      site can lead to the outer landingpad's catch/filter clauses being
      copied multiple times into the resulting landingpad.  This happens:
      
       * when the inlined function contains multiple "resume" instructions,
         because forwardResume() copies the clauses but is called multiple
         times;
      
       * when the inlined function contains a "resume" and a "call", because
         HandleCallsInBlockInlinedThroughInvoke() copies the clauses but is
         redundant with forwardResume().
      
      Fix this by deduplicating the code.
      
      This problem doesn't lead to any incorrect execution; it's only
      untidy.
      
      This change will make fixing PR17872 a little easier.
      
      llvm-svn: 196710
      ef3dbb93
  2. Dec 07, 2013
  3. Dec 06, 2013
    • Justin Bogner's avatar
      Support: Fix handling of args that begin with @ but aren't files · 67ae9912
      Justin Bogner authored
      Command line arguments that begin with @ but aren't a path to an
      existing file currently cause later @file arguments to be ignored.
      
      Correctly skip over these arguments instead of trying to read a
      non-existent file 20 times and giving up.
      
      Since the problem manifests in the clang driver, the test is in that
      repository.
      
      Fixes rdar://problem/15590906
      
      llvm-svn: 196620
      67ae9912
    • Ana Pazos's avatar
      Added support for mcpu krait · 93a07c21
      Ana Pazos authored
      - krait processor currently modeled with the same features as A9.
      - Krait processor additionally has VFP4 (fused multiply add/sub)
      and hardware division features enabled.
      - krait has currently the same Schedule model as A9
      - krait cpu flag is not recognized by the GNU assembler yet,
      it is replaced with march=armv7-a to avoid a lower march
      from being used.
      
      llvm-svn: 196619
      93a07c21
    • David Blaikie's avatar
      DebugInfo: Move unit begin/end labels into the unit · 7d734602
      David Blaikie authored
      This removes another case of spooky action at a distance (building the
      same label names in multiple places creating an implicit dependency
      between those places) and helps pave the way for type units.
      
      llvm-svn: 196617
      7d734602
    • David Blaikie's avatar
      DebugInfo: Include the section and start-of-section label in the unit · 03073f74
      David Blaikie authored
      This is a precursor to moving type units into the correct (debug_types)
      section with comdat groups and full type unit headers.
      
      llvm-svn: 196615
      03073f74
    • Duncan P. N. Exon Smith's avatar
      Don't use isNullValue to evaluate ConstantExpr · ce5f93ef
      Duncan P. N. Exon Smith authored
      ConstantExpr can evaluate to false even when isNullValue gives false.
      
      Fixes PR18143.
      
      llvm-svn: 196611
      ce5f93ef
    • Yuchen Wu's avatar
      llvm-cov: Regenerated gcov files with r195513 changes. · 0db73111
      Yuchen Wu authored
      llvm-svn: 196609
      0db73111
    • David Peixotto's avatar
      Integrated assembler incorrectly lexes ARM-style comments · 2cdc56d2
      David Peixotto authored
      The integrated assembler fails to properly lex arm comments when
      they are adjacent to an identifier in the input stream. The reason
      is that the arm comment symbol '@' is also used as symbol variant in
      other assembly languages so when lexing an identifier it allows the
      '@' symbol as part of the identifier.
      
      Example:
        $ cat comment.s
        foo:
          add r0, r0@got to parse this as a comment
      
        $ llvm-mc -triple armv7 comment.s
        comment.s:4:18: error: unexpected token in argument list
          add r0, r0@got to parse this as a comment
                         ^
      This should be parsed as correctly as `add r0, r0`.
      
      This commit modifes the assembly lexer to not include the '@' symbol
      in identifiers when lexing for targets that use '@' for comments.
      
      llvm-svn: 196607
      2cdc56d2
    • Rafael Espindola's avatar
    • David Blaikie's avatar
      DwarfDebug: Walk skeletons during fission pubtypes/pubnames emission · 4f623205
      David Blaikie authored
      This more accurately represents the actual walk - pubnames/pubtypes are
      emitted into the .o, not the .dwo, and reference the skeletons not the
      full units.
      
      Use the newly established ID->index invariant to lookup the underlying
      full unit to retrieve its public names and types.
      
      llvm-svn: 196601
      4f623205
    • David Blaikie's avatar
      DebugInfo: Ensure unit IDs (for non-skeletal units) match thein index in the list · 2666e24c
      David Blaikie authored
      This simplifies reasoning about the code and enables simple navigation
      from a skeleton to its full unit. (currently there are no type unit
      skeletons, so the skeleton list doesn't have the same ID == index
      property)
      
      Eventually we should get rid of this ID and just store the labels we
      need as the IDs are allowing this code to create difficult to
      manage/understand associations (loops over non-skeletal units are
      implicitly referencing their skeletal units during pub* emission, for
      example). It may be necessary to have some kind of skeleton->full unit
      association and a more direct pointer or similar device would be
      preferable than an index.
      
      llvm-svn: 196600
      2666e24c
    • Weiming Zhao's avatar
      Bug 18149: [AArch32] VSel instructions has no ARMCC field · 43d8e6cb
      Weiming Zhao authored
      The current peephole optimizing for compare inst assumes an instr that
      uses CPSR has an MO for ARM Cond code.However, for VSEL instructions
      (vseqeq, vselgt, vselgt, vselvs), there is no such operand nor do
      they support the modification of Cond Code.
      
      llvm-svn: 196588
      43d8e6cb
    • Andrew Trick's avatar
      comment grammar · f7760a24
      Andrew Trick authored
      llvm-svn: 196585
      f7760a24
    • Cameron McInally's avatar
      Update AVX512 vector blend intrinsic names. · e3cc4aac
      Cameron McInally authored
      llvm-svn: 196581
      e3cc4aac
    • Richard Sandiford's avatar
      [SystemZ] Use LOAD AND TEST for comparisons with -0 · 198ddf83
      Richard Sandiford authored
      ...since it os equivalent to comparison with +0.
      
      llvm-svn: 196580
      198ddf83
    • Richard Sandiford's avatar
      [SystemZ] Extend the use of C(L)GFR · 7b4118a0
      Richard Sandiford authored
      instcombine prefers to put extended operands first, so this patch
      handles that case for C(L)GFR.
      
      llvm-svn: 196579
      7b4118a0
    • Richard Sandiford's avatar
      [SystemZ] Optimize selects between 0 and -1 · 48ef6abd
      Richard Sandiford authored
      Since z has no setcc instruction as such, the choice of setBooleanContents
      is a bit arbitrary.  Currently it's set to ZeroOrOneBooleanContent,
      so we produced a branch-free form when selecting between 0 and 1,
      but not when selecting between 0 and -1.  This patch handles the latter
      case too.
      
      At some point I'd like to measure whether it's better to use conditional
      moves for constant selects on z196, but that's future work.
      
      llvm-svn: 196578
      48ef6abd
    • Kostya Serebryany's avatar
      [asan] fix ndebug build with strict warnings (-Wunused-variable) · 152d48d3
      Kostya Serebryany authored
      llvm-svn: 196574
      152d48d3
    • Kostya Serebryany's avatar
      [asan] rewrite asan's stack frame layout · 4fb7801b
      Kostya Serebryany authored
      Summary:
      Rewrite asan's stack frame layout.
      First, most of the stack layout logic is moved into a separte file
      to make it more testable and (potentially) useful for other projects.
      Second, make the frames more compact by using adaptive redzones
      (smaller for small objects, larger for large objects).
      Third, try to minimized gaps due to large alignments (this is hypothetical since
      today we don't see many stack vars aligned by more than 32).
      
      The frames indeed become more compact, but I'll still need to run more benchmarks
      before committing, but I am sking for review now to get early feedback.
      
      This change will be accompanied by a trivial change in compiler-rt tests
      to match the new frame sizes.
      
      Reviewers: samsonov, dvyukov
      
      Reviewed By: samsonov
      
      CC: llvm-commits
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D2324
      
      llvm-svn: 196568
      4fb7801b
    • Daniel Jasper's avatar
      Fix bug introduced in r196517. · 0d92abdf
      Daniel Jasper authored
      Not only does it trigger -Wparentheses, I think the assert actually
      relies on incorrect operator precedence.
      
      Also, the grammar as questionable, but I might not know enough about the
      problem at hand.
      
      llvm-svn: 196567
      0d92abdf
    • Eric Christopher's avatar
      Fix an index array check. · 99952a08
      Eric Christopher authored
      Patch by Marius Wachtler.
      
      llvm-svn: 196561
      99952a08
Loading