DwarfUnit: Move the DICompileUnit Node to the DwarfCompileUnit only
[oota-llvm.git] / include / llvm / IR / Writer.h
1 //===-- Writer.h - Printer for LLVM IR 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/IR/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_IR_WRITER_H
18 #define LLVM_IR_WRITER_H
19
20 namespace llvm {
21
22 class Module;
23 class Value;
24 class 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 //
32 void WriteAsOperand(raw_ostream &, const Value *, bool PrintTy = true,
33                     const Module *Context = 0);
34
35 } // End llvm namespace
36
37 #endif