2003-09-30 20:37:50 +02:00
|
|
|
//===-- llvm/Bytecode/Reader.h - Reader for VM bytecode files ---*- C++ -*-===//
|
2005-04-21 22:39:54 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02: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 22:39:54 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2002-10-26 00:53:56 +02:00
|
|
|
// This functionality is implemented by the lib/Bytecode/Reader library.
|
2001-06-06 22:29:01 +02:00
|
|
|
// This library is used to read VM bytecode files from an iostream.
|
|
|
|
//
|
|
|
|
// Note that performance of this library is _crucial_ for performance of the
|
|
|
|
// JIT type applications, so we have designed the bytecode format to support
|
|
|
|
// quick reading.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_BYTECODE_READER_H
|
|
|
|
#define LLVM_BYTECODE_READER_H
|
|
|
|
|
2004-11-06 09:54:47 +01:00
|
|
|
#include "llvm/System/Path.h"
|
2003-09-23 01:36:33 +02:00
|
|
|
#include "llvm/ModuleProvider.h"
|
2004-09-11 06:29:13 +02:00
|
|
|
#include "llvm/Module.h"
|
2001-06-06 22:29:01 +02:00
|
|
|
#include <string>
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2004-06-30 01:20:03 +02:00
|
|
|
// Forward declare the handler class
|
|
|
|
class BytecodeHandler;
|
|
|
|
|
2003-09-23 01:40:38 +02:00
|
|
|
/// getBytecodeModuleProvider - lazy function-at-a-time loading from a file
|
2003-09-23 01:36:33 +02:00
|
|
|
///
|
2004-06-30 01:20:03 +02:00
|
|
|
ModuleProvider *getBytecodeModuleProvider(
|
|
|
|
const std::string &Filename, ///< Name of file to be read
|
|
|
|
BytecodeHandler* H = 0 ///< Optional handler for reader events
|
|
|
|
);
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2003-09-23 01:40:38 +02:00
|
|
|
/// getBytecodeBufferModuleProvider - lazy function-at-a-time loading from a
|
|
|
|
/// buffer
|
2003-09-23 01:36:33 +02:00
|
|
|
///
|
2003-10-04 22:14:59 +02:00
|
|
|
ModuleProvider *getBytecodeBufferModuleProvider(const unsigned char *Buffer,
|
|
|
|
unsigned BufferSize,
|
2004-06-30 01:20:03 +02:00
|
|
|
const std::string &ModuleID="",
|
2005-04-22 05:27:20 +02:00
|
|
|
BytecodeHandler* H = 0);
|
2003-09-23 01:36:33 +02:00
|
|
|
|
2004-08-25 00:49:07 +02:00
|
|
|
/// @brief Parse the given bytecode file
|
2003-09-23 01:36:33 +02:00
|
|
|
Module* ParseBytecodeFile(const std::string &Filename,
|
2002-01-20 23:54:45 +01:00
|
|
|
std::string *ErrorStr = 0);
|
2003-09-23 01:36:33 +02:00
|
|
|
|
2004-08-25 00:49:07 +02:00
|
|
|
/// @brief Parse a given bytecode buffer
|
2003-09-23 01:36:33 +02:00
|
|
|
Module* ParseBytecodeBuffer(const unsigned char *Buffer,
|
|
|
|
unsigned BufferSize,
|
2003-09-23 01:40:38 +02:00
|
|
|
const std::string &ModuleID = "",
|
2003-03-06 17:50:21 +01:00
|
|
|
std::string *ErrorStr = 0);
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2004-08-25 00:49:07 +02:00
|
|
|
/// This function will read only the necessary parts of a bytecode file in order
|
|
|
|
/// to determine the list of dependent libraries encoded within it. The \p
|
|
|
|
/// deplibs parameter will contain a vector of strings of the bytecode module's
|
|
|
|
/// dependent libraries.
|
|
|
|
/// @returns true on success, false otherwise
|
|
|
|
/// @brief Get the list of dependent libraries from a bytecode file.
|
2005-04-21 22:39:54 +02:00
|
|
|
bool GetBytecodeDependentLibraries(const std::string &fileName,
|
2004-09-11 06:29:13 +02:00
|
|
|
Module::LibraryListType& deplibs);
|
2004-08-25 00:49:07 +02:00
|
|
|
|
2004-11-06 09:54:47 +01:00
|
|
|
/// This function will read only the necessary parts of a bytecode file in order
|
|
|
|
/// to obtain a list of externally visible global symbols that the bytecode
|
2005-04-21 22:39:54 +02:00
|
|
|
/// module defines. This is used for archiving and linking when only the list
|
2004-11-06 09:54:47 +01:00
|
|
|
/// of symbols the module defines is needed.
|
|
|
|
/// @returns true on success, false otherwise
|
|
|
|
/// @brief Get a bytecode file's externally visibile defined global symbols.
|
2005-04-21 22:39:54 +02:00
|
|
|
bool GetBytecodeSymbols(const sys::Path& fileName,
|
2004-11-06 09:54:47 +01:00
|
|
|
std::vector<std::string>& syms);
|
|
|
|
|
2004-11-14 22:48:27 +01:00
|
|
|
/// This function will read only the necessary parts of a bytecode buffer in
|
2005-04-21 22:39:54 +02:00
|
|
|
/// order to obtain a list of externally visible global symbols that the
|
|
|
|
/// bytecode module defines. This is used for archiving and linking when only
|
2004-11-14 22:48:27 +01:00
|
|
|
/// the list of symbols the module defines is needed and the bytecode is
|
|
|
|
/// already in memory.
|
2004-11-15 02:20:11 +01:00
|
|
|
/// @returns the ModuleProvider on success, 0 if the bytecode can't be parsed
|
2004-11-14 22:48:27 +01:00
|
|
|
/// @brief Get a bytecode file's externally visibile defined global symbols.
|
2004-11-15 22:27:05 +01:00
|
|
|
ModuleProvider* GetBytecodeSymbols(
|
2004-11-15 02:20:11 +01:00
|
|
|
const unsigned char*Buffer, ///< The buffer to be parsed
|
|
|
|
unsigned Length, ///< The length of \p Buffer
|
|
|
|
const std::string& ModuleID, ///< An identifier for the module
|
|
|
|
std::vector<std::string>& symbols ///< The symbols defined in the module
|
|
|
|
);
|
2003-04-19 23:45:52 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
#endif
|