1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/lib/AsmParser/Parser.cpp

91 lines
2.5 KiB
C++
Raw Normal View History

2001-06-06 22:29:01 +02:00
//===- Parser.cpp - Main dispatch module for the Parser library -------------===
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
2001-06-06 22:29:01 +02:00
//
// This library implements the functionality defined in llvm/assembly/parser.h
//
//===------------------------------------------------------------------------===
#include "ParserInternals.h"
#include "llvm/Module.h"
#include "llvm/Support/MemoryBuffer.h"
#include <cstring>
using namespace llvm;
ParseError* TheParseError = 0; /// FIXME: Not threading friendly
Module *llvm::ParseAssemblyFile(const std::string &Filename, ParseError* Err) {
std::string ErrorStr;
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrorStr);
if (F == 0) {
if (Err)
Err->setError(Filename, "Could not open input file '" + Filename + "'");
return 0;
2001-06-06 22:29:01 +02:00
}
TheParseError = Err;
Module *Result = RunVMAsmParser(F);
delete F;
2001-06-06 22:29:01 +02:00
return Result;
}
Module *llvm::ParseAssemblyString(const char *AsmString, Module *M,
ParseError *Err) {
TheParseError = Err;
MemoryBuffer *F = MemoryBuffer::getMemBuffer(AsmString,
AsmString+strlen(AsmString),
"<string>");
Module *Result = RunVMAsmParser(F);
delete F;
return Result;
}
2001-06-06 22:29:01 +02:00
//===------------------------------------------------------------------------===
// ParseError Class
2001-06-06 22:29:01 +02:00
//===------------------------------------------------------------------------===
void ParseError::setError(const std::string &filename,
const std::string &message,
int lineNo, int colNo) {
Filename = filename;
Message = message;
LineNo = lineNo;
colNo = colNo;
2001-06-06 22:29:01 +02:00
}
ParseError::ParseError(const ParseError &E)
: Filename(E.Filename), Message(E.Message) {
2001-06-06 22:29:01 +02:00
LineNo = E.LineNo;
ColumnNo = E.ColumnNo;
}
// Includes info from options
const std::string ParseError::getMessage() const {
std::string Result;
2001-06-06 22:29:01 +02:00
char Buffer[10];
if (Filename == "-")
2001-06-06 22:29:01 +02:00
Result += "<stdin>";
else
Result += Filename;
2001-06-06 22:29:01 +02:00
if (LineNo != -1) {
sprintf(Buffer, "%d", LineNo);
Result += std::string(":") + Buffer;
2001-06-06 22:29:01 +02:00
if (ColumnNo != -1) {
sprintf(Buffer, "%d", ColumnNo);
Result += std::string(",") + Buffer;
2001-06-06 22:29:01 +02:00
}
}
2001-06-06 22:29:01 +02:00
return Result + ": " + Message;
}