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