5a75308c770daa5d9976508109788cad0b29a6aa
[oota-llvm.git] / include / llvm / AsmParser / Parser.h
1 //===-- Parser.h - Parser for LLVM IR text assembly files -------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  These classes are implemented by the lib/AsmParser library.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ASMPARSER_PARSER_H
15 #define LLVM_ASMPARSER_PARSER_H
16
17 #include <memory>
18 #include <string>
19
20 namespace llvm {
21
22 class Module;
23 class MemoryBuffer;
24 class SMDiagnostic;
25 class LLVMContext;
26
27 /// This function is the main interface to the LLVM Assembly Parser. It parses
28 /// an ASCII file that (presumably) contains LLVM Assembly code. It returns a
29 /// Module (intermediate representation) with the corresponding features. Note
30 /// that this does not verify that the generated Module is valid, so you should
31 /// run the verifier after parsing the file to check that it is okay.
32 /// @brief Parse LLVM Assembly from a file
33 Module *ParseAssemblyFile(
34   const std::string &Filename, ///< The name of the file to parse
35   SMDiagnostic &Error,         ///< Error result info.
36   LLVMContext &Context         ///< Context in which to allocate globals info.
37 );
38
39 /// The function is a secondary interface to the LLVM Assembly Parser. It parses
40 /// an ASCII string that (presumably) contains LLVM Assembly code. It returns a
41 /// Module (intermediate representation) with the corresponding features. Note
42 /// that this does not verify that the generated Module is valid, so you should
43 /// run the verifier after parsing the file to check that it is okay.
44 /// @brief Parse LLVM Assembly from a string
45 Module *ParseAssemblyString(
46   const char *AsmString, ///< The string containing assembly
47   Module *M,             ///< A module to add the assembly too.
48   SMDiagnostic &Error,   ///< Error result info.
49   LLVMContext &Context
50 );
51
52 /// This function is the low-level interface to the LLVM Assembly Parser.
53 /// ParseAssemblyFile and ParseAssemblyString are wrappers around this function.
54 /// @brief Parse LLVM Assembly from a MemoryBuffer.
55 Module *ParseAssembly(
56     std::unique_ptr<MemoryBuffer> F, ///< The MemoryBuffer containing assembly
57     Module *M,                       ///< A module to add the assembly too.
58     SMDiagnostic &Err,               ///< Error result info.
59     LLVMContext &Context);
60
61 } // End llvm namespace
62
63 #endif