blob: 1f17d07d0ef7a260e7de104541e3a8b17ad9f1bb [file] [log] [blame]
//===- Core/NativeReader.h - Reads llvm native object files ---------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_CORE_NATIVE_READER_H_
#define LLD_CORE_NATIVE_READER_H_
#include "lld/Core/File.h"
#include "llvm/Support/system_error.h"
#include <memory>
#include <vector>
namespace llvm {
class MemoryBuffer;
class StringRef;
}
namespace lld {
/// parseNativeObjectFileOrSTDIN - Open the specified native object file (use
/// stdin if the path is "-") and instantiate into an lld::File object.
error_code parseNativeObjectFileOrSTDIN( StringRef path
, std::unique_ptr<File> &result);
/// parseNativeObjectFile - Parse the specified native object file
/// (in a buffer) and instantiate into an lld::File object.
error_code parseNativeObjectFile( std::unique_ptr<llvm::MemoryBuffer> &mb
, StringRef path
, std::unique_ptr<File> &result);
} // namespace lld
#endif // LLD_CORE_NATIVE_READER_H_