[PATCH] D54916: Add new passes to X86 pipeline tests
Mircea Trofin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 26 14:53:40 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL347607: Add new passes to X86 pipeline tests (authored by mtrofin, committed by ).
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54916/new/
https://reviews.llvm.org/D54916
Files:
llvm/trunk/lib/Target/X86/X86DiscriminateMemOps.cpp
llvm/trunk/lib/Target/X86/X86InsertPrefetch.cpp
llvm/trunk/test/CodeGen/X86/O0-pipeline.ll
llvm/trunk/test/CodeGen/X86/O3-pipeline.ll
Index: llvm/trunk/lib/Target/X86/X86InsertPrefetch.cpp
===================================================================
--- llvm/trunk/lib/Target/X86/X86InsertPrefetch.cpp
+++ llvm/trunk/lib/Target/X86/X86InsertPrefetch.cpp
@@ -54,6 +54,9 @@
public:
static char ID;
X86InsertPrefetch(const std::string &PrefetchHintsFilename);
+ StringRef getPassName() const override {
+ return "X86 Insert Cache Prefetches";
+ }
private:
std::string Filename;
Index: llvm/trunk/lib/Target/X86/X86DiscriminateMemOps.cpp
===================================================================
--- llvm/trunk/lib/Target/X86/X86DiscriminateMemOps.cpp
+++ llvm/trunk/lib/Target/X86/X86DiscriminateMemOps.cpp
@@ -41,6 +41,9 @@
class X86DiscriminateMemOps : public MachineFunctionPass {
bool runOnMachineFunction(MachineFunction &MF) override;
+ StringRef getPassName() const override {
+ return "X86 Discriminate Memory Operands";
+ }
public:
static char ID;
Index: llvm/trunk/test/CodeGen/X86/O3-pipeline.ll
===================================================================
--- llvm/trunk/test/CodeGen/X86/O3-pipeline.ll
+++ llvm/trunk/test/CodeGen/X86/O3-pipeline.ll
@@ -159,6 +159,8 @@
; CHECK-NEXT: X86 Atom pad short functions
; CHECK-NEXT: X86 LEA Fixup
; CHECK-NEXT: Compressing EVEX instrs to VEX encoding when possible
+; CHECK-NEXT: X86 Discriminate Memory Operands
+; CHECK-NEXT: X86 Insert Cache Prefetches
; CHECK-NEXT: Contiguously Lay Out Funclets
; CHECK-NEXT: StackMap Liveness Analysis
; CHECK-NEXT: Live DEBUG_VALUE analysis
Index: llvm/trunk/test/CodeGen/X86/O0-pipeline.ll
===================================================================
--- llvm/trunk/test/CodeGen/X86/O0-pipeline.ll
+++ llvm/trunk/test/CodeGen/X86/O0-pipeline.ll
@@ -58,6 +58,8 @@
; CHECK-NEXT: Shadow Call Stack
; CHECK-NEXT: X86 Indirect Branch Tracking
; CHECK-NEXT: X86 vzeroupper inserter
+; CHECK-NEXT: X86 Discriminate Memory Operands
+; CHECK-NEXT: X86 Insert Cache Prefetches
; CHECK-NEXT: Contiguously Lay Out Funclets
; CHECK-NEXT: StackMap Liveness Analysis
; CHECK-NEXT: Live DEBUG_VALUE analysis
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D54916.175346.patch
Type: text/x-patch
Size: 2226 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181126/5f01c0bf/attachment.bin>
More information about the llvm-commits
mailing list