forked from OSchip/llvm-project
Guard print() functions only used by dump() functions.
Summary: Since r293359, most dump() function are only defined when `!defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)` holds. print() functions only used by dump() functions are now unused in release builds, generating lots of warnings. This patch only defines some print() functions if they are used. Reviewers: MatzeB Reviewed By: MatzeB Subscribers: arsenm, mzolotukhin, nhaehnle, llvm-commits Differential Revision: https://reviews.llvm.org/D35949 llvm-svn: 309553
This commit is contained in:
parent
b4b4c0ae17
commit
6b3216aad8
|
@ -2619,6 +2619,7 @@ static inline raw_ostream &operator<<(raw_ostream &OS, const ExtAddrMode &AM) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void ExtAddrMode::print(raw_ostream &OS) const {
|
||||
bool NeedPlus = false;
|
||||
OS << "[";
|
||||
|
@ -2650,7 +2651,6 @@ void ExtAddrMode::print(raw_ostream &OS) const {
|
|||
OS << ']';
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void ExtAddrMode::dump() const {
|
||||
print(dbgs());
|
||||
dbgs() << '\n';
|
||||
|
|
|
@ -365,6 +365,7 @@ static void printExtendedName(raw_ostream &OS, const DILocalVariable *V,
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
void UserValue::print(raw_ostream &OS, const TargetRegisterInfo *TRI) {
|
||||
auto *DV = cast<DILocalVariable>(Variable);
|
||||
OS << "!\"";
|
||||
|
@ -390,6 +391,7 @@ void LDVImpl::print(raw_ostream &OS) {
|
|||
for (unsigned i = 0, e = userValues.size(); i != e; ++i)
|
||||
userValues[i]->print(OS, TRI);
|
||||
}
|
||||
#endif
|
||||
|
||||
void UserValue::coalesceLocation(unsigned LocNo) {
|
||||
unsigned KeepLoc = 0;
|
||||
|
|
|
@ -3960,6 +3960,7 @@ void SMSchedule::finalizeSchedule(SwingSchedulerDAG *SSD) {
|
|||
DEBUG(dump(););
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
/// Print the schedule information to the given output.
|
||||
void SMSchedule::print(raw_ostream &os) const {
|
||||
// Iterate over each cycle.
|
||||
|
@ -3975,7 +3976,6 @@ void SMSchedule::print(raw_ostream &os) const {
|
|||
}
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
/// Utility function used for debugging to print the schedule.
|
||||
LLVM_DUMP_METHOD void SMSchedule::dump() const { print(dbgs()); }
|
||||
#endif
|
||||
|
|
|
@ -1014,6 +1014,7 @@ void WinEHPrepare::cleanupPreparedFunclets(Function &F) {
|
|||
removeUnreachableBlocks(F);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
void WinEHPrepare::verifyPreparedFunclets(Function &F) {
|
||||
for (BasicBlock &BB : F) {
|
||||
size_t NumColors = BlockColors[&BB].size();
|
||||
|
@ -1026,6 +1027,7 @@ void WinEHPrepare::verifyPreparedFunclets(Function &F) {
|
|||
"EH Pad still has a PHI!");
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
bool WinEHPrepare::prepareExplicitEH(Function &F) {
|
||||
// Remove unreachable blocks. It is not valuable to assign them a color and
|
||||
|
|
|
@ -250,7 +250,8 @@ unsigned PHILinearize::getNumSources(unsigned DestReg) {
|
|||
return phiInfoElementGetSources(findPHIInfoElement(DestReg)).size();
|
||||
}
|
||||
|
||||
void PHILinearize::dump(MachineRegisterInfo *MRI) {
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void PHILinearize::dump(MachineRegisterInfo *MRI) {
|
||||
const TargetRegisterInfo *TRI = MRI->getTargetRegisterInfo();
|
||||
dbgs() << "=PHIInfo Start=\n";
|
||||
for (auto PII : this->PHIInfo) {
|
||||
|
@ -265,6 +266,7 @@ void PHILinearize::dump(MachineRegisterInfo *MRI) {
|
|||
}
|
||||
dbgs() << "=PHIInfo End=\n";
|
||||
}
|
||||
#endif
|
||||
|
||||
void PHILinearize::clear() { PHIInfo = PHIInfoT(); }
|
||||
|
||||
|
@ -839,6 +841,7 @@ void LinearizedRegion::storeLiveOuts(RegionMRT *Region,
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
void LinearizedRegion::print(raw_ostream &OS, const TargetRegisterInfo *TRI) {
|
||||
OS << "Linearized Region {";
|
||||
bool IsFirst = true;
|
||||
|
@ -859,6 +862,7 @@ void LinearizedRegion::print(raw_ostream &OS, const TargetRegisterInfo *TRI) {
|
|||
}
|
||||
OS << "} \n";
|
||||
}
|
||||
#endif
|
||||
|
||||
unsigned LinearizedRegion::getBBSelectRegIn() {
|
||||
return getRegionMRT()->getBBSelectRegIn();
|
||||
|
|
|
@ -1168,6 +1168,7 @@ int AMDGPUCFGStructurizer::handleJumpintoIfImp(MachineBasicBlock *HeadMBB,
|
|||
return Num;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
void AMDGPUCFGStructurizer::showImproveSimpleJumpintoIf(
|
||||
MachineBasicBlock *HeadMBB, MachineBasicBlock *TrueMBB,
|
||||
MachineBasicBlock *FalseMBB, MachineBasicBlock *LandMBB, bool Detail) {
|
||||
|
@ -1209,6 +1210,7 @@ void AMDGPUCFGStructurizer::showImproveSimpleJumpintoIf(
|
|||
|
||||
dbgs() << "\n";
|
||||
}
|
||||
#endif
|
||||
|
||||
int AMDGPUCFGStructurizer::improveSimpleJumpintoIf(MachineBasicBlock *HeadMBB,
|
||||
MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB,
|
||||
|
|
|
@ -602,11 +602,13 @@ uint32_t LatticeCell::properties() const {
|
|||
return Ps;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
void MachineConstPropagator::CellMap::print(raw_ostream &os,
|
||||
const TargetRegisterInfo &TRI) const {
|
||||
for (auto &I : Map)
|
||||
dbgs() << " " << PrintReg(I.first, &TRI) << " -> " << I.second << '\n';
|
||||
}
|
||||
#endif
|
||||
|
||||
void MachineConstPropagator::visitPHI(const MachineInstr &PN) {
|
||||
const MachineBasicBlock *MB = PN.getParent();
|
||||
|
|
|
@ -423,6 +423,7 @@ unsigned SampleProfileLoader::getOffset(const DILocation *DIL) const {
|
|||
0xffff;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
/// \brief Print the weight of edge \p E on stream \p OS.
|
||||
///
|
||||
/// \param OS Stream to emit the output to.
|
||||
|
@ -453,6 +454,7 @@ void SampleProfileLoader::printBlockWeight(raw_ostream &OS,
|
|||
uint64_t W = (I == BlockWeights.end() ? 0 : I->second);
|
||||
OS << "weight[" << BB->getName() << "]: " << W << "\n";
|
||||
}
|
||||
#endif
|
||||
|
||||
/// \brief Get the weight for an instruction.
|
||||
///
|
||||
|
|
|
@ -664,6 +664,7 @@ PreservedAnalyses GuardWideningPass::run(Function &F,
|
|||
return PA;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
StringRef GuardWideningImpl::scoreTypeToString(WideningScore WS) {
|
||||
switch (WS) {
|
||||
case WS_IllegalOrNegative:
|
||||
|
@ -678,6 +679,7 @@ StringRef GuardWideningImpl::scoreTypeToString(WideningScore WS) {
|
|||
|
||||
llvm_unreachable("Fully covered switch above!");
|
||||
}
|
||||
#endif
|
||||
|
||||
char GuardWideningLegacyPass::ID = 0;
|
||||
|
||||
|
|
|
@ -195,11 +195,11 @@ public:
|
|||
|
||||
} // end anonymous namespace
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void RegSortData::print(raw_ostream &OS) const {
|
||||
OS << "[NumUses=" << UsedByIndices.count() << ']';
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void RegSortData::dump() const {
|
||||
print(errs()); errs() << '\n';
|
||||
}
|
||||
|
@ -1350,6 +1350,7 @@ bool Cost::isLess(Cost &Other, const TargetTransformInfo &TTI) {
|
|||
return TTI.isLSRCostLess(C, Other.C);
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void Cost::print(raw_ostream &OS) const {
|
||||
if (InsnsCost)
|
||||
OS << C.Insns << " instruction" << (C.Insns == 1 ? " " : "s ");
|
||||
|
@ -1370,7 +1371,6 @@ void Cost::print(raw_ostream &OS) const {
|
|||
OS << ", plus " << C.SetupCost << " setup cost";
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void Cost::dump() const {
|
||||
print(errs()); errs() << '\n';
|
||||
}
|
||||
|
@ -3859,12 +3859,12 @@ struct WorkItem {
|
|||
|
||||
} // end anonymous namespace
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void WorkItem::print(raw_ostream &OS) const {
|
||||
OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
|
||||
<< " , add offset " << Imm;
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void WorkItem::dump() const {
|
||||
print(errs()); errs() << '\n';
|
||||
}
|
||||
|
@ -5364,13 +5364,13 @@ void LSRInstance::print_uses(raw_ostream &OS) const {
|
|||
}
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void LSRInstance::print(raw_ostream &OS) const {
|
||||
print_factors_and_types(OS);
|
||||
print_fixups(OS);
|
||||
print_uses(OS);
|
||||
}
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_DUMP_METHOD void LSRInstance::dump() const {
|
||||
print(errs()); errs() << '\n';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue