summaryrefslogtreecommitdiff
path: root/tools
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 /tools
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 'tools')
-rw-r--r--tools/bugpoint/BugDriver.cpp13
-rw-r--r--tools/gccas/gccas.cpp13
-rw-r--r--tools/llvm-as/llvm-as.cpp8
-rw-r--r--tools/opt/opt.cpp14
4 files changed, 15 insertions, 33 deletions
diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp
index 9d82e8b3cc..e499477630 100644
--- a/tools/bugpoint/BugDriver.cpp
+++ b/tools/bugpoint/BugDriver.cpp
@@ -73,15 +73,10 @@ BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs,
/// return it, or return null if not possible.
///
Module *llvm::ParseInputFile(const std::string &InputFilename) {
- Module *Result = 0;
- try {
- Result = ParseBytecodeFile(InputFilename);
- if (!Result && !(Result = ParseAssemblyFile(InputFilename))){
- std::cerr << "bugpoint: could not read input file '"
- << InputFilename << "'!\n";
- }
- } catch (const ParseException &E) {
- std::cerr << "bugpoint: " << E.getMessage() << '\n';
+ ParseError Err;
+ Module *Result = ParseBytecodeFile(InputFilename);
+ if (!Result && !(Result = ParseAssemblyFile(InputFilename,&Err))) {
+ std::cerr << "bugpoint: " << Err.getMessage() << "\n";
Result = 0;
}
return Result;
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index aeef9b135b..c46b29608a 100644
--- a/tools/gccas/gccas.cpp
+++ b/tools/gccas/gccas.cpp
@@ -137,17 +137,10 @@ int main(int argc, char **argv) {
" llvm .s -> .o assembler for GCC\n");
sys::PrintStackTraceOnErrorSignal();
- std::auto_ptr<Module> M;
- try {
- // Parse the file now...
- M.reset(ParseAssemblyFile(InputFilename));
- } catch (const ParseException &E) {
- std::cerr << argv[0] << ": " << E.getMessage() << "\n";
- return 1;
- }
-
+ ParseError Err;
+ std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename,&Err));
if (M.get() == 0) {
- std::cerr << argv[0] << ": assembly didn't read correctly.\n";
+ std::cerr << argv[0] << ": " << Err.getMessage() << "\n";
return 1;
}
diff --git a/tools/llvm-as/llvm-as.cpp b/tools/llvm-as/llvm-as.cpp
index 9547ad13e2..4a1b9adb00 100644
--- a/tools/llvm-as/llvm-as.cpp
+++ b/tools/llvm-as/llvm-as.cpp
@@ -57,9 +57,10 @@ int main(int argc, char **argv) {
std::ostream *Out = 0;
try {
// Parse the file now...
- std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename));
+ ParseError Err;
+ std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename,&Err));
if (M.get() == 0) {
- std::cerr << argv[0] << ": assembly didn't read correctly.\n";
+ std::cerr << argv[0] << ": " << Err.getMessage() << "\n";
return 1;
}
@@ -129,9 +130,6 @@ int main(int argc, char **argv) {
if (Force || !CheckBytecodeOutputToConsole(Out,true)) {
WriteBytecodeToFile(M.get(), *Out, !NoCompress);
}
- } catch (const ParseException &E) {
- std::cerr << argv[0] << ": " << E.getMessage() << "\n";
- exitCode = 1;
} catch (const std::string& msg) {
std::cerr << argv[0] << ": " << msg << "\n";
exitCode = 1;
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index b67892bb34..18b4a8c157 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -169,17 +169,13 @@ int main(int argc, char **argv) {
if (AnalyzeOnly) {
Module *CurMod = 0;
- try {
#if 0
- TimeRegion RegionTimer(BytecodeLoadTimer);
+ TimeRegion RegionTimer(BytecodeLoadTimer);
#endif
- CurMod = ParseBytecodeFile(InputFilename);
- if (!CurMod && !(CurMod = ParseAssemblyFile(InputFilename))){
- std::cerr << argv[0] << ": input file didn't read correctly.\n";
- return 1;
- }
- } catch (const ParseException &E) {
- std::cerr << argv[0] << ": " << E.getMessage() << "\n";
+ CurMod = ParseBytecodeFile(InputFilename);
+ ParseError Err;
+ if (!CurMod && !(CurMod = ParseAssemblyFile(InputFilename,&Err))){
+ std::cerr << argv[0] << ": " << Err.getMessage() << "\n";
return 1;
}