[all-commits] [llvm/llvm-project] 4b9c2b: [X86] Regenerate extract-store.ll tests

Simon Pilgrim via All-commits all-commits at lists.llvm.org
Fri Nov 27 03:19:31 PST 2020


  Branch: refs/heads/master
  Home:   https://github.com/llvm/llvm-project
  Commit: 4b9c2bbdb67139e69b689cbfc490632391324f02
      https://github.com/llvm/llvm-project/commit/4b9c2bbdb67139e69b689cbfc490632391324f02
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2020-11-27 (Fri, 27 Nov 2020)

  Changed paths:
    M llvm/test/CodeGen/X86/extract-store.ll

  Log Message:
  -----------
  [X86] Regenerate extract-store.ll tests

Rename prefix from X32 to X86 as we typically use X32 for gnux32 triples


  Commit: 969918e177adcfd526da7d8e21e5d76860e09c9e
      https://github.com/llvm/llvm-project/commit/969918e177adcfd526da7d8e21e5d76860e09c9e
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2020-11-27 (Fri, 27 Nov 2020)

  Changed paths:
    M llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
    M llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    M llvm/lib/Target/X86/X86ISelLowering.cpp
    M llvm/test/Analysis/CostModel/AArch64/min-max.ll
    M llvm/test/CodeGen/X86/midpoint-int-vec-128.ll

  Log Message:
  -----------
  [DAG] Legalize umin(x,y) -> sub(x,usubsat(x,y)) and umax(x,y) -> add(x,usubsat(y,x)) iff usubsat is legal

If usubsat() is legal, this is likely to result in smaller codegen expansion than the default cmp+select codegen expansion.

Allows us to move the x86-specific lowering to the generic expansion code.

Differential Revision: https://reviews.llvm.org/D92183


Compare: https://github.com/llvm/llvm-project/compare/a8beb4ada4bd...969918e177ad


More information about the All-commits mailing list