diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-18 08:46:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-18 08:46:26 +0000 |
commit | 660c6b9a92f9102c2ff235698882df57768d365e (patch) | |
tree | f714061c1483d1e84517811214667a3d7aa34828 /llvm/lib/AsmParser/Parser.cpp | |
parent | 607002873635febd8b04b404f2d6ab76ca4b89b2 (diff) | |
download | bcm5719-llvm-660c6b9a92f9102c2ff235698882df57768d365e.tar.gz bcm5719-llvm-660c6b9a92f9102c2ff235698882df57768d365e.zip |
Replace the original flex lexer with a hand writen one. This
drops a dependency on flex and lets us make future progress more
easily. Yay for 2 fewer .cvs files to make silly conflicts with.
llvm-svn: 44213
Diffstat (limited to 'llvm/lib/AsmParser/Parser.cpp')
-rw-r--r-- | llvm/lib/AsmParser/Parser.cpp | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/llvm/lib/AsmParser/Parser.cpp b/llvm/lib/AsmParser/Parser.cpp index b7921f83058..6dbb60f135c 100644 --- a/llvm/lib/AsmParser/Parser.cpp +++ b/llvm/lib/AsmParser/Parser.cpp @@ -13,38 +13,37 @@ #include "ParserInternals.h" #include "llvm/Module.h" +#include "llvm/Support/MemoryBuffer.h" using namespace llvm; 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) { - if (Err) - Err->setError(Filename,"Could not open file '" + Filename + "'"); - return 0; - } + std::string ErrorStr; + MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(&Filename[0], Filename.size(), + &ErrorStr); + if (F == 0) { + if (Err) + Err->setError(Filename, "Could not open input file '" + Filename + "'"); + return 0; } - + TheParseError = Err; - Module *Result = RunVMAsmParser(Filename, F); - - if (F != stdin) - fclose(F); - + Module *Result = RunVMAsmParser(F); + delete F; return Result; } -Module *llvm::ParseAssemblyString( - const char * AsmString, Module * M, ParseError* Err) -{ +Module *llvm::ParseAssemblyString(const char *AsmString, Module *M, + ParseError *Err) { TheParseError = Err; - return RunVMAsmParser(AsmString, M); + MemoryBuffer *F = MemoryBuffer::getMemBuffer(AsmString, + AsmString+strlen(AsmString), + "<string>"); + Module *Result = RunVMAsmParser(F); + delete F; + return Result; } @@ -54,9 +53,8 @@ Module *llvm::ParseAssemblyString( void ParseError::setError(const std::string &filename, - const std::string &message, - int lineNo, int colNo) -{ + const std::string &message, + int lineNo, int colNo) { Filename = filename; Message = message; LineNo = lineNo; |