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