Skip to content
  1. Sep 04, 2017
  2. Sep 03, 2017
    • Davide Italiano's avatar
      [UUID] Reimplement comparison operators more canonically. NFCI. · d8f06753
      Davide Italiano authored
      llvm-svn: 312457
      d8f06753
    • Tobias Grosser's avatar
      [ForwardOp] Remove read accesses for all instructions that have been moved · d6e0679c
      Tobias Grosser authored
      Before this patch, OpTree did not consider forwarding an operand tree consisting
      of only single LoadInst as useful. The motivation was that, like an access to a
      read-only variable, it would just replace one MemoryAccess by another. However,
      in contrast to read-only accesses, this would replace a scalar access by an
      array access, which is something worth doing.
      
      In addition, leaving scalar MemoryAccess is problematic in that VirtualUse
      prioritizes inter-Stmt use over intra-Stmt. It was possible that the same LLVM
      value has a MemoryAccess for accessing the remote Stmt's LoadInst as well as
      having the same LoadInst in its own instruction list (due to being forwarded
      from another operand tree).
      
      With this patch we ensure that if a LoadInst is forwarded is any operand tree,
      also the operand tree containing just the LoadInst is forwarded as well, which
      effectively removes the scalar MemoryAccess such that only the array access
      remains, not both.
      
      Thanks Michael for the detailed explanation.
      
      Reviewers: Meinersbur, bellu, singam-sanjay, gareevroman
      
      Subscribers: hfinkel, pollydev, llvm-commits
      
      Tags: #polly
      
      Differential Revision: https://reviews.llvm.org/D37424
      
      llvm-svn: 312456
      d6e0679c
    • Tobias Grosser's avatar
      [IslAst] Do not assert in case of empty min/max alias locations · 701d943d
      Tobias Grosser authored
      In certain situations, the context in the isl_ast_build could result for the
      min/max locations of our alias sets to become empty, which would cause an
      internal error in isl, which is then unable to derive a value for these
      expressions. Check these conditions before code generating expressions and
      instead assume that alias check succeeded. This is valid, as the corresponding
      memory accesses will not be executed under any valid context.
      
      This fixed llvm.org/PR34432. Thanks to Qirun Zhang for reporting.
      
      llvm-svn: 312455
      701d943d
    • Davide Italiano's avatar
      [Interpreter] Simplify else after return. NFCI. · 45188dd9
      Davide Italiano authored
      llvm-svn: 312454
      45188dd9
Loading