2009-01-02 07:01:27 +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
|
|
|
|
//
|
2009-01-02 07:01:27 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
#include "llvm/Assembly/Parser.h"
|
|
|
|
#include "LLParser.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"
|
2009-01-02 07:01:27 +00:00
|
|
|
#include "llvm/Support/raw_ostream.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
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
Module *llvm::ParseAssemblyFile(const std::string &Filename, ParseError &Err) {
|
|
|
|
Err.setFilename(Filename);
|
2009-01-02 22:46:48 +00:00
|
|
|
|
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) {
|
2009-01-02 07:01:27 +00:00
|
|
|
Err.setError("Could not open input file '" + Filename + "'");
|
2007-11-18 08:46:26 +00:00
|
|
|
return 0;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
Module *Result = LLParser(F, Err).Run();
|
2007-11-18 08:46:26 +00:00
|
|
|
delete F;
|
2001-06-06 20:29:01 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
// FIXME: M is ignored??
|
2009-01-02 22:46:48 +00:00
|
|
|
Module *llvm::ParseAssemblyString(const char *AsmString, Module *M,
|
2009-01-02 07:01:27 +00:00
|
|
|
ParseError &Err) {
|
|
|
|
Err.setFilename("<string>");
|
|
|
|
|
2009-01-02 22:46:48 +00:00
|
|
|
MemoryBuffer *F = MemoryBuffer::getMemBuffer(AsmString,
|
2007-11-18 08:46:26 +00:00
|
|
|
AsmString+strlen(AsmString),
|
|
|
|
"<string>");
|
2009-01-02 07:01:27 +00:00
|
|
|
Module *Result = LLParser(F, Err).Run();
|
2007-11-18 08:46:26 +00:00
|
|
|
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
|
|
|
//===------------------------------------------------------------------------===
|
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
void ParseError::PrintError(const char *ProgName, raw_ostream &S) {
|
|
|
|
errs() << ProgName << ": ";
|
2005-04-21 21:10:11 +00:00
|
|
|
if (Filename == "-")
|
2009-01-02 07:01:27 +00:00
|
|
|
errs() << "<stdin>";
|
2001-06-06 20:29:01 +00:00
|
|
|
else
|
2009-01-02 07:01:27 +00:00
|
|
|
errs() << Filename;
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
if (LineNo != -1) {
|
2009-01-02 07:01:27 +00:00
|
|
|
errs() << ':' << LineNo;
|
|
|
|
if (ColumnNo != -1)
|
|
|
|
errs() << ':' << (ColumnNo+1);
|
|
|
|
}
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
errs() << ": " << Message << '\n';
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
if (LineNo != -1 && ColumnNo != -1) {
|
|
|
|
errs() << LineContents << '\n';
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
// Print out spaces/tabs before the caret.
|
|
|
|
for (unsigned i = 0; i != unsigned(ColumnNo); ++i)
|
|
|
|
errs() << (LineContents[i] == '\t' ? '\t' : ' ');
|
|
|
|
errs() << "^\n";
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
}
|