From 3916f6c45a2bda2e6733a03dc3df67e63187f3eb Mon Sep 17 00:00:00 2001 From: Michael Gottesman Date: Tue, 3 Dec 2013 20:21:17 +0000 Subject: Fixed various whitespace/spelling/80+ issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196310 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineBlockFrequencyInfo.cpp | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) (limited to 'lib/CodeGen/MachineBlockFrequencyInfo.cpp') diff --git a/lib/CodeGen/MachineBlockFrequencyInfo.cpp b/lib/CodeGen/MachineBlockFrequencyInfo.cpp index f3d7c80cef..64e8ecdec9 100644 --- a/lib/CodeGen/MachineBlockFrequencyInfo.cpp +++ b/lib/CodeGen/MachineBlockFrequencyInfo.cpp @@ -1,4 +1,4 @@ -//====----- MachineBlockFrequencyInfo.cpp - Machine Block Frequency Analysis ----====// +//====------ MachineBlockFrequencyInfo.cpp - MBB Frequency Analysis ------====// // // The LLVM Compiler Infrastructure // @@ -33,7 +33,7 @@ static cl::opt ViewMachineBlockFreqPropagationDAG("view-machine-block-freq-propagation-dags", cl::Hidden, cl::desc("Pop up a window to show a dag displaying how machine block " - "frequencies propgate through the CFG."), + "frequencies propagate through the CFG."), cl::values( clEnumValN(GVDT_None, "none", "do not display graphs."), @@ -51,25 +51,31 @@ struct GraphTraits { typedef MachineBasicBlock::const_succ_iterator ChildIteratorType; typedef MachineFunction::const_iterator nodes_iterator; - static inline const NodeType *getEntryNode(const MachineBlockFrequencyInfo *G) { + static inline + const NodeType *getEntryNode(const MachineBlockFrequencyInfo *G) { return G->getFunction()->begin(); } + static ChildIteratorType child_begin(const NodeType *N) { return N->succ_begin(); } + static ChildIteratorType child_end(const NodeType *N) { return N->succ_end(); } + static nodes_iterator nodes_begin(const MachineBlockFrequencyInfo *G) { return G->getFunction()->begin(); } + static nodes_iterator nodes_end(const MachineBlockFrequencyInfo *G) { return G->getFunction()->end(); } }; template<> -struct DOTGraphTraits : public DefaultDOTGraphTraits { +struct DOTGraphTraits : + public DefaultDOTGraphTraits { explicit DOTGraphTraits(bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} @@ -112,7 +118,8 @@ INITIALIZE_PASS_END(MachineBlockFrequencyInfo, "machine-block-freq", char MachineBlockFrequencyInfo::ID = 0; -MachineBlockFrequencyInfo::MachineBlockFrequencyInfo() : MachineFunctionPass(ID) { +MachineBlockFrequencyInfo:: +MachineBlockFrequencyInfo() :MachineFunctionPass(ID) { initializeMachineBlockFrequencyInfoPass(*PassRegistry::getPassRegistry()); MBFI = new BlockFrequencyImpl(); @@ -129,7 +136,8 @@ void MachineBlockFrequencyInfo::getAnalysisUsage(AnalysisUsage &AU) const { } bool MachineBlockFrequencyInfo::runOnMachineFunction(MachineFunction &F) { - MachineBranchProbabilityInfo &MBPI = getAnalysis(); + MachineBranchProbabilityInfo &MBPI = + getAnalysis(); MBFI->doFunction(&F, &MBPI); #ifndef NDEBUG if (ViewMachineBlockFreqPropagationDAG != GVDT_None) { @@ -147,8 +155,8 @@ void MachineBlockFrequencyInfo::view() const { ViewGraph(const_cast(this), "MachineBlockFrequencyDAGs"); #else - errs() << "BlockFrequencyInfo::view is only available in debug builds on " - "systems with Graphviz or gv!\n"; + errs() << "MachineBlockFrequencyInfo::view is only available in debug builds " + "on systems with Graphviz or gv!\n"; #endif // NDEBUG } @@ -160,4 +168,3 @@ getBlockFreq(const MachineBasicBlock *MBB) const { MachineFunction *MachineBlockFrequencyInfo::getFunction() const { return MBFI->Fn; } - -- cgit v1.2.3