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"
|
2015-03-02 05:28:53 +08:00
|
|
|
#include "llvm/ADT/STLExtras.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
|
|
|
|
2015-06-24 01:10:10 +08:00
|
|
|
bool llvm::parseAssemblyInto(MemoryBufferRef F, Module &M, SMDiagnostic &Err,
|
|
|
|
SlotMapping *Slots) {
|
2009-09-03 01:18:19 +08:00
|
|
|
SourceMgr SM;
|
2015-05-21 04:41:27 +08:00
|
|
|
std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(F);
|
2014-08-27 05:49:01 +08:00
|
|
|
SM.AddNewSourceBuffer(std::move(Buf), SMLoc());
|
2009-09-03 01:18:19 +08:00
|
|
|
|
2015-06-24 01:10:10 +08:00
|
|
|
return LLParser(F.getBuffer(), SM, Err, &M, Slots).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,
|
2015-06-24 01:10:10 +08:00
|
|
|
LLVMContext &Context,
|
|
|
|
SlotMapping *Slots) {
|
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
|
|
|
|
2015-06-24 01:10:10 +08:00
|
|
|
if (parseAssemblyInto(F, *M, Err, Slots))
|
2014-04-15 14:32:26 +08:00
|
|
|
return nullptr;
|
2014-08-20 06:05:47 +08:00
|
|
|
|
2015-01-17 08:46:44 +08:00
|
|
|
return 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,
|
2015-06-24 01:10:10 +08:00
|
|
|
LLVMContext &Context,
|
|
|
|
SlotMapping *Slots) {
|
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
|
|
|
|
2015-06-24 01:10:10 +08:00
|
|
|
return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots);
|
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,
|
2015-06-24 01:10:10 +08:00
|
|
|
LLVMContext &Context,
|
|
|
|
SlotMapping *Slots) {
|
2014-08-27 05:49:01 +08:00
|
|
|
MemoryBufferRef F(AsmString, "<string>");
|
2015-06-24 01:10:10 +08:00
|
|
|
return parseAssembly(F, Err, Context, Slots);
|
2005-05-20 11:25:47 +08:00
|
|
|
}
|
2015-07-18 06:07:03 +08:00
|
|
|
|
|
|
|
Constant *llvm::parseConstantValue(StringRef Asm, SMDiagnostic &Err,
|
2015-08-22 05:32:39 +08:00
|
|
|
const Module &M, const SlotMapping *Slots) {
|
2015-07-18 06:07:03 +08:00
|
|
|
SourceMgr SM;
|
|
|
|
std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Asm);
|
|
|
|
SM.AddNewSourceBuffer(std::move(Buf), SMLoc());
|
|
|
|
Constant *C;
|
|
|
|
if (LLParser(Asm, SM, Err, const_cast<Module *>(&M))
|
2015-08-22 05:32:39 +08:00
|
|
|
.parseStandaloneConstantValue(C, Slots))
|
2015-07-18 06:07:03 +08:00
|
|
|
return nullptr;
|
|
|
|
return C;
|
|
|
|
}
|