2010-09-03 01:09:42 +02:00
|
|
|
//===-- AssemblyAnnotationWriter.h - 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;
|
2011-11-14 18:45:03 +01:00
|
|
|
class Value;
|
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.
|
2011-11-04 19:11:56 +01:00
|
|
|
virtual void emitFunctionAnnot(const Function *,
|
|
|
|
formatted_raw_ostream &) {}
|
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
|
2010-09-03 01:07:12 +02:00
|
|
|
/// after the basic block label, but before the first instruction in the
|
|
|
|
/// block.
|
2011-11-04 19:11:56 +01:00
|
|
|
virtual void emitBasicBlockStartAnnot(const BasicBlock *,
|
|
|
|
formatted_raw_ostream &) {
|
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.
|
2011-11-04 19:11:56 +01:00
|
|
|
virtual void emitBasicBlockEndAnnot(const BasicBlock *,
|
|
|
|
formatted_raw_ostream &) {
|
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.
|
2011-11-04 19:11:56 +01:00
|
|
|
virtual void emitInstructionAnnot(const Instruction *,
|
|
|
|
formatted_raw_ostream &) {}
|
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.
|
2011-11-04 19:11:56 +01:00
|
|
|
virtual void printInfoComment(const Value &, formatted_raw_ostream &) {}
|
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
|