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
|
|
|
//
|
2009-01-08 23:17:05 +01:00
|
|
|
// This library implements the functionality defined in llvm/Assembly/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
|
|
|
|
2009-01-02 08:01:27 +01:00
|
|
|
#include "llvm/Assembly/Parser.h"
|
|
|
|
#include "LLParser.h"
|
2003-10-23 20:00:34 +02:00
|
|
|
#include "llvm/Module.h"
|
2009-01-04 21:44:11 +01:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2009-07-03 00:46:18 +02:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2007-11-18 09:46:26 +01:00
|
|
|
#include "llvm/Support/MemoryBuffer.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>
|
2004-07-13 10:42:12 +02:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2009-09-02 19:18:19 +02:00
|
|
|
Module *llvm::ParseAssembly(MemoryBuffer *F,
|
|
|
|
Module *M,
|
|
|
|
SMDiagnostic &Err,
|
|
|
|
LLVMContext &Context) {
|
|
|
|
SourceMgr SM;
|
|
|
|
SM.AddNewSourceBuffer(F, SMLoc());
|
|
|
|
|
|
|
|
// If we are parsing into an existing module, do it.
|
|
|
|
if (M)
|
|
|
|
return LLParser(F, SM, Err, M).Run() ? 0 : M;
|
|
|
|
|
|
|
|
// Otherwise create a new module.
|
2009-09-09 00:20:35 +02:00
|
|
|
OwningPtr<Module> M2(new Module(F->getBufferIdentifier(), Context));
|
2009-09-02 19:18:19 +02:00
|
|
|
if (LLParser(F, SM, Err, M2.get()).Run())
|
|
|
|
return 0;
|
|
|
|
return M2.take();
|
|
|
|
}
|
|
|
|
|
2009-07-03 00:46:18 +02:00
|
|
|
Module *llvm::ParseAssemblyFile(const std::string &Filename, SMDiagnostic &Err,
|
|
|
|
LLVMContext &Context) {
|
2007-11-18 09:46:26 +01:00
|
|
|
std::string ErrorStr;
|
2009-07-03 01:08:13 +02:00
|
|
|
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrorStr);
|
2007-11-18 09:46:26 +01:00
|
|
|
if (F == 0) {
|
2010-04-06 20:06:18 +02:00
|
|
|
Err = SMDiagnostic(Filename,
|
2010-08-04 03:13:48 +02:00
|
|
|
"Could not open input file: " + ErrorStr);
|
2007-11-18 09:46:26 +01:00
|
|
|
return 0;
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
2009-01-02 23:46:48 +01:00
|
|
|
|
2009-09-09 00:20:35 +02:00
|
|
|
return ParseAssembly(F, 0, Err, Context);
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
|
|
|
|
2009-01-02 23:46:48 +01:00
|
|
|
Module *llvm::ParseAssemblyString(const char *AsmString, Module *M,
|
2009-07-03 00:46:18 +02:00
|
|
|
SMDiagnostic &Err, LLVMContext &Context) {
|
2009-07-03 01:08:13 +02:00
|
|
|
MemoryBuffer *F =
|
2010-04-06 00:42:30 +02:00
|
|
|
MemoryBuffer::getMemBuffer(StringRef(AsmString, strlen(AsmString)),
|
2009-07-03 01:08:13 +02:00
|
|
|
"<string>");
|
|
|
|
|
2009-09-09 00:20:35 +02:00
|
|
|
return ParseAssembly(F, M, Err, Context);
|
2005-05-20 05:25:47 +02:00
|
|
|
}
|