2003-10-31 00:39:52 +01:00
|
|
|
//===-- AsmAnnotationWriter.h - Itf for annotation .ll files - --*- C++ -*-===//
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-31 00:39:52 +01:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-31 00:39:52 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Clients of the assembly writer can use this interface to add their own
|
|
|
|
// special-purpose annotations to LLVM assembly language printouts. Note that
|
|
|
|
// the assembly parser won't be able to parse these, in general, so
|
|
|
|
// implementations are advised to print stuff as LLVM comments.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ASSEMBLY_ASMANNOTATIONWRITER_H
|
|
|
|
#define LLVM_ASSEMBLY_ASMANNOTATIONWRITER_H
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2003-10-31 00:39:52 +01:00
|
|
|
class Function;
|
|
|
|
class BasicBlock;
|
|
|
|
class Instruction;
|
2008-08-24 00:23:09 +02:00
|
|
|
class raw_ostream;
|
2010-02-10 21:41:46 +01:00
|
|
|
class formatted_raw_ostream;
|
2003-10-31 00:39:52 +01:00
|
|
|
|
2008-08-24 20:38:56 +02:00
|
|
|
class AssemblyAnnotationWriter {
|
|
|
|
public:
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2005-05-15 18:13:11 +02:00
|
|
|
virtual ~AssemblyAnnotationWriter();
|
|
|
|
|
2010-02-10 21:23:33 +01:00
|
|
|
/// emitFunctionAnnot - This may be implemented to emit a string right before
|
|
|
|
/// the start of a function.
|
2008-08-24 00:23:09 +02:00
|
|
|
virtual void emitFunctionAnnot(const Function *F, raw_ostream &OS) {}
|
2003-10-31 00:39:52 +01:00
|
|
|
|
2010-02-10 21:23:33 +01:00
|
|
|
/// emitBasicBlockStartAnnot - This may be implemented to emit a string right
|
|
|
|
/// after the basic block label, but before the first instruction in the block.
|
2008-08-24 00:23:09 +02:00
|
|
|
virtual void emitBasicBlockStartAnnot(const BasicBlock *BB, raw_ostream &OS){
|
2004-03-08 19:51:05 +01:00
|
|
|
}
|
|
|
|
|
2010-02-10 21:23:33 +01:00
|
|
|
/// emitBasicBlockEndAnnot - This may be implemented to emit a string right
|
|
|
|
/// after the basic block.
|
2008-08-24 00:23:09 +02:00
|
|
|
virtual void emitBasicBlockEndAnnot(const BasicBlock *BB, raw_ostream &OS){
|
2004-03-08 19:51:05 +01:00
|
|
|
}
|
2003-10-31 00:39:52 +01:00
|
|
|
|
2010-02-10 21:23:33 +01:00
|
|
|
/// emitInstructionAnnot - This may be implemented to emit a string right
|
|
|
|
/// before an instruction is emitted.
|
2008-08-24 00:23:09 +02:00
|
|
|
virtual void emitInstructionAnnot(const Instruction *I, raw_ostream &OS) {}
|
2010-02-10 21:41:46 +01:00
|
|
|
|
|
|
|
/// printInfoComment - This may be implemented to emit a comment to the
|
|
|
|
/// right of an instruction or global value.
|
|
|
|
virtual void printInfoComment(const Value &V, formatted_raw_ostream &OS) {}
|
2003-10-31 00:39:52 +01:00
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-10-31 00:39:52 +01:00
|
|
|
#endif
|