2003-10-01 02:37:50 +08:00
|
|
|
//===-- llvm/Assembly/Parser.h - Parser for VM assembly files ---*- C++ -*-===//
|
2005-04-22 04:19:05 +08:00
|
|
|
//
|
2003-10-21 04:19:47 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 03:59:42 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 04:19:05 +08:00
|
|
|
//
|
2003-10-21 04:19:47 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-07 04:29:01 +08:00
|
|
|
//
|
2002-08-31 06:51:21 +08:00
|
|
|
// These classes are implemented by the lib/AsmParser library.
|
2001-06-07 04:29:01 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ASSEMBLY_PARSER_H
|
|
|
|
#define LLVM_ASSEMBLY_PARSER_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
namespace llvm {
|
|
|
|
|
2001-06-07 04:29:01 +08:00
|
|
|
class Module;
|
2009-09-03 01:18:19 +08:00
|
|
|
class MemoryBuffer;
|
2009-07-03 06:46:18 +08:00
|
|
|
class SMDiagnostic;
|
2009-01-02 15:01:27 +08:00
|
|
|
class raw_ostream;
|
2009-08-12 01:45:13 +08:00
|
|
|
class LLVMContext;
|
2006-08-18 16:43:06 +08:00
|
|
|
|
2009-01-01 01:44:36 +08:00
|
|
|
/// This function is the main interface to the LLVM Assembly Parser. It parses
|
|
|
|
/// an ASCII file that (presumably) contains LLVM Assembly code. It returns a
|
2006-08-18 16:43:06 +08:00
|
|
|
/// Module (intermediate representation) with the corresponding features. Note
|
|
|
|
/// that this does not verify that the generated Module is valid, so you should
|
|
|
|
/// run the verifier after parsing the file to check that it is okay.
|
|
|
|
/// @brief Parse LLVM Assembly from a file
|
|
|
|
Module *ParseAssemblyFile(
|
|
|
|
const std::string &Filename, ///< The name of the file to parse
|
2009-07-03 06:46:18 +08:00
|
|
|
SMDiagnostic &Error, ///< Error result info.
|
|
|
|
LLVMContext &Context ///< Context in which to allocate globals info.
|
2006-08-18 16:43:06 +08:00
|
|
|
);
|
|
|
|
|
2009-01-01 01:44:36 +08:00
|
|
|
/// The function is a secondary interface to the LLVM Assembly Parser. It parses
|
|
|
|
/// an ASCII string that (presumably) contains LLVM Assembly code. It returns a
|
2006-08-18 16:43:06 +08:00
|
|
|
/// Module (intermediate representation) with the corresponding features. Note
|
|
|
|
/// that this does not verify that the generated Module is valid, so you should
|
|
|
|
/// run the verifier after parsing the file to check that it is okay.
|
|
|
|
/// @brief Parse LLVM Assembly from a string
|
|
|
|
Module *ParseAssemblyString(
|
2009-01-02 15:01:27 +08:00
|
|
|
const char *AsmString, ///< The string containing assembly
|
|
|
|
Module *M, ///< A module to add the assembly too.
|
2009-07-03 06:46:18 +08:00
|
|
|
SMDiagnostic &Error, ///< Error result info.
|
|
|
|
LLVMContext &Context
|
2006-08-18 16:43:06 +08:00
|
|
|
);
|
2001-06-07 04:29:01 +08:00
|
|
|
|
2009-09-03 01:18:19 +08:00
|
|
|
/// This function is the low-level interface to the LLVM Assembly Parser.
|
|
|
|
/// ParseAssemblyFile and ParseAssemblyString are wrappers around this function.
|
2009-09-03 03:21:56 +08:00
|
|
|
/// @brief Parse LLVM Assembly from a MemoryBuffer. This function *always*
|
|
|
|
/// takes ownership of the MemoryBuffer.
|
2009-09-03 01:18:19 +08:00
|
|
|
Module *ParseAssembly(
|
|
|
|
MemoryBuffer *F, ///< The MemoryBuffer containing assembly
|
|
|
|
Module *M, ///< A module to add the assembly too.
|
|
|
|
SMDiagnostic &Err, ///< Error result info.
|
|
|
|
LLVMContext &Context
|
|
|
|
);
|
|
|
|
|
2003-11-12 06:41:34 +08:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-07 04:29:01 +08:00
|
|
|
#endif
|