Skip to content
  1. May 27, 2014
  2. May 26, 2014
    • Rafael Espindola's avatar
      [PPC] Use alias symbols in address computation. · ac69cee6
      Rafael Espindola authored
      This seems to match what gcc does for ppc and what every other llvm
      backend does.
      
      llvm-svn: 209638
      ac69cee6
    • Tim Northover's avatar
      AArch64: force i1 to be zero-extended at an ABI boundary. · 68ae503d
      Tim Northover authored
      This commit is debatable. There are two possible approaches, neither
      of which is really satisfactory:
      
      1. Use "@foo(i1 zeroext)" to mean an extension to 32-bits on Darwin,
         and 8 bits otherwise.
      2. Redefine "@foo(i1)" to mean that the i1 is extended by the caller
         to 8 bits. This goes against the spirit of "zeroext" I think, but
         it's a bit of a vague construct anyway (by definition you're going
         to extend to the amount required by the ABI, that's why it's the
         ABI!).
      
      This implements option 2. The DAG machinery really isn't setup for the
      first (there's a fairly strong assumption that "zeroext" goes to at
      least the smallest register size), and even if it was the resulting
      DAG looks like it would be inferior in many cases.
      
      Theoretically we could add AssertZext nodes in the consumers of
      ABI-passed values too now, but this actually seems to make the code
      worse in practice by making truncation proceed in two steps. The code
      produced is equally valid if we continue to assume only the low bit is
      defined.
      
      Should fix PR19850
      
      llvm-svn: 209637
      68ae503d
    • Tim Northover's avatar
      AArch64: simplify calling conventions slightly. · 47e003c6
      Tim Northover authored
      We can eliminate the custom C++ code in favour of some TableGen to
      check the same things. Functionality should be identical, except for a
      buffer overrun that was present in the C++ code and meant webkit
      failed if any small argument needed to be passed on the stack.
      
      llvm-svn: 209636
      47e003c6
    • Tilmann Scheller's avatar
      [AArch64] Add store + add folding regression tests for the load/store optimization pass. · cc3ebc8a
      Tilmann Scheller authored
      Add tests for the following transform:
      
       str X, [x0, #32]
        ...
       add x0, x0, #32
        ->
       str X, [x0, #32]!
      
      with X being either w1, x1, s0, d0 or q0.
      
      llvm-svn: 209627
      cc3ebc8a
    • Tilmann Scheller's avatar
      [AArch64] Add more regression tests for the load/store optimization pass. · 112ada83
      Tilmann Scheller authored
      Cover the following cases:
      
        ldr X, [x0, #32]
         ...
        add x0, x0, #32
         ->
        ldr X, [x0, #32]!
      
      with X being either w1, x1, s0, d0 or q0.
      
      llvm-svn: 209624
      112ada83
    • Tilmann Scheller's avatar
      Remove accidentally committed whitespace. · 968d599d
      Tilmann Scheller authored
      llvm-svn: 209619
      968d599d
    • Tilmann Scheller's avatar
      [AArch64] Add a regression test for the load store optimizer. · 2d746bcd
      Tilmann Scheller authored
      We have a couple of regression tests for load/store pairing, but (to my knowledge) there are no regression tests for the load/store + add/sub folding.
      
      As a first step towards increased test coverage of this area, this commit adds a test for one instance of a load + add to pre-indexed load transformation.
      
      llvm-svn: 209618
      2d746bcd
    • David Blaikie's avatar
      DebugInfo: Test linkonce-odr functions under LTO. · 10743a9e
      David Blaikie authored
      This was previously regressed/broken by r192749 (reverted due to this
      issue in r192938) and I was about to break it again by accident with
      some more invasive changes that deal with the subprogram lists. So to
      avoid that and further issues - here's a test.
      
      It's a pretty basic test - in both r192749 and my impending case, this
      test would crash, but checking the basics (that we put a subprogram in
      just one of the two CUs) seems like a good start.
      
      We still get this wrong in weird ways if the linkonce-odr function
      happens to not be identical in the metadata (because it's defined in two
      different files (hence the # line directives in this test), etc) even
      though it meets the language requirements (identical token stream) for
      such a thing. That results in two subprogram DIEs, but only one of them
      gets the parameter and high/low pc information, etc. We probably need to
      use the DIRef infrastructure to deduplicate functions as we do types to
      address this issue - or perhaps teach the BC linker to remove the
      duplicate entries in subprogram lists?
      
      llvm-svn: 209614
      10743a9e
    • Rafael Espindola's avatar
      Just check the entire string. · f557536f
      Rafael Espindola authored
      Thanks to David Blaikie for the suggestion.
      
      llvm-svn: 209610
      f557536f
  3. May 25, 2014
    • David Blaikie's avatar
      DebugInfo: Fix inlining with #file directives a little harder · ea862267
      David Blaikie authored
      Seems my previous fix was insufficient - we were still not adding the
      inlined function to the abstract scope list. Which meant it wasn't
      flagged as inline, didn't have nested lexical scopes in the abstract
      definition, and didn't have abstract variables - so the inlined variable
      didn't reference an abstract variable, instead being described
      completely inline.
      
      llvm-svn: 209602
      ea862267
    • David Blaikie's avatar
      Streamline test case by avoiding a temporary file and piping llc output straight to llvm-dwarfdump · 69d3406a
      David Blaikie authored
      We still do temporary files in many cases, just updating this particular
      one because I was debugging it and made this change while doing so.
      
      llvm-svn: 209601
      69d3406a
    • Rafael Espindola's avatar
      Emit data or code export directives based on the type. · 4a04c4b6
      Rafael Espindola authored
      Currently we look at the Aliasee to decide what type of export
      directive to use. It seems better to use the type of the alias
      directly. This is similar to how we handle the alias having the
      same address but other attributes (linkage, visibility) from the
      aliasee.
      
      With this patch it is now possible to do things like
      
      target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
      target triple = "x86_64-pc-windows-msvc"
      @foo = global [6 x i8] c"\B8*\00\00\00\C3", section ".text", align 16
      @f = dllexport alias i32 (), [6 x i8]* @foo
      !llvm.module.flags = !{!0}
      !0 = metadata !{i32 6, metadata !"Linker Options", metadata !1}
      !1 = metadata !{metadata !2, metadata !3}
      !2 = metadata !{metadata !"/DEFAULTLIB:libcmt.lib"}
      !3 = metadata !{metadata !"/DEFAULTLIB:oldnames.lib"}
      
      llvm-svn: 209600
      4a04c4b6
    • Rafael Espindola's avatar
      Make these CHECKs a bit more strict. · d234b0f0
      Rafael Espindola authored
      The " at the end of the line makes sure we matched the entire directive.
      
      llvm-svn: 209599
      d234b0f0
  4. May 24, 2014
  5. May 23, 2014
    • David Blaikie's avatar
      DebugInfo: Generalize some tests to handle variations in attribute ordering. · 2f75351c
      David Blaikie authored
      In an effort to fix inlined debug info in situations where the out of
      line definition of a function preceeds any inlined usage, the order in
      which some attributes are added to subprogram DIEs may change. (in
      essence, definition-necessary attributes like DW_AT_low_pc/high_pc will
      be added immediately, but the names, types, and other features will be
      delayed to module end where they may either be added to the subprogram
      DIE or instead reference an abstract definition for those values)
      
      These tests can be generalized to be resilient to this change. 5 or so
      tests actually have to be incompatibly changed to cope with this
      reordering and will go along with the change that affects the order.
      
      llvm-svn: 209554
      2f75351c
    • David Blaikie's avatar
      DebugInfo: Generalize a test case to not depend on abbreviation numbering. · 71ed20f6
      David Blaikie authored
      It's an unnecessary detail for this test and just gets in the way when
      making unrelated changes to the output in this test.
      
      llvm-svn: 209553
      71ed20f6
    • Andrew Trick's avatar
      Test case comments. Fix sloppiness. · b429083a
      Andrew Trick authored
      llvm-svn: 209551
      b429083a
    • David Blaikie's avatar
      DebugInfo: Put concrete definitions referencing abstract definitions in the... · 169ffe41
      David Blaikie authored
      DebugInfo: Put concrete definitions referencing abstract definitions in the same scope as the abstract definition.
      
      This seems like a simple cleanup/improved consistency, but also helps
      lay the foundation to fix the bug mentioned in the test case: concrete
      definitions preceeding any inlined usage aren't properly split into
      concrete + abstract (because they're not known to need it until it's too
      late).
      
      Once we start deferring this choice until later, we won't have the
      choice to put concrete definitions for inlined subroutines in a
      different scope from concrete definitions for non-inlined subroutines
      (since we won't know at time-of-construction which one it'll be). This
      change brings those two cases into alignment ahead of that future
      chaneg/fix.
      
      llvm-svn: 209547
      169ffe41
    • Andrew Trick's avatar
      Fix and improve SCEV ComputeBackedgeTankCount. · 839e30b2
      Andrew Trick authored
      This is a follow-up to r209358: PR19799: Indvars miscompile due to an
      incorrect max backedge taken count from SCEV.
      
      That fix was incomplete as pointed out by Arnold and Michael Z. The
      code was also too confusing. It needed a careful rewrite with more
      unit tests. This version will also happen to optimize more cases.
      
      <rdar://17005101> PR19799: Indvars miscompile...
      
      llvm-svn: 209545
      839e30b2
    • Nico Rieck's avatar
      Revert part of "Fix broken FileCheck prefixes" · fe241369
      Nico Rieck authored
      This reverts part of commit r209538.
      
      llvm-svn: 209544
      fe241369
    • Rafael Espindola's avatar
      Use alias linkage and visibility to decide tls access mode. · a5bb2f61
      Rafael Espindola authored
      This matches both what we do for the non-thread case and what gcc does.
      
      With this patch clang would match gcc's behaviour in
      
      static __thread int a = 42;
      extern __thread int b __attribute__((alias("a")));
      int *f(void) { return &a; }
      int *g(void) { return &b; }
      
      if not for pr19843. Manually writing the IL does produce the same access modes.
      
      It is also a step in the direction of fixing pr19844.
      
      llvm-svn: 209543
      a5bb2f61
    • Nico Rieck's avatar
      Remove unused CHECK lines · fb4c55fb
      Nico Rieck authored
      llvm-svn: 209539
      fb4c55fb
    • Nico Rieck's avatar
      Fix broken FileCheck prefixes · bd15945a
      Nico Rieck authored
      llvm-svn: 209538
      bd15945a
    • Jingyue Wu's avatar
      Add the extracted constant offset using GEP · bbb6e4a8
      Jingyue Wu authored
      Fixed a TODO in r207783.
      
      Add the extracted constant offset using GEP instead of ugly
      ptrtoint+add+inttoptr. Using GEP simplifies future optimizations and makes IR
      easier to understand. 
      
      Updated all affected tests, and added a new test in split-gep.ll to cover a
      corner case where emitting uglygep is necessary.
      
      llvm-svn: 209537
      bbb6e4a8
    • Rafael Espindola's avatar
      Convert test to use FileCheck. · fbe44200
      Rafael Espindola authored
      llvm-svn: 209528
      fbe44200
    • Daniel Sanders's avatar
      [mips] Work around inconsistency in llvm-mc's placement of fixup markers · 683ed961
      Daniel Sanders authored
      Summary:
      Add a second fixup table to MipsAsmBackend::getFixupKindInfo() to correctly
      position llvm-mc's fixup placeholders for big-endian.
      
      See PR19836 for full details of the issue. To summarize, the fixup placeholders
      do not account for endianness properly and the implementations of
      getFixupKindInfo() for each target are measuring MCFixupKindInfo.TargetOffset
      from different ends of the instruction encoding to compensate.
      
      Reviewers: jkolek, zoran.jovanovic, vmedic
      
      Reviewed By: vmedic
      
      Differential Revision: http://reviews.llvm.org/D3889
      
      llvm-svn: 209514
      683ed961
    • Daniel Sanders's avatar
      [mips][mips64r6] t(eq|ge|lt|ne)i and t(ge|lt)iu are not available in MIPS32r6/MIPS64r6 · 8966caab
      Daniel Sanders authored
      Summary: Depends on D3872
      
      Reviewers: jkolek, zoran.jovanovic, vmedic
      
      Reviewed By: vmedic
      
      Differential Revision: http://reviews.llvm.org/D3891
      
      llvm-svn: 209513
      8966caab
    • Daniel Sanders's avatar
      [mips][mips64r6] [ls][dw][lr] are not available in MIPS32r6/MIPS64r6 · ac272635
      Daniel Sanders authored
      Summary:
      Instead the system is required to provide some means of handling unaligned
      load/store without special instructions. Options include full hardware
      support, full trap-and-emulate, and hybrids such as hardware support within
      a cache line and trap-and-emulate for multi-line accesses.
      
      MipsSETargetLowering::allowsUnalignedMemoryAccesses() has been configured to
      assume that unaligned accesses are 'fast' on the basis that I expect few
      hardware implementations will opt for pure-software handling of unaligned
      accesses. The ones that do handle it purely in software can override this.
      
      mips64-load-store-left-right.ll has been merged into load-store-left-right.ll
      
      The stricter testing revealed a Bits!=Bytes bug in passByValArg(). This has
      been fixed and the variables renamed to clarify the units they hold.
      
      Reviewers: zoran.jovanovic, jkolek, vmedic
      
      Reviewed By: vmedic
      
      Differential Revision: http://reviews.llvm.org/D3872
      
      llvm-svn: 209512
      ac272635
    • Kostya Serebryany's avatar
      [asan] properly instrument memory accesses that have small alignment (smaller... · c7895a83
      Kostya Serebryany authored
      [asan] properly instrument memory accesses that have small alignment (smaller than min(8,size)) by making two checks instead of one. This may slowdown some cases, e.g. long long on 32-bit or wide loads produced after loop unrolling. The benefit is higher sencitivity.
      
      llvm-svn: 209508
      c7895a83
Loading