mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
df98617b23
and clean recursive descent parser. This change has a couple of ramifications: 1. The parser code is about 400 lines shorter (in what we maintain, not including what is autogenerated). 2. The code should be significantly faster than the old code because we don't have to work around bison's poor handling of datatypes with ctors/dtors. This also makes the code much more resistant to memory leaks. 3. We now get caret diagnostics from the .ll parser, woo. 4. The actual diagnostics emited from the parser are completely different so a bunch of testcases had to be updated. 5. I now disallow "%ty = type opaque %ty = type i32". There was no good reason to support this, it was just an accident of the old implementation. I have no reason to think that anyone is actually using this. 6. The syntax for sticking a global variable has changed to make it unambiguous. I don't think anyone is depending on this since only clang supports this and it is not solid yet, so I'm not worried about anything breaking. 7. This gets rid of the last use of bison, and along with it the .cvs files. I'll prune this from the makefiles as a subsequent commit. There are a few minor cleanups that can be done after this commit (suggestions welcome!) but this passes dejagnu testing and is ready for its time in the limelight. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61558 91177308-0d34-0410-b5e6-96231b3b80d8
107 lines
3.9 KiB
C++
107 lines
3.9 KiB
C++
//===-- llvm/Assembly/Parser.h - Parser for VM assembly files ---*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// These classes are implemented by the lib/AsmParser library.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_ASSEMBLY_PARSER_H
|
|
#define LLVM_ASSEMBLY_PARSER_H
|
|
|
|
#include <string>
|
|
|
|
namespace llvm {
|
|
|
|
class Module;
|
|
class ParseError;
|
|
class raw_ostream;
|
|
|
|
/// 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
|
|
/// 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
|
|
ParseError &Error ///< If not null, an object to return errors in.
|
|
);
|
|
|
|
/// 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
|
|
/// 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(
|
|
const char *AsmString, ///< The string containing assembly
|
|
Module *M, ///< A module to add the assembly too.
|
|
ParseError &Error ///< If not null, an object to return errors in.
|
|
);
|
|
|
|
//===------------------------------------------------------------------------===
|
|
// Helper Classes
|
|
//===------------------------------------------------------------------------===
|
|
|
|
/// An instance of this class can be passed to ParseAssemblyFile or
|
|
/// ParseAssemblyString functions in order to capture error information from
|
|
/// the parser. It provides a standard way to print out the error message
|
|
/// including the file name and line number where the error occurred.
|
|
/// @brief An LLVM Assembly Parsing Error Object
|
|
class ParseError {
|
|
public:
|
|
ParseError() : Filename("unknown"), Message("none"), LineNo(0), ColumnNo(0) {}
|
|
ParseError(const ParseError &E);
|
|
|
|
void setFilename(const std::string &F) { Filename = F; }
|
|
|
|
// getMessage - Return the message passed in at construction time plus extra
|
|
// information extracted from the options used to parse with...
|
|
//
|
|
const std::string getMessage() const;
|
|
|
|
inline const std::string &getRawMessage() const { // Just the raw message...
|
|
return Message;
|
|
}
|
|
|
|
inline const std::string &getFilename() const {
|
|
return Filename;
|
|
}
|
|
|
|
void setError(const std::string &message, int lineNo = -1, int ColNo = -1,
|
|
const std::string &FileContents = "") {
|
|
Message = message;
|
|
LineNo = lineNo; ColumnNo = ColNo;
|
|
LineContents = FileContents;
|
|
}
|
|
|
|
// getErrorLocation - Return the line and column number of the error in the
|
|
// input source file. The source filename can be derived from the
|
|
// ParserOptions in effect. If positional information is not applicable,
|
|
// these will return a value of -1.
|
|
//
|
|
inline void getErrorLocation(int &Line, int &Column) const {
|
|
Line = LineNo; Column = ColumnNo;
|
|
}
|
|
|
|
void PrintError(const char *ProgName, raw_ostream &S);
|
|
|
|
private :
|
|
std::string Filename;
|
|
std::string Message;
|
|
int LineNo, ColumnNo; // -1 if not relevant
|
|
std::string LineContents;
|
|
|
|
void operator=(const ParseError &E); // DO NOT IMPLEMENT
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
#endif
|