2007-09-18 03:18:57 +00:00
|
|
|
//===-- BitWriter.cpp -----------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-09-18 03:18:57 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm-c/BitWriter.h"
|
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2009-08-23 07:49:08 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2007-09-18 03:18:57 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
|
|
|
|
/*===-- Operations on modules ---------------------------------------------===*/
|
|
|
|
|
|
|
|
int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) {
|
2009-08-23 07:49:08 +00:00
|
|
|
std::string ErrorInfo;
|
|
|
|
raw_fd_ostream OS(Path, ErrorInfo,
|
2009-08-25 15:34:52 +00:00
|
|
|
raw_fd_ostream::F_Binary);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2009-08-23 07:49:08 +00:00
|
|
|
if (!ErrorInfo.empty())
|
2007-09-18 03:18:57 +00:00
|
|
|
return -1;
|
|
|
|
|
2009-08-23 07:49:08 +00:00
|
|
|
WriteBitcodeToFile(unwrap(M), OS);
|
2007-09-18 03:18:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-06 00:30:06 +00:00
|
|
|
int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
|
|
|
|
int Unbuffered) {
|
|
|
|
raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2009-08-23 07:49:08 +00:00
|
|
|
WriteBitcodeToFile(unwrap(M), OS);
|
2007-09-18 03:18:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-03-06 00:30:06 +00:00
|
|
|
|
|
|
|
int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) {
|
|
|
|
return LLVMWriteBitcodeToFD(M, FileHandle, true, false);
|
|
|
|
}
|