Skip to content
  1. May 09, 2015
    • Pete Cooper's avatar
      [Fast-ISel] Don't mark the first use of a remat constant as killed. · d54fb899
      Pete Cooper authored
      When emitting something like 'add x, 1000' if we remat the 1000 then we should be able to
      mark the vreg containing 1000 as killed.  Given that we go bottom up in fast-isel, a later
      use of 1000 will be higher up in the BB and won't kill it, or be impacted by the lower kill.
      
      However, rematerialised constant expressions aren't generated bottom up.  The local value save area
      grows downwards.  This means that if you remat 2 constant expressions which both use 1000 then the
      first will kill it, then the second, which is *lower* in the BB will read a killed register.
      
      This is the case in the attached test where the 2 GEPs both need to generate 'add x, 6680' for the constant offset.
      
      Note that this commit only makes kill flag generation conservative.  There's nothing else obviously wrong with
      the local value save area growing downwards, and in fact it needs to for handling arbitrarily complex constant expressions.
      
      However, it would be nice if there was a solution which would let us generate more accurate kill flags, or just kill flags completely.
      
      llvm-svn: 236922
      d54fb899
    • Arnold Schwaighofer's avatar
      Fix compile error · dc271144
      Arnold Schwaighofer authored
      llvm-svn: 236921
      dc271144
    • Tom Stellard's avatar
      Implement fast_normalize builtin v4 · 17ec3a51
      Tom Stellard authored
      This implementation was ported from the AMD builtin library
      and has been tested with piglit, OpenCV, and the ocl conformance tests.
      
      v2:
        - Remove f suffix from constant in double implementations.
        - Consolidate implementations using the .cl/.inc approach.
      
      v3:
       - Use __CLC_FPSIZE instead of __CLC_FP{32,64}
      
      v4 (Jan Vesely):
       - Limit to single precision.
      
      llvm-svn: 236920
      17ec3a51
    • Quentin Colombet's avatar
      Revert r236912. · 3e93ebec
      Quentin Colombet authored
      Author: dblaikie
      Date: Fri May  8 17:47:50 2015
      New Revision: 236912
      
      URL: http://llvm.org/viewvc/llvm-project?rev=236912&view=rev
      Log:
      [opaque pointer type] Cleanup a few references to pointee types using nearby non-pointee types of the same value
      
      & cleanup a convoluted return expression while I'm here
      
      llvm-svn: 236919
      3e93ebec
    • Davide Italiano's avatar
      [Target/ARM] Remove unused 'private' from class. · 2c29cd69
      Davide Italiano authored
      Differential Revision:	http://reviews.llvm.org/D9611
      Reviewed by:	rengolin
      
      llvm-svn: 236918
      2c29cd69
    • Oleksiy Vyalov's avatar
    • Arnold Schwaighofer's avatar
      ScheduleDAGInstrs: In functions with tail calls PseudoSourceValues are not... · f54b73d6
      Arnold Schwaighofer authored
      ScheduleDAGInstrs: In functions with tail calls PseudoSourceValues are not non-aliasing distinct objects
      
      The code that builds the dependence graph assumes that two PseudoSourceValues
      don't alias. In a tail calling function two FixedStackObjects might refer to the
      same location. Worse 'immutable' fixed stack objects like function arguments are
      not immutable and will be clobbered.
      
      Change this so that a load from a FixedStackObject is not invariant in a tail
      calling function and don't return a PseudoSourceValue for an instruction in tail
      calling functions when building the dependence graph so that we handle function
      arguments conservatively.
      
      Fix for PR23459.
      
      rdar://20740035
      
      llvm-svn: 236916
      f54b73d6
    • Tom Stellard's avatar
      Implement half_rsqrt builtin v3 · 2ddfa0c5
      Tom Stellard authored
      This is a generic implementation which just calls rsqrt.
      Targets should override this if they want a faster implementation.
      
      v2:
        - Alphabettize SOURCES
      
      v3 (Jan Vesely):
        Limit to single precision types.
      
      llvm-svn: 236915
      2ddfa0c5
    • Vince Harron's avatar
      TestCModules was effectively skipped on Linux · a6ad6d3c
      Vince Harron authored
          
      Summary: I've removed the secret skip and added expectedFailureLinux
          
      Test Plan: run tests
          
      Reviewers: flackr
          
      Subscribers: lldb-commits
          
      Differential Revision: http://reviews.llvm.org/D9615
      
      llvm-svn: 236914
      a6ad6d3c
    • Siva Chandra's avatar
      Bump the default timeout in dosep.py to 10m. · 2d7832e4
      Siva Chandra authored
      Summary:
      This seems to be sufficient to get the tests taking longer than the
      previous timeout of 5m to run to completion on Android to pass instead
      of timing out.
      
      Reviewers: chaoren
      
      Reviewed By: chaoren
      
      Subscribers: tberghammer, lldb-commits
      
      Differential Revision: http://reviews.llvm.org/D9627
      
      llvm-svn: 236913
      2d7832e4
    • David Blaikie's avatar
      [opaque pointer type] Cleanup a few references to pointee types using nearby... · 951c8c4c
      David Blaikie authored
      [opaque pointer type] Cleanup a few references to pointee types using nearby non-pointee types of the same value
      
      & cleanup a convoluted return expression while I'm here
      
      llvm-svn: 236912
      951c8c4c
  2. May 08, 2015
    • Kostya Serebryany's avatar
      f3f3ed32
    • Tobias Grosser's avatar
      Revert "Make emacs show when clang-format encountered a syntax error." · a7046002
      Tobias Grosser authored
      This reverts commit 236854, which caused clang-format to always print
      '{ "IncompleteFormat": false }' at the top of an incompletely formatted file.
      This output causes problems e.g. in Polly's automatic formatting checks. Daniel
      tried to fix this in 236867, but this fix had to be reverted due to buildbot
      failures. I revert this change as well for now as it is Friday night and
      unlikely to be fixed immediately.
      
      llvm-svn: 236908
      a7046002
    • Kostya Serebryany's avatar
      [asan/fuzzer] define a dummy weak __sanitizer_cov_trace_cmp · 8fd66a71
      Kostya Serebryany authored
      llvm-svn: 236907
      8fd66a71
    • Kostya Serebryany's avatar
      [lib/Fuzzer] use -fsanitize-coverage=trace-cmp when building LLVM with... · 1ac8055b
      Kostya Serebryany authored
      [lib/Fuzzer] use -fsanitize-coverage=trace-cmp when building LLVM with LLVM_USE_SANITIZE_COVERAGE; in lib/Fuzzer try to reload the corpus to pick up new units from other processes
      
      llvm-svn: 236906
      1ac8055b
    • Hans Wennborg's avatar
      Switch lowering: cluster adjacent fall-through cases even at -O0 · ae0254da
      Hans Wennborg authored
      It's cheap to do, and codegen is much faster if cases can be merged
      into clusters.
      
      llvm-svn: 236905
      ae0254da
    • Daniel Berlin's avatar
      Add a comment about DepthFirstIterator's skipchildren behavior · c67979bf
      Daniel Berlin authored
      llvm-svn: 236904
      c67979bf
    • Siva Chandra's avatar
      [TestCreateAfterAttach] Add @skipIfRemote to the forking test. · 09c44249
      Siva Chandra authored
      Test Plan: dotest.py -p TestCreateAfterAttach
      
      Reviewers: chaoren
      
      Reviewed By: chaoren
      
      Subscribers: lldb-commits
      
      Differential Revision: http://reviews.llvm.org/D9617
      
      llvm-svn: 236903
      09c44249
    • Jon Roelofs's avatar
      Fix typo in www. NFC · 1992834a
      Jon Roelofs authored
      llvm-svn: 236902
      1992834a
    • Renato Golin's avatar
      Using ARMTargetParser in Clang · 0600e1eb
      Renato Golin authored
      This is a starting point for using the TargetParser in Clang, in a simple
      enough part of the code that can be used without disrupting the crazy
      platform support that we need to be compatible with other toolchains.
      
      Also adding a few FIXME on obvious places that need replacing, but those
      cases will indeed break a few of the platform assumptions, as arch/cpu names
      change multiple times in the driver.
      
      Finally, I'm changing the "neon-vfpv3" behaviour to match standard NEON, since
      -mfpu=neon implies vfpv3 by default in both Clang and LLVM. That option
      string is still supported as an alias to "neon".
      
      llvm-svn: 236901
      0600e1eb
    • Renato Golin's avatar
      TargetParser: FPU/ARCH/EXT parsing refactory - NFC · f5f373fc
      Renato Golin authored
      This new class in a global context contain arch-specific knowledge in order
      to provide LLVM libraries, tools and projects with the ability to understand
      the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
      supported.
      
      Current behaviour it to parse from free-text to enum values and back, so that
      all users can share the same parser and codes. This simplifies a lot both the
      ASM/Obj streamers in the back-end (where this came from), and the front-end
      parsers for command line arguments (where this is going to be used next).
      
      The previous implementation, using .def/.h includes is deprecated due to its
      inflexibility to be built without the backend support and for being too
      cumbersome. As more architectures join this scheme, and as more features of
      such architectures are added (such as hardware features, type sizes, etc) into
      a full blown TargetDescription class, having a set of classes is the most
      sane implementation.
      
      The ultimate goal of this refactor both LLVM's and Clang's target description
      classes into one unique interface, so that we can de-duplicate and standardise
      the descriptions, as well as make it available for other front-ends, tools,
      etc.
      
      The FPU parsing for command line options in Clang has been converted to use
      this new library and a number of aliases were added for compatibility:
       * A bogus neon-vfpv3 alias (neon defaults to vfp3)
       * armv5/v6
       * {fp4/fp5}-{sp/dp}-d16
      
      Next steps:
       * Port Clang's ARCH/EXT parsing to use this library.
       * Create a TableGen back-end to generate this information.
       * Run this TableGen process regardless of which back-ends are built.
       * Expose more information and rename it to TargetDescription.
       * Continue re-factoring Clang to use as much of it as possible.
      
      llvm-svn: 236900
      f5f373fc
    • Diego Novillo's avatar
      Update Function::getContext documentation. NFC. · 0aaff479
      Diego Novillo authored
      llvm-svn: 236899
      0aaff479
    • Diego Novillo's avatar
      Fix BackendConsumer::EmitOptimizationMessage() · 86f884ed
      Diego Novillo authored
      Patch from Geoff Berry <gberry@codeaurora.org>
      
      Fix BackendConsumer::EmitOptimizationMessage() to check if the
      DiagnosticInfoOptimizationBase object has a valid location before
      calling getLocation() to avoid dereferencing a null pointer inside
      getLocation() when no debug info is present.
      
      llvm-svn: 236898
      86f884ed
    • Pete Cooper's avatar
      [Fast-ISel] Clear kill flags on registers replaced by updateValueMap. · e4bb07ec
      Pete Cooper authored
      When selecting an extract instruction, we don't actually generate code but instead work out which register we are reading, and rewrite uses of the extract def to the source register.  This is done via updateValueMap,.
      
      However, its possible that the source register we are rewriting *to* to also have uses.  If those uses are after a kill of the value we are rewriting *from* then we have uses after a kill and the verifier fails.
      
      This code checks for the case where the to register is also used, and if so it clears all kill on the from register.  This is conservative, but better that always clearing kills on the from register.
      
      llvm-svn: 236897
      e4bb07ec
    • Brendon Cahoon's avatar
      [Hexagon] Generate more hardware loops · bece8edc
      Brendon Cahoon authored
      Refactored parts of the hardware loop pass to generate
      more. Also, added more tests.
      
      Differential Revision: http://reviews.llvm.org/D9568
      
      llvm-svn: 236896
      bece8edc
    • Ed Maste's avatar
      Skip tests that are timing out on the FreeBSD buildbot · 82d9f037
      Ed Maste authored
      XFAILing these does not work because the timeout is caught by the
      top-level test infrastucture instead.
      
      Might be llvm.org/pr22784
      
      llvm-svn: 236895
      82d9f037
    • Sanjoy Das's avatar
      [BasicAA] Fix zext & sext handling · 14f5080a
      Sanjoy Das authored
      Summary:
      
      There are several unhandled edge cases in BasicAA's GetLinearExpression
      method. This changes fixes outstanding issues, including zext / sext of
      a constant with the sign bit set, and the refusal to decompose zexts or
      sexts of wrapping arithmetic.
      
      Test Plan: Unit tests added in //q.ext.ll//.
      
      Patch by Nick White.
      
      Reviewers: hfinkel, sanjoy
      
      Reviewed By: hfinkel, sanjoy
      
      Subscribers: sanjoy, llvm-commits, hfinkel
      
      Differential Revision: http://reviews.llvm.org/D6682
      
      llvm-svn: 236894
      14f5080a
    • David Blaikie's avatar
      Replace branch-to-unreachable with assertion. · b340f0a7
      David Blaikie authored
      llvm-svn: 236893
      b340f0a7
    • Zachary Turner's avatar
      Enable thread-safe logging. · a49c5914
      Zachary Turner authored
      Thread-safe logging had been disabled because of a deadlock,
      possibly due to a lock acquired during a signal handler.
      
      This patch turns thread safe logging back on and also greatly
      reduces the scope of the lock, confining it only to the code that
      affects the underlying output stream, instead of all the code that
      builds up the formatted log message.  this should resolve the
      issue surrounding the deadlock.
      
      llvm-svn: 236892
      a49c5914
    • Pat Gavlin's avatar
      Fix a docs build break introduced by rL236888. · 7afaed28
      Pat Gavlin authored
      llvm-svn: 236891
      7afaed28
    • Pete Cooper's avatar
      [X86] Fast-ISel was incorrectly always killing the source of a truncate. · 7f7c9f1d
      Pete Cooper authored
      A trunc from i32 to i1 on x86_64 generates an instruction such as
      
      %vreg19<def> = COPY %vreg9:sub_8bit<kill>; GR8:%vreg19 GR32:%vreg9
      
      However, the copy here should only have the kill flag on the 32-bit path, not the 64-bit one.
      Otherwise, we are killing the source of the truncate which could be used later in the program.
      
      llvm-svn: 236890
      7f7c9f1d
    • Anton Korobeynikov's avatar
      Typos · 396441c8
      Anton Korobeynikov authored
      llvm-svn: 236889
      396441c8
    • Pat Gavlin's avatar
      Extend the statepoint intrinsic to allow statepoints to be marked as... · cc0431d1
      Pat Gavlin authored
      Extend the statepoint intrinsic to allow statepoints to be marked as transitions from GC-aware code to code that is not GC-aware.
      
      This changes the shape of the statepoint intrinsic from:
      
        @llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 unused, ...call args, i32 # deopt args, ...deopt args, ...gc args)
      
      to:
      
        @llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 flags, ...call args, i32 # transition args, ...transition args, i32 # deopt args, ...deopt args, ...gc args)
      
      This extension offers the backend the opportunity to insert (somewhat) arbitrary code to manage the transition from GC-aware code to code that is not GC-aware and back.
      
      In order to support the injection of transition code, this extension wraps the STATEPOINT ISD node generated by the usual lowering lowering with two additional nodes: GC_TRANSITION_START and GC_TRANSITION_END. The transition arguments that were passed passed to the intrinsic (if any) are lowered and provided as operands to these nodes and may be used by the backend during code generation.
      
      Eventually, the lowering of the GC_TRANSITION_{START,END} nodes should be informed by the GC strategy in use for the function containing the intrinsic call; for now, these nodes are instead replaced with no-ops.
      
      Differential Revision: http://reviews.llvm.org/D9501
      
      llvm-svn: 236888
      cc0431d1
    • Jingyue Wu's avatar
      [NoTTI] reject negative scale in addressing mode · 78b0d51c
      Jingyue Wu authored
      Summary:
      I noticed this bug when deubging a WIP on LSR. I wonder whether and how we
      should add a regression test for this.
      
      Test Plan: no tests failed.
      
      Reviewers: atrick
      
      Subscribers: hfinkel, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D9536
      
      llvm-svn: 236887
      78b0d51c
    • Pete Cooper's avatar
      Clear kill flags on all used registers when sinking instructions. · 85b1c48b
      Pete Cooper authored
      The test here was sinking the AND here to a lower BB:
      
      	%vreg7<def> = ANDWri %vreg8, 0; GPR32common:%vreg7,%vreg8
      	TBNZW %vreg8<kill>, 0, <BB#1>; GPR32common:%vreg8
      
      which meant that vreg8 was read after it was killed.
      
      This commit changes the code from clearing kill flags on the AND to clearing flags on all registers used by the AND.
      
      llvm-svn: 236886
      85b1c48b
    • Pete Cooper's avatar
      80 cols fix since i'm looking at this function anyway. NFC · ff5064a1
      Pete Cooper authored
      llvm-svn: 236885
      ff5064a1
    • Andrey Churbanov's avatar
    • Kaelyn Takata's avatar
      Add the test case from PR 14044 to ensure it doesn't regress. · c8c0de2a
      Kaelyn Takata authored
      The test started working at some point, presumably fixed through the
      delayed typo correction work.
      
      llvm-svn: 236883
      c8c0de2a
    • Renato Golin's avatar
      Revert "clang-format: Only output IncompleteFormat if -cursor is given." · 82fbfe68
      Renato Golin authored
      This reverts commit r236867, as it was breaking multiple buildbots. Daniel
      will look into it later.
      
      llvm-svn: 236882
      82fbfe68
    • Pete Cooper's avatar
      Remove duplicate cmake target I added in r236792. · eaef4bcd
      Pete Cooper authored
      Thanks to Daniel Jasper for pointing out the mistake.
      
      llvm-svn: 236881
      eaef4bcd
Loading