1//===-- llvm/Assembly/Writer.h - Printer for LLVM assembly files --*- C++ -*-=//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This functionality is implemented by lib/VMCore/AsmWriter.cpp.
11// This library is used to print LLVM assembly language files to an iostream. It
12// can print LLVM code at a variety of granularities, including Modules,
13// BasicBlocks, and Instructions.  This makes it useful for debugging.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef LLVM_ASSEMBLY_WRITER_H
18#define LLVM_ASSEMBLY_WRITER_H
19
20namespace llvm {
21
22class Module;
23class Value;
24class raw_ostream;
25
26// WriteAsOperand - Write the name of the specified value out to the specified
27// ostream.  This can be useful when you just want to print int %reg126, not the
28// whole instruction that generated it.  If you specify a Module for context,
29// then even constants get pretty-printed; for example, the type of a null
30// pointer is printed symbolically.
31//
32void WriteAsOperand(raw_ostream &, const Value *, bool PrintTy = true,
33                    const Module *Context = 0);
34
35} // End llvm namespace
36
37#endif
38