X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FAsmParser%2FParser.cpp;h=2e76c0ecc45bcbd23fd82267f2d356d0465a8dae;hb=93a23a3bd468b78a9f550a21d70ce2525962f235;hp=6dbb60f135cb8a7f202a22cf4e213d383c7064d6;hpb=8e3a8e0452695643d04c21e15c94b802aef81bae;p=oota-llvm.git diff --git a/lib/AsmParser/Parser.cpp b/lib/AsmParser/Parser.cpp index 6dbb60f135c..2e76c0ecc45 100644 --- a/lib/AsmParser/Parser.cpp +++ b/lib/AsmParser/Parser.cpp @@ -1,90 +1,64 @@ -//===- 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/AsmParser/Parser.h // -//===------------------------------------------------------------------------=== +//===----------------------------------------------------------------------===// -#include "ParserInternals.h" -#include "llvm/Module.h" +#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; +bool llvm::parseAssemblyInto(MemoryBufferRef F, Module &M, SMDiagnostic &Err) { + SourceMgr SM; + std::unique_ptr Buf = MemoryBuffer::getMemBuffer(F, false); + SM.AddNewSourceBuffer(std::move(Buf), SMLoc()); -ParseError* TheParseError = 0; /// FIXME: Not threading friendly - -Module *llvm::ParseAssemblyFile(const std::string &Filename, ParseError* Err) { - 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(F); - delete F; - return Result; -} - -Module *llvm::ParseAssemblyString(const char *AsmString, Module *M, - ParseError *Err) { - TheParseError = Err; - MemoryBuffer *F = MemoryBuffer::getMemBuffer(AsmString, - AsmString+strlen(AsmString), - ""); - Module *Result = RunVMAsmParser(F); - delete F; - 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); -//===------------------------------------------------------------------------=== -// ParseError Class -//===------------------------------------------------------------------------=== - + if (parseAssemblyInto(F, *M, Err)) + return nullptr; -void ParseError::setError(const std::string &filename, - const std::string &message, - int lineNo, int colNo) { - Filename = filename; - Message = message; - LineNo = lineNo; - colNo = colNo; + return M; } -ParseError::ParseError(const ParseError &E) - : Filename(E.Filename), Message(E.Message) { - LineNo = E.LineNo; - ColumnNo = E.ColumnNo; -} - -// Includes info from options -const std::string ParseError::getMessage() const { - std::string Result; - char Buffer[10]; - - if (Filename == "-") - Result += ""; - else - Result += Filename; - - if (LineNo != -1) { - sprintf(Buffer, "%d", LineNo); - Result += std::string(":") + Buffer; - if (ColumnNo != -1) { - sprintf(Buffer, "%d", ColumnNo); - Result += std::string(",") + Buffer; - } +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; } - return Result + ": " + Message; + return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context); +} + +std::unique_ptr llvm::parseAssemblyString(StringRef AsmString, + SMDiagnostic &Err, + LLVMContext &Context) { + MemoryBufferRef F(AsmString, ""); + return parseAssembly(F, Err, Context); }