From: Chris Lattner Date: Sun, 24 Aug 2008 20:37:32 +0000 (+0000) Subject: simplify PseudoSourceValue printing a bit. Unnest all of PseudoSourceValue.cpp from... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=edfb72c6288118ab9c900a560ded89dfaa107296;p=oota-llvm.git simplify PseudoSourceValue printing a bit. Unnest all of PseudoSourceValue.cpp from the llvm namespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55293 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/PseudoSourceValue.h b/include/llvm/CodeGen/PseudoSourceValue.h index 4620456ecfe..7e805ab5ecd 100644 --- a/include/llvm/CodeGen/PseudoSourceValue.h +++ b/include/llvm/CodeGen/PseudoSourceValue.h @@ -28,8 +28,7 @@ namespace llvm { public: PseudoSourceValue(); - virtual void print(std::ostream &OS) const; - virtual void print(raw_ostream &OS) const; + void print(raw_ostream &OS) const; /// isConstant - Test whether this PseudoSourceValue has a constant value. /// @@ -61,16 +60,6 @@ namespace llvm { /// A SV referencing the jump table static const PseudoSourceValue *getJumpTable(); }; - -inline std::ostream &operator<<(std::ostream &OS,const PseudoSourceValue &PSV) { - PSV.print(OS); - return OS; -} -inline raw_ostream &operator<<(raw_ostream &OS, const PseudoSourceValue &PSV) { - PSV.print(OS); - return OS; -} - } // End llvm namespace #endif diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 41df5df5a56..27e3f663258 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -24,6 +24,7 @@ #include "llvm/Support/LeakDetector.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/Streams.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/ADT/FoldingSet.h" #include using namespace llvm; @@ -756,9 +757,10 @@ void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const { OS << ""; else if (!V->getName().empty()) OS << V->getName(); - else if (const PseudoSourceValue *PSV = dyn_cast(V)) - OS << *PSV; - else + else if (const PseudoSourceValue *PSV = dyn_cast(V)) { + raw_os_ostream OSS(OS); + PSV->print(OSS); + } else OS << V; OS << " + " << MRO.getOffset() << "]"; diff --git a/lib/CodeGen/PseudoSourceValue.cpp b/lib/CodeGen/PseudoSourceValue.cpp index ac41609d39a..8c9de810597 100644 --- a/lib/CodeGen/PseudoSourceValue.cpp +++ b/lib/CodeGen/PseudoSourceValue.cpp @@ -18,36 +18,34 @@ #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/raw_ostream.h" #include +using namespace llvm; -namespace llvm { - static ManagedStatic PSVs; +static ManagedStatic PSVs; - const PseudoSourceValue *PseudoSourceValue::getStack() - { return &(*PSVs)[0]; } - const PseudoSourceValue *PseudoSourceValue::getGOT() - { return &(*PSVs)[1]; } - const PseudoSourceValue *PseudoSourceValue::getJumpTable() - { return &(*PSVs)[2]; } - const PseudoSourceValue *PseudoSourceValue::getConstantPool() - { return &(*PSVs)[3]; } +const PseudoSourceValue *PseudoSourceValue::getStack() +{ return &(*PSVs)[0]; } +const PseudoSourceValue *PseudoSourceValue::getGOT() +{ return &(*PSVs)[1]; } +const PseudoSourceValue *PseudoSourceValue::getJumpTable() +{ return &(*PSVs)[2]; } +const PseudoSourceValue *PseudoSourceValue::getConstantPool() +{ return &(*PSVs)[3]; } - static const char *const PSVNames[] = { - "Stack", - "GOT", - "JumpTable", - "ConstantPool" - }; +static const char *const PSVNames[] = { + "Stack", + "GOT", + "JumpTable", + "ConstantPool" +}; - PseudoSourceValue::PseudoSourceValue() : - Value(PointerType::getUnqual(Type::Int8Ty), PseudoSourceValueVal) {} +PseudoSourceValue::PseudoSourceValue() : + Value(PointerType::getUnqual(Type::Int8Ty), PseudoSourceValueVal) {} - void PseudoSourceValue::print(std::ostream &OS) const { - OS << PSVNames[this - *PSVs]; - } - void PseudoSourceValue::print(raw_ostream &OS) const { - OS << PSVNames[this - *PSVs]; - } +void PseudoSourceValue::print(raw_ostream &OS) const { + OS << PSVNames[this - *PSVs]; +} +namespace { /// FixedStackPseudoSourceValue - A specialized PseudoSourceValue /// for holding FixedStack values, which must include a frame /// index. @@ -66,29 +64,28 @@ namespace llvm { OS << "FixedStack" << FI; } }; +} - static ManagedStatic > FSValues; +static ManagedStatic > FSValues; - const PseudoSourceValue *PseudoSourceValue::getFixedStack(int FI) { - const PseudoSourceValue *&V = (*FSValues)[FI]; - if (!V) - V = new FixedStackPseudoSourceValue(FI); - return V; - } +const PseudoSourceValue *PseudoSourceValue::getFixedStack(int FI) { + const PseudoSourceValue *&V = (*FSValues)[FI]; + if (!V) + V = new FixedStackPseudoSourceValue(FI); + return V; +} - bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const { - if (this == getStack()) - return false; - if (this == getGOT() || - this == getConstantPool() || - this == getJumpTable()) - return true; - assert(0 && "Unknown PseudoSourceValue!"); +bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const { + if (this == getStack()) return false; - } + if (this == getGOT() || + this == getConstantPool() || + this == getJumpTable()) + return true; + assert(0 && "Unknown PseudoSourceValue!"); + return false; +} - bool - FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const { - return MFI && MFI->isImmutableObjectIndex(FI); - } +bool FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const{ + return MFI && MFI->isImmutableObjectIndex(FI); }