2001-06-06 20:29:01 +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
|
|
|
//
|
|
|
|
// This library implements the functionality defined in llvm/assembly/parser.h
|
|
|
|
//
|
|
|
|
//===------------------------------------------------------------------------===
|
|
|
|
|
|
|
|
#include "ParserInternals.h"
|
2003-10-23 18:00:34 +00:00
|
|
|
#include "llvm/Module.h"
|
2007-11-18 08:46:26 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2008-02-20 11:08:44 +00:00
|
|
|
#include <cstring>
|
2004-07-13 08:42:12 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-08-18 08:43:06 +00:00
|
|
|
|
|
|
|
ParseError* TheParseError = 0; /// FIXME: Not threading friendly
|
|
|
|
|
|
|
|
Module *llvm::ParseAssemblyFile(const std::string &Filename, ParseError* Err) {
|
2007-11-18 08:46:26 +00:00
|
|
|
std::string ErrorStr;
|
2008-04-01 18:04:03 +00:00
|
|
|
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrorStr);
|
2007-11-18 08:46:26 +00:00
|
|
|
if (F == 0) {
|
|
|
|
if (Err)
|
|
|
|
Err->setError(Filename, "Could not open input file '" + Filename + "'");
|
|
|
|
return 0;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2007-11-18 08:46:26 +00:00
|
|
|
|
2006-08-18 08:43:06 +00:00
|
|
|
TheParseError = Err;
|
2007-11-18 08:46:26 +00:00
|
|
|
Module *Result = RunVMAsmParser(F);
|
|
|
|
delete F;
|
2001-06-06 20:29:01 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2007-11-18 08:46:26 +00:00
|
|
|
Module *llvm::ParseAssemblyString(const char *AsmString, Module *M,
|
|
|
|
ParseError *Err) {
|
2006-08-18 08:43:06 +00:00
|
|
|
TheParseError = Err;
|
2007-11-18 08:46:26 +00:00
|
|
|
MemoryBuffer *F = MemoryBuffer::getMemBuffer(AsmString,
|
|
|
|
AsmString+strlen(AsmString),
|
|
|
|
"<string>");
|
|
|
|
Module *Result = RunVMAsmParser(F);
|
|
|
|
delete F;
|
|
|
|
return Result;
|
2005-05-20 03:25:47 +00:00
|
|
|
}
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
//===------------------------------------------------------------------------===
|
2006-08-18 08:43:06 +00:00
|
|
|
// ParseError Class
|
2001-06-06 20:29:01 +00:00
|
|
|
//===------------------------------------------------------------------------===
|
|
|
|
|
|
|
|
|
2006-08-18 08:43:06 +00:00
|
|
|
void ParseError::setError(const std::string &filename,
|
2007-11-18 08:46:26 +00:00
|
|
|
const std::string &message,
|
|
|
|
int lineNo, int colNo) {
|
2006-08-18 08:43:06 +00:00
|
|
|
Filename = filename;
|
|
|
|
Message = message;
|
|
|
|
LineNo = lineNo;
|
|
|
|
colNo = colNo;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2006-08-18 08:43:06 +00:00
|
|
|
ParseError::ParseError(const ParseError &E)
|
2001-07-22 18:36:00 +00:00
|
|
|
: Filename(E.Filename), Message(E.Message) {
|
2001-06-06 20:29:01 +00:00
|
|
|
LineNo = E.LineNo;
|
|
|
|
ColumnNo = E.ColumnNo;
|
|
|
|
}
|
|
|
|
|
2003-10-23 18:00:34 +00:00
|
|
|
// Includes info from options
|
2006-08-18 08:43:06 +00:00
|
|
|
const std::string ParseError::getMessage() const {
|
2003-10-23 18:00:34 +00:00
|
|
|
std::string Result;
|
2001-06-06 20:29:01 +00:00
|
|
|
char Buffer[10];
|
|
|
|
|
2005-04-21 21:10:11 +00:00
|
|
|
if (Filename == "-")
|
2001-06-06 20:29:01 +00:00
|
|
|
Result += "<stdin>";
|
|
|
|
else
|
2001-07-22 18:36:00 +00:00
|
|
|
Result += Filename;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
if (LineNo != -1) {
|
|
|
|
sprintf(Buffer, "%d", LineNo);
|
2003-10-23 18:00:34 +00:00
|
|
|
Result += std::string(":") + Buffer;
|
2001-06-06 20:29:01 +00:00
|
|
|
if (ColumnNo != -1) {
|
|
|
|
sprintf(Buffer, "%d", ColumnNo);
|
2003-10-23 18:00:34 +00:00
|
|
|
Result += std::string(",") + Buffer;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-21 21:10:11 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
return Result + ": " + Message;
|
|
|
|
}
|