summaryrefslogtreecommitdiff
path: root/lib/AsmParser/Parser.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-18 08:43:06 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-18 08:43:06 +0000
commit61c83e023fe618ca7b4fdc846039933e61a00ec9 (patch)
treee491ad2dc8f630614952fa612f602a39c34bed1e /lib/AsmParser/Parser.cpp
parentfd90dd5d5513f9e7130bab0da334ad2ad8ef4e02 (diff)
downloadllvm-61c83e023fe618ca7b4fdc846039933e61a00ec9.tar.gz
llvm-61c83e023fe618ca7b4fdc846039933e61a00ec9.tar.bz2
llvm-61c83e023fe618ca7b4fdc846039933e61a00ec9.tar.xz
For PR797:
Rid the Assembly Parser of exceptions. This is a really gross hack but it will do until the Assembly Parser is re-written as a recursive descent. The basic premise is that wherever the old "ThrowException" function was called (new name: GenerateError) we set a flag (TriggerError). Every production checks that flag and calls YYERROR if it is set. Additionally, each call to ThrowException in the grammar is replaced with GEN_ERROR which calls GenerateError and then YYERROR immediately. This prevents the remaining production from continuing after an error condition. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29763 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/Parser.cpp')
-rw-r--r--lib/AsmParser/Parser.cpp48
1 files changed, 26 insertions, 22 deletions
diff --git a/lib/AsmParser/Parser.cpp b/lib/AsmParser/Parser.cpp
index 7bb4f0a362..b7921f8305 100644
--- a/lib/AsmParser/Parser.cpp
+++ b/lib/AsmParser/Parser.cpp
@@ -15,26 +15,24 @@
#include "llvm/Module.h"
using namespace llvm;
-// The useful interface defined by this file... Parse an ASCII file, and return
-// the internal representation in a nice slice'n'dice'able representation.
-//
-Module *llvm::ParseAssemblyFile(const std::string &Filename) {
+
+ParseError* TheParseError = 0; /// FIXME: Not threading friendly
+
+Module *llvm::ParseAssemblyFile(const std::string &Filename, ParseError* Err) {
FILE *F = stdin;
if (Filename != "-") {
F = fopen(Filename.c_str(), "r");
- if (F == 0)
- throw ParseException(Filename, "Could not open file '" + Filename + "'");
+ if (F == 0) {
+ if (Err)
+ Err->setError(Filename,"Could not open file '" + Filename + "'");
+ return 0;
+ }
}
- Module *Result;
- try {
- Result = RunVMAsmParser(Filename, F);
- } catch (...) {
- if (F != stdin) fclose(F); // Make sure to close file descriptor if an
- throw; // exception is thrown
- }
+ TheParseError = Err;
+ Module *Result = RunVMAsmParser(Filename, F);
if (F != stdin)
fclose(F);
@@ -42,31 +40,37 @@ Module *llvm::ParseAssemblyFile(const std::string &Filename) {
return Result;
}
-Module *llvm::ParseAssemblyString(const char * AsmString, Module * M) {
+Module *llvm::ParseAssemblyString(
+ const char * AsmString, Module * M, ParseError* Err)
+{
+ TheParseError = Err;
return RunVMAsmParser(AsmString, M);
}
//===------------------------------------------------------------------------===
-// ParseException Class
+// ParseError Class
//===------------------------------------------------------------------------===
-ParseException::ParseException(const std::string &filename,
- const std::string &message,
- int lineNo, int colNo)
- : Filename(filename), Message(message) {
- LineNo = lineNo; ColumnNo = colNo;
+void ParseError::setError(const std::string &filename,
+ const std::string &message,
+ int lineNo, int colNo)
+{
+ Filename = filename;
+ Message = message;
+ LineNo = lineNo;
+ colNo = colNo;
}
-ParseException::ParseException(const ParseException &E)
+ParseError::ParseError(const ParseError &E)
: Filename(E.Filename), Message(E.Message) {
LineNo = E.LineNo;
ColumnNo = E.ColumnNo;
}
// Includes info from options
-const std::string ParseException::getMessage() const {
+const std::string ParseError::getMessage() const {
std::string Result;
char Buffer[10];