mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:50:30 +00:00
Release build: guard dump functions with
"#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)" No functional change. Update r163339. llvm-svn: 163653
This commit is contained in:
parent
c778c0a3f4
commit
1a047422a0
@ -748,7 +748,7 @@ raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) {
|
||||
return os << '[' << LR.start << ',' << LR.end << ':' << LR.valno->id << ")";
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void LiveRange::dump() const {
|
||||
dbgs() << *this << "\n";
|
||||
}
|
||||
@ -785,7 +785,7 @@ void LiveInterval::print(raw_ostream &OS) const {
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void LiveInterval::dump() const {
|
||||
dbgs() << *this << "\n";
|
||||
}
|
||||
|
@ -156,7 +156,7 @@ void LiveIntervals::printInstrs(raw_ostream &OS) const {
|
||||
MF->print(OS, Indexes);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void LiveIntervals::dumpInstrs() const {
|
||||
printInstrs(dbgs());
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
|
||||
}
|
||||
|
||||
void LiveVariables::VarInfo::dump() const {
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
dbgs() << " Alive in blocks: ";
|
||||
for (SparseBitVector<>::iterator I = AliveBlocks.begin(),
|
||||
E = AliveBlocks.end(); I != E; ++I)
|
||||
|
@ -228,7 +228,7 @@ const MachineBasicBlock *MachineBasicBlock::getLandingPadSuccessor() const {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void MachineBasicBlock::dump() const {
|
||||
print(dbgs());
|
||||
}
|
||||
|
@ -284,7 +284,7 @@ MachineFunction::extractStoreMemRefs(MachineInstr::mmo_iterator Begin,
|
||||
return std::make_pair(Result, Result + Num);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void MachineFunction::dump() const {
|
||||
print(dbgs());
|
||||
}
|
||||
@ -534,7 +534,7 @@ void MachineFrameInfo::print(const MachineFunction &MF, raw_ostream &OS) const{
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void MachineFrameInfo::dump(const MachineFunction &MF) const {
|
||||
print(MF, dbgs());
|
||||
}
|
||||
@ -633,7 +633,7 @@ void MachineJumpTableInfo::print(raw_ostream &OS) const {
|
||||
OS << '\n';
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void MachineJumpTableInfo::dump() const { print(dbgs()); }
|
||||
#endif
|
||||
|
||||
@ -768,6 +768,6 @@ void MachineConstantPool::print(raw_ostream &OS) const {
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void MachineConstantPool::dump() const { print(dbgs()); }
|
||||
#endif
|
||||
|
@ -1496,7 +1496,7 @@ void MachineInstr::copyImplicitOps(const MachineInstr *MI) {
|
||||
}
|
||||
|
||||
void MachineInstr::dump() const {
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
dbgs() << " " << *this;
|
||||
#endif
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ MachineBasicBlock *MachineLoop::getBottomBlock() {
|
||||
return BotMBB;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void MachineLoop::dump() const {
|
||||
print(dbgs());
|
||||
}
|
||||
|
@ -279,7 +279,7 @@ void MachineScheduler::print(raw_ostream &O, const Module* m) const {
|
||||
// unimplemented
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void ReadyQueue::dump() {
|
||||
dbgs() << Name << ": ";
|
||||
for (unsigned i = 0, e = Queue.size(); i < e; ++i)
|
||||
|
@ -240,7 +240,7 @@ void SchedulePostRATDList::exitRegion() {
|
||||
ScheduleDAGInstrs::exitRegion();
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
/// dumpSchedule - dump the scheduled Sequence.
|
||||
void SchedulePostRATDList::dumpSchedule() const {
|
||||
for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
|
||||
|
@ -63,7 +63,7 @@ void RegisterPressure::decrease(const TargetRegisterClass *RC,
|
||||
decreaseSetPressure(MaxSetPressure, RC, TRI);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void RegisterPressure::dump(const TargetRegisterInfo *TRI) {
|
||||
dbgs() << "Live In: ";
|
||||
for (unsigned i = 0, e = LiveInRegs.size(); i < e; ++i)
|
||||
|
@ -279,7 +279,7 @@ void SUnit::ComputeHeight() {
|
||||
} while (!WorkList.empty());
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
|
||||
/// a group of nodes flagged together.
|
||||
void SUnit::dump(const ScheduleDAG *G) const {
|
||||
|
@ -1012,7 +1012,7 @@ void ScheduleDAGInstrs::computeLatency(SUnit *SU) {
|
||||
}
|
||||
|
||||
void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
SU->getInstr()->dump();
|
||||
#endif
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ void ScoreboardHazardRecognizer::Reset() {
|
||||
ReservedScoreboard.reset();
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void ScoreboardHazardRecognizer::Scoreboard::dump() const {
|
||||
dbgs() << "Scoreboard:\n";
|
||||
|
||||
|
@ -1758,7 +1758,7 @@ public:
|
||||
return V;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void dump(ScheduleDAG *DAG) const {
|
||||
// Emulate pop() without clobbering NodeQueueIds.
|
||||
std::vector<SUnit*> DumpQueue = Queue;
|
||||
@ -1897,7 +1897,7 @@ unsigned RegReductionPQBase::getNodePriority(const SUnit *SU) const {
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
void RegReductionPQBase::dumpRegPressure() const {
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
for (TargetRegisterInfo::regclass_iterator I = TRI->regclass_begin(),
|
||||
E = TRI->regclass_end(); I != E; ++I) {
|
||||
const TargetRegisterClass *RC = *I;
|
||||
|
@ -643,7 +643,7 @@ void ScheduleDAGSDNodes::computeOperandLatency(SDNode *Def, SDNode *Use,
|
||||
}
|
||||
|
||||
void ScheduleDAGSDNodes::dumpNode(const SUnit *SU) const {
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
if (!SU->getNode()) {
|
||||
dbgs() << "PHYS REG COPY\n";
|
||||
return;
|
||||
@ -663,7 +663,7 @@ void ScheduleDAGSDNodes::dumpNode(const SUnit *SU) const {
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void ScheduleDAGSDNodes::dumpSchedule() const {
|
||||
for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
|
||||
if (SUnit *SU = Sequence[i])
|
||||
|
@ -143,7 +143,7 @@ void SlotIndexes::renumberIndexes(IndexList::iterator curItr) {
|
||||
}
|
||||
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void SlotIndexes::dump() const {
|
||||
for (IndexList::const_iterator itr = indexList.begin();
|
||||
itr != indexList.end(); ++itr) {
|
||||
@ -170,7 +170,7 @@ void SlotIndex::print(raw_ostream &os) const {
|
||||
os << "invalid";
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
// Dump a SlotIndex to stderr.
|
||||
void SlotIndex::dump() const {
|
||||
print(dbgs());
|
||||
|
@ -356,7 +356,7 @@ void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
|
||||
Edit->anyRematerializable(0);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void SplitEditor::dump() const {
|
||||
if (RegAssign.empty()) {
|
||||
dbgs() << " empty\n";
|
||||
|
@ -126,7 +126,7 @@ void VirtRegMap::print(raw_ostream &OS, const Module*) const {
|
||||
OS << '\n';
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void VirtRegMap::dump() const {
|
||||
print(dbgs());
|
||||
}
|
||||
|
@ -171,7 +171,7 @@ namespace {
|
||||
// Shuffle live registers to match the expectations of successor blocks.
|
||||
void finishBlockStack();
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void dumpStack() const {
|
||||
dbgs() << "Stack contents:";
|
||||
for (unsigned i = 0; i != StackTop; ++i) {
|
||||
|
@ -100,7 +100,7 @@ namespace {
|
||||
Base_Reg = Reg;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
void dump() {
|
||||
dbgs() << "X86ISelAddressMode " << this << '\n';
|
||||
dbgs() << "Base_Reg ";
|
||||
|
Loading…
Reference in New Issue
Block a user