mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 07:00:45 +00:00
Expose new print methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9620 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
95e5a2cc3f
commit
072ddb1dac
@ -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