mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 17:56:53 +00:00
Expose new print methods
llvm-svn: 9620
This commit is contained in:
parent
c49a7fd37d
commit
8d2a791804
@ -122,7 +122,8 @@ public:
|
||||
const InstListType &getInstList() const { return InstList; }
|
||||
InstListType &getInstList() { return InstList; }
|
||||
|
||||
virtual void print(std::ostream &OS) const;
|
||||
virtual void print(std::ostream &OS) const { print(OS, 0); }
|
||||
void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
|
||||
|
||||
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const BasicBlock *BB) { return true; }
|
||||
|
@ -181,7 +181,8 @@ public:
|
||||
const Argument &aback() const { return ArgumentList.back(); }
|
||||
Argument &aback() { return ArgumentList.back(); }
|
||||
|
||||
virtual void print(std::ostream &OS) const;
|
||||
virtual void print(std::ostream &OS) const { print(OS, 0); }
|
||||
void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
|
||||
|
||||
/// viewCFG - This function is meant for use from the debugger. You can just
|
||||
/// say 'call F->viewCFG()' and a ghostview window should pop up from the
|
||||
|
@ -17,6 +17,8 @@
|
||||
|
||||
#include "llvm/User.h"
|
||||
|
||||
class AssemblyAnnotationWriter;
|
||||
|
||||
template<typename SC> struct ilist_traits;
|
||||
template<typename ValueSubClass, typename ItemParentClass, typename SymTabClass,
|
||||
typename SubClass> class SymbolTableListTraits;
|
||||
@ -108,7 +110,8 @@ public:
|
||||
}
|
||||
static bool isTrapping(unsigned op);
|
||||
|
||||
virtual void print(std::ostream &OS) const;
|
||||
virtual void print(std::ostream &OS) const { print(OS, 0); }
|
||||
void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
|
||||
|
||||
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const Instruction *I) { return true; }
|
||||
|
@ -187,7 +187,9 @@ public:
|
||||
inline const Function &back() const { return FunctionList.back(); }
|
||||
inline Function &back() { return FunctionList.back(); }
|
||||
|
||||
void print(std::ostream &OS) const;
|
||||
void print(std::ostream &OS) const { print(OS, 0); }
|
||||
void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
|
||||
|
||||
void dump() const;
|
||||
|
||||
/// dropAllReferences() - This function causes all the subinstructions to "let
|
||||
|
Loading…
Reference in New Issue
Block a user