X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FAsmParser%2FParser.cpp;h=c55a6a1e243ca2d5f27b937ff4218d401a4db592;hb=6d7e69b227644aff80003736550c39ee9009f5b0;hp=05547ee099c85eb14c39e3bef84a3d636c1323ea;hpb=32299911657651ea6738d5ce085803dc7b991d34;p=oota-llvm.git diff --git a/lib/AsmParser/Parser.cpp b/lib/AsmParser/Parser.cpp index 05547ee099c..c55a6a1e243 100644 --- a/lib/AsmParser/Parser.cpp +++ b/lib/AsmParser/Parser.cpp @@ -1,76 +1,64 @@ -//===- Parser.cpp - Main dispatch module for the Parser library -------------=== +//===- Parser.cpp - Main dispatch module for the Parser library -----------===// // -// This library implements the functionality defined in llvm/assembly/parser.h +// The LLVM Compiler Infrastructure // -//===------------------------------------------------------------------------=== - -#include "llvm/Analysis/Verifier.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. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // -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 + "'"); - } +//===----------------------------------------------------------------------===// +// +// This library implements the functionality defined in llvm/AsmParser/Parser.h +// +//===----------------------------------------------------------------------===// - 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 - } +#include "llvm/AsmParser/Parser.h" +#include "LLParser.h" +#include "llvm/ADT/STLExtras.h" +#include "llvm/IR/Module.h" +#include "llvm/Support/MemoryBuffer.h" +#include "llvm/Support/SourceMgr.h" +#include "llvm/Support/raw_ostream.h" +#include +#include +using namespace llvm; - if (F != stdin) - fclose(F); +bool llvm::parseAssemblyInto(MemoryBufferRef F, Module &M, SMDiagnostic &Err) { + SourceMgr SM; + std::unique_ptr Buf = MemoryBuffer::getMemBuffer(F); + SM.AddNewSourceBuffer(std::move(Buf), SMLoc()); - return Result; + return LLParser(F.getBuffer(), SM, Err, &M).Run(); } +std::unique_ptr llvm::parseAssembly(MemoryBufferRef F, + SMDiagnostic &Err, + LLVMContext &Context) { + std::unique_ptr M = + make_unique(F.getBufferIdentifier(), Context); -//===------------------------------------------------------------------------=== -// ParseException Class -//===------------------------------------------------------------------------=== - - -ParseException::ParseException(const string &filename, const string &message, - int lineNo, int colNo) - : Filename(filename), Message(message) { - LineNo = lineNo; ColumnNo = colNo; -} + if (parseAssemblyInto(F, *M, Err)) + return nullptr; -ParseException::ParseException(const ParseException &E) - : Filename(E.Filename), Message(E.Message) { - LineNo = E.LineNo; - ColumnNo = E.ColumnNo; + return M; } -const string ParseException::getMessage() const { // Includes info from options - string Result; - char Buffer[10]; +std::unique_ptr llvm::parseAssemblyFile(StringRef Filename, + SMDiagnostic &Err, + LLVMContext &Context) { + ErrorOr> FileOrErr = + MemoryBuffer::getFileOrSTDIN(Filename); + if (std::error_code EC = FileOrErr.getError()) { + Err = SMDiagnostic(Filename, SourceMgr::DK_Error, + "Could not open input file: " + EC.message()); + return nullptr; + } - if (Filename == "-") - Result += ""; - else - Result += Filename; + return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context); +} - if (LineNo != -1) { - sprintf(Buffer, "%d", LineNo); - Result += string(":") + Buffer; - if (ColumnNo != -1) { - sprintf(Buffer, "%d", ColumnNo); - Result += string(",") + Buffer; - } - } - - return Result + ": " + Message; +std::unique_ptr llvm::parseAssemblyString(StringRef AsmString, + SMDiagnostic &Err, + LLVMContext &Context) { + MemoryBufferRef F(AsmString, ""); + return parseAssembly(F, Err, Context); }