2009-01-02 07:01:27 +00:00
|
|
|
//===- Parser.cpp - Main dispatch module for the Parser library -----------===//
|
2005-04-21 21:10:11 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 21:10:11 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2014-01-07 12:34:26 +00:00
|
|
|
// This library implements the functionality defined in llvm/AsmParser/Parser.h
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2009-01-02 07:01:27 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2014-01-07 12:34:26 +00:00
|
|
|
#include "llvm/AsmParser/Parser.h"
|
2009-01-02 07:01:27 +00:00
|
|
|
#include "LLParser.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
2007-11-18 08:46:26 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2009-01-02 07:01:27 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-02-20 11:08:44 +00:00
|
|
|
#include <cstring>
|
2014-06-12 17:38:55 +00:00
|
|
|
#include <system_error>
|
2004-07-13 08:42:12 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2014-08-26 21:49:01 +00:00
|
|
|
bool llvm::parseAssemblyInto(MemoryBufferRef F, Module &M, SMDiagnostic &Err) {
|
2009-09-02 17:18:19 +00:00
|
|
|
SourceMgr SM;
|
2014-08-26 21:49:01 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(F, false);
|
|
|
|
SM.AddNewSourceBuffer(std::move(Buf), SMLoc());
|
2009-09-02 17:18:19 +00:00
|
|
|
|
2014-08-26 21:49:01 +00:00
|
|
|
return LLParser(F.getBuffer(), SM, Err, &M).Run();
|
2014-08-19 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
2014-08-26 21:49:01 +00:00
|
|
|
std::unique_ptr<Module> llvm::parseAssembly(MemoryBufferRef F,
|
2014-08-19 22:05:47 +00:00
|
|
|
SMDiagnostic &Err,
|
|
|
|
LLVMContext &Context) {
|
2014-08-19 16:58:54 +00:00
|
|
|
std::unique_ptr<Module> M =
|
2014-08-26 21:49:01 +00:00
|
|
|
make_unique<Module>(F.getBufferIdentifier(), Context);
|
2014-08-19 22:05:47 +00:00
|
|
|
|
2014-08-26 21:49:01 +00:00
|
|
|
if (parseAssemblyInto(F, *M, Err))
|
2014-04-15 06:32:26 +00:00
|
|
|
return nullptr;
|
2014-08-19 22:05:47 +00:00
|
|
|
|
2015-01-17 00:46:44 +00:00
|
|
|
return M;
|
2009-09-02 17:18:19 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 16:58:54 +00:00
|
|
|
std::unique_ptr<Module> llvm::parseAssemblyFile(StringRef Filename,
|
|
|
|
SMDiagnostic &Err,
|
|
|
|
LLVMContext &Context) {
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> FileOrErr =
|
|
|
|
MemoryBuffer::getFileOrSTDIN(Filename);
|
|
|
|
if (std::error_code EC = FileOrErr.getError()) {
|
2011-10-16 05:43:57 +00:00
|
|
|
Err = SMDiagnostic(Filename, SourceMgr::DK_Error,
|
2014-07-06 17:43:13 +00:00
|
|
|
"Could not open input file: " + EC.message());
|
2014-04-15 06:32:26 +00:00
|
|
|
return nullptr;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2014-08-26 21:49:01 +00:00
|
|
|
return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 16:58:54 +00:00
|
|
|
std::unique_ptr<Module> llvm::parseAssemblyString(StringRef AsmString,
|
|
|
|
SMDiagnostic &Err,
|
|
|
|
LLVMContext &Context) {
|
2014-08-26 21:49:01 +00:00
|
|
|
MemoryBufferRef F(AsmString, "<string>");
|
|
|
|
return parseAssembly(F, Err, Context);
|
2005-05-20 03:25:47 +00:00
|
|
|
}
|