1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
//===- Parser.cpp - Main dispatch module for the Parser library -------------===
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This library implements the functionality defined in llvm/assembly/parser.h
//
//===------------------------------------------------------------------------===
#include "ParserInternals.h"
#include "llvm/Module.h"
using namespace llvm;
// The useful interface defined by this file... Parse an ASCII file, and return
// the internal representation in a nice slice'n'dice'able representation.
//
Module *llvm::ParseAssemblyFile(const std::string &Filename) {
FILE *F = stdin;
if (Filename != "-") {
F = fopen(Filename.c_str(), "r");
if (F == 0)
throw ParseException(Filename, "Could not open file '" + Filename + "'");
}
Module *Result;
try {
Result = RunVMAsmParser(Filename, F);
} catch (...) {
if (F != stdin) fclose(F); // Make sure to close file descriptor if an
throw; // exception is thrown
}
if (F != stdin)
fclose(F);
return Result;
}
Module *llvm::ParseAssemblyString(const char * AsmString, Module * M) {
return RunVMAsmParser(AsmString, M);
}
//===------------------------------------------------------------------------===
// ParseException Class
//===------------------------------------------------------------------------===
ParseException::ParseException(const std::string &filename,
const std::string &message,
int lineNo, int colNo)
: Filename(filename), Message(message) {
LineNo = lineNo; ColumnNo = colNo;
}
ParseException::ParseException(const ParseException &E)
: Filename(E.Filename), Message(E.Message) {
LineNo = E.LineNo;
ColumnNo = E.ColumnNo;
}
// Includes info from options
const std::string ParseException::getMessage() const {
std::string Result;
char Buffer[10];
if (Filename == "-")
Result += "<stdin>";
else
Result += Filename;
if (LineNo != -1) {
sprintf(Buffer, "%d", LineNo);
Result += std::string(":") + Buffer;
if (ColumnNo != -1) {
sprintf(Buffer, "%d", ColumnNo);
Result += std::string(",") + Buffer;
}
}
return Result + ": " + Message;
}
|