X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FAsmParser%2FParser.cpp;h=e511cbe29c756d6cb63559655f665c28ab74edd6;hb=62b50656ceb854eb0be265d63b2a1d46e7400d8a;hp=c6caa4547320c9532fce15849a03c9407b1d4b17;hpb=b576c94c15af9a440f69d9d03c2afead7971118c;p=oota-llvm.git diff --git a/lib/AsmParser/Parser.cpp b/lib/AsmParser/Parser.cpp index c6caa454732..e511cbe29c7 100644 --- a/lib/AsmParser/Parser.cpp +++ b/lib/AsmParser/Parser.cpp @@ -1,83 +1,63 @@ -//===- Parser.cpp - Main dispatch module for the Parser library -------------=== -// +//===- Parser.cpp - Main dispatch module for the Parser library -----------===// +// // The LLVM Compiler Infrastructure // -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. -// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// //===----------------------------------------------------------------------===// // -// This library implements the functionality defined in llvm/assembly/parser.h +// This library implements the functionality defined in llvm/Assembly/Parser.h // -//===------------------------------------------------------------------------=== +//===----------------------------------------------------------------------===// -#include "llvm/Analysis/Verifier.h" +#include "llvm/Assembly/Parser.h" +#include "LLParser.h" #include "llvm/Module.h" -#include "ParserInternals.h" -using std::string; - -// 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 *ParseAssemblyFile(const string &Filename) { // throw (ParseException) - FILE *F = stdin; - - if (Filename != "-") { - F = fopen(Filename.c_str(), "r"); - - if (F == 0) - throw ParseException(Filename, "Could not open file '" + Filename + "'"); - } - - 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 - } - - if (F != stdin) - fclose(F); - - return Result; +#include "llvm/ADT/OwningPtr.h" +#include "llvm/Support/SourceMgr.h" +#include "llvm/Support/MemoryBuffer.h" +#include "llvm/Support/raw_ostream.h" +#include +using namespace llvm; + +Module *llvm::ParseAssembly(MemoryBuffer *F, + Module *M, + SMDiagnostic &Err, + LLVMContext &Context) { + SourceMgr SM; + SM.AddNewSourceBuffer(F, SMLoc()); + + // If we are parsing into an existing module, do it. + if (M) + return LLParser(F, SM, Err, M).Run() ? 0 : M; + + // Otherwise create a new module. + OwningPtr M2(new Module(F->getBufferIdentifier(), Context)); + if (LLParser(F, SM, Err, M2.get()).Run()) + return 0; + return M2.take(); } +Module *llvm::ParseAssemblyFile(const std::string &Filename, SMDiagnostic &Err, + LLVMContext &Context) { + std::string ErrorStr; + MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrorStr); + if (F == 0) { + Err = SMDiagnostic(Filename, + "Could not open input file '" + Filename + "': " + + ErrorStr); + return 0; + } -//===------------------------------------------------------------------------=== -// ParseException Class -//===------------------------------------------------------------------------=== - - -ParseException::ParseException(const string &filename, const string &message, - int lineNo, int colNo) - : Filename(filename), Message(message) { - LineNo = lineNo; ColumnNo = colNo; -} - -ParseException::ParseException(const ParseException &E) - : Filename(E.Filename), Message(E.Message) { - LineNo = E.LineNo; - ColumnNo = E.ColumnNo; + return ParseAssembly(F, 0, Err, Context); } -const string ParseException::getMessage() const { // Includes info from options - string Result; - char Buffer[10]; +Module *llvm::ParseAssemblyString(const char *AsmString, Module *M, + SMDiagnostic &Err, LLVMContext &Context) { + MemoryBuffer *F = + MemoryBuffer::getMemBuffer(StringRef(AsmString, strlen(AsmString)), + ""); - if (Filename == "-") - Result += ""; - else - Result += Filename; - - if (LineNo != -1) { - sprintf(Buffer, "%d", LineNo); - Result += string(":") + Buffer; - if (ColumnNo != -1) { - sprintf(Buffer, "%d", ColumnNo); - Result += string(",") + Buffer; - } - } - - return Result + ": " + Message; + return ParseAssembly(F, M, Err, Context); }