2003-09-30 18:37:50 +00:00
|
|
|
//===-- llvm/Bytecode/Writer.h - Writer for VM bytecode files ---*- C++ -*-===//
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2006-07-28 22:09:37 +00:00
|
|
|
// This functionality is implemented by the lib/Bytecode/Writer library.
|
|
|
|
// This library is used to write bytecode files to an iostream.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_BYTECODE_WRITER_H
|
|
|
|
#define LLVM_BYTECODE_WRITER_H
|
|
|
|
|
2002-04-29 17:42:12 +00:00
|
|
|
#include <iosfwd>
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2004-06-25 00:42:23 +00:00
|
|
|
class Module;
|
2006-05-14 19:10:22 +00:00
|
|
|
/// WriteBytecodeToFile - Write the specified module to the specified output
|
|
|
|
/// stream. If compress is set to true, try to use compression when writing
|
2006-07-28 22:09:37 +00:00
|
|
|
/// out the file. This can never fail if M is a well-formed module.
|
2005-04-21 20:39:54 +00:00
|
|
|
void WriteBytecodeToFile(const Module *M, std::ostream &Out,
|
2004-11-07 18:18:11 +00:00
|
|
|
bool compress = true);
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|