summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-02-08 22:49:43 +0000
committerFrancis Visoiu Mistrih <francisvm@yahoo.com>2019-02-08 22:49:43 +0000
commitdecba8aa06f01ed76a5e2e1d4705b98782132bef (patch)
treed42a41d5bb66b00ebb4f67fdb5d2da0c156635eb /llvm
parentb1e8b8149b9132b3c5e852313f5ba8efbca513cc (diff)
downloadbcm5719-llvm-decba8aa06f01ed76a5e2e1d4705b98782132bef.tar.gz
bcm5719-llvm-decba8aa06f01ed76a5e2e1d4705b98782132bef.zip
Revert r353553 "[GISel][NFC]: Add missing call to record CSE hits in the CSEMIRBuilder"
This reverts commit r353553. This breaks CodeGen/AArch64/GlobalISel/legalize-ext-csedebug-output.mir: http://green.lab.llvm.org/green/job/clang-stage1-cmake-RA-incremental/57963/console llvm-svn: 353575
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp18
-rw-r--r--llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp1
-rw-r--r--llvm/test/CodeGen/AArch64/GlobalISel/legalize-ext-csedebug-output.mir35
3 files changed, 9 insertions, 45 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp b/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
index aaf09c8c938..019cc72a12c 100644
--- a/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
+++ b/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
@@ -138,7 +138,7 @@ MachineInstr *GISelCSEInfo::getMachineInstrIfExists(FoldingSetNodeID &ID,
void *&InsertPos) {
handleRecordedInsts();
if (auto *Inst = getNodeIfExists(ID, MBB, InsertPos)) {
- LLVM_DEBUG(dbgs() << "CSEInfo::Found Instr " << *Inst->MI;);
+ LLVM_DEBUG(dbgs() << "CSEInfo: Found Instr " << *Inst->MI << "\n";);
return const_cast<MachineInstr *>(Inst->MI);
}
return nullptr;
@@ -157,14 +157,14 @@ void GISelCSEInfo::countOpcodeHit(unsigned Opc) {
void GISelCSEInfo::recordNewInstruction(MachineInstr *MI) {
if (shouldCSE(MI->getOpcode())) {
TemporaryInsts.insert(MI);
- LLVM_DEBUG(dbgs() << "CSEInfo::Recording new MI " << *MI);
+ LLVM_DEBUG(dbgs() << "CSEInfo: Recording new MI " << *MI);
}
}
void GISelCSEInfo::handleRecordedInst(MachineInstr *MI) {
assert(shouldCSE(MI->getOpcode()) && "Invalid instruction for CSE");
auto *UMI = InstrMapping.lookup(MI);
- LLVM_DEBUG(dbgs() << "CSEInfo::Handling recorded MI " << *MI);
+ LLVM_DEBUG(dbgs() << "CSEInfo: Handling recorded MI " << *MI);
if (UMI) {
// Invalidate this MI.
invalidateUniqueMachineInstr(UMI);
@@ -230,7 +230,7 @@ void GISelCSEInfo::analyze(MachineFunction &MF) {
}
void GISelCSEInfo::releaseMemory() {
- print();
+ // print();
CSEMap.clear();
InstrMapping.clear();
UniqueInstrAllocator.Reset();
@@ -244,11 +244,11 @@ void GISelCSEInfo::releaseMemory() {
}
void GISelCSEInfo::print() {
- LLVM_DEBUG(for (auto &It
- : OpcodeHitTable) {
- dbgs() << "CSEInfo::CSE Hit for Opc " << It.first << " : " << It.second
- << "\n";
- };);
+#ifndef NDEBUG
+ for (auto &It : OpcodeHitTable) {
+ dbgs() << "CSE Count for Opc " << It.first << " : " << It.second << "\n";
+ };
+#endif
}
/// -----------------------------------------
// ---- Profiling methods for FoldingSetNode --- //
diff --git a/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp b/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
index 461bc6038c2..ed2c95c22ce 100644
--- a/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
+++ b/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
@@ -39,7 +39,6 @@ CSEMIRBuilder::getDominatingInstrForID(FoldingSetNodeID &ID,
MachineInstr *MI =
CSEInfo->getMachineInstrIfExists(ID, CurMBB, NodeInsertPos);
if (MI) {
- CSEInfo->countOpcodeHit(MI->getOpcode());
auto CurrPos = getInsertPt();
if (!dominates(MI, CurrPos))
CurMBB->splice(CurrPos, CurMBB, MI);
diff --git a/llvm/test/CodeGen/AArch64/GlobalISel/legalize-ext-csedebug-output.mir b/llvm/test/CodeGen/AArch64/GlobalISel/legalize-ext-csedebug-output.mir
deleted file mode 100644
index 819f04729e9..00000000000
--- a/llvm/test/CodeGen/AArch64/GlobalISel/legalize-ext-csedebug-output.mir
+++ /dev/null
@@ -1,35 +0,0 @@
-# RUN: llc -march=aarch64 -run-pass=legalizer %s -o - -enable-cse-in-legalizer=1 -debug-only=cseinfo 2>&1 | FileCheck %s
-# Test the -debug-only=cseinfo option here to make sure we're recording new instructions and printing the hit count
-# at the end.
-# REQUIRES: asserts
----
-name: test_cse_in_legalizer
-body: |
- bb.0.entry:
- ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s8) = G_TRUNC
- ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s32) = G_ZEXT
- ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s8) = G_TRUNC
- ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s32) = G_ZEXT
- ; CHECK: CSEInfo::Recording new MI G_CONSTANT
- ; CHECK: CSEInfo::Recording new MI G_CONSTANT
- ; CHECK: CSEInfo::Recording new MI G_TRUNC
- ; CHECK: CSEInfo::Recording new MI G_TRUNC
- ; CHECK: CSEInfo::Recording new MI G_AND
- ; CHECK: CSEInfo::Recording new MI G_AND
- ; CHECK: CSEInfo::Found Instr %{{[0-9]+}}:_(s32) = G_CONSTANT
- ; CHECK: CSEInfo::Found Instr %{{[0-9]+}}:_(s32) = G_TRUNC
- ; CHECK: CSEInfo::Found Instr %{{[0-9]+}}:_(s32) = G_AND
- ; Note - these will be sensitive the opcode numbers. If
- ; frequently modifying generic opcodes, we could just regex
- ; the opcodes in the following lines instead of checking for
- ; specific opcode numbers.
- ; CHECK: CSEInfo::CSE Hit for Opc 82 : 1
- ; CHECK: CSEInfo::CSE Hit for Opc 41 : 1
- ; CHECK: CSEInfo::CSE Hit for Opc 83 : 1
- %0:_(s64) = COPY $x0
- %1:_(s8) = G_TRUNC %0(s64)
- %19:_(s32) = G_ZEXT %1(s8)
- $w0 = COPY %19(s32)
- %2:_(s8) = G_TRUNC %0(s64)
- %20:_(s32) = G_ZEXT %2(s8)
- $w0 = COPY %20(s32)
OpenPOWER on IntegriCloud