llvm-6502/include/llvm/Assembly/CachedWriter.h
Chris Lattner 5818a7162d Okay, so this is a huge hack. Fixme later
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1171 91177308-0d34-0410-b5e6-96231b3b80d8
2001-11-07 05:31:53 +00:00

74 lines
2.1 KiB
C++

//===-- llvm/Assembly/CachedWriter.h - Printer Accellerator ------*- C++ -*--=//
//
// This file defines a 'CacheWriter' class that is used to accelerate printing
// chunks of LLVM. This is used when a module is not being changed, but random
// parts of it need to be printed. This can greatly speed up printing of LLVM
// output.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_ASSEMBLY_CACHED_WRITER_H
#define LLVM_ASSEMBLY_CACHED_WRITER_H
#include "llvm/Assembly/Writer.h"
class AssemblyWriter; // Internal private class
class SlotCalculator;
class CachedWriter {
AssemblyWriter *AW;
SlotCalculator *SC;
public:
ostream &Out;
public:
CachedWriter(ostream &O = cout) : AW(0), SC(0), Out(O) { }
CachedWriter(const Module *M, ostream &O = cout) : AW(0), SC(0), Out(O) {
setModule(M);
}
~CachedWriter();
// setModule - Invalidate internal state, use the new module instead.
void setModule(const Module *M);
CachedWriter &operator<<(const Value *V);
inline CachedWriter &operator<<(Value *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const Module *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const GlobalVariable *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const Method *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const MethodArgument *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const BasicBlock *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const Instruction *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const ConstPoolVal *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const Type *X) {
return *this << (const Value*)X;
}
inline CachedWriter &operator<<(const PointerType *X) {
return *this << (const Value*)X;
}
};
template<class X>
inline CachedWriter &operator<<(CachedWriter &CW, const X &v) {
CW.Out << v;
return CW;
}
#endif