2003-10-13 03:32:08 +00:00
|
|
|
//===-- ParserInternals.h - Definitions internal to the parser --*- C++ -*-===//
|
2005-04-21 21:10:11 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
// 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.
|
2005-04-21 21:10:11 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2005-04-21 21:10:11 +00:00
|
|
|
// This header file defines the various variables that are shared among the
|
2001-06-06 20:29:01 +00:00
|
|
|
// different components of the parser...
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PARSER_INTERNALS_H
|
|
|
|
#define PARSER_INTERNALS_H
|
|
|
|
|
2002-04-28 19:55:58 +00:00
|
|
|
#include "llvm/Constants.h"
|
2001-09-07 16:33:01 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2004-07-29 12:17:34 +00:00
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include "llvm/Instructions.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/Assembly/Parser.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-05-20 03:25:47 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
// Global variables exported from the lexer...
|
2005-05-20 03:25:47 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
extern int llvmAsmlineno;
|
|
|
|
|
2005-05-20 03:25:47 +00:00
|
|
|
extern std::string &llvmAsmTextin;
|
|
|
|
|
|
|
|
// functions exported from the lexer
|
|
|
|
void set_scan_file(FILE * F);
|
|
|
|
void set_scan_string (const char * str);
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
// Globals exported by the parser...
|
|
|
|
extern char* llvmAsmtext;
|
|
|
|
extern int llvmAsmleng;
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
// Globals exported by the parser...
|
2002-01-20 22:54:45 +00:00
|
|
|
extern std::string CurFilename;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
class Module;
|
2002-01-20 22:54:45 +00:00
|
|
|
Module *RunVMAsmParser(const std::string &Filename, FILE *F);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-05-20 03:25:47 +00:00
|
|
|
// Parse a string directly
|
|
|
|
Module *RunVMAsmParser(const char * AsmString, Module * M);
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-07-28 17:48:55 +00:00
|
|
|
// UnEscapeLexed - Run through the specified buffer and change \xx codes to the
|
|
|
|
// appropriate character. If AllowNull is set to false, a \00 value will cause
|
|
|
|
// an exception to be thrown.
|
|
|
|
//
|
|
|
|
// If AllowNull is set to true, the return value of the function points to the
|
|
|
|
// last character of the string in memory.
|
|
|
|
//
|
|
|
|
char *UnEscapeLexed(char *Buffer, bool AllowNull = false);
|
|
|
|
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
// ThrowException - Wrapper around the ParseException class that automatically
|
|
|
|
// fills in file line number and column number and options info.
|
|
|
|
//
|
2005-04-21 21:10:11 +00:00
|
|
|
// This also helps me because I keep typing 'throw new ParseException' instead
|
2001-06-06 20:29:01 +00:00
|
|
|
// of just 'throw ParseException'... sigh...
|
|
|
|
//
|
2002-01-20 22:54:45 +00:00
|
|
|
static inline void ThrowException(const std::string &message,
|
2005-04-21 21:10:11 +00:00
|
|
|
int LineNo = -1) {
|
2001-07-28 17:48:55 +00:00
|
|
|
if (LineNo == -1) LineNo = llvmAsmlineno;
|
2001-06-06 20:29:01 +00:00
|
|
|
// TODO: column number in exception
|
2001-07-28 17:48:55 +00:00
|
|
|
throw ParseException(CurFilename, message, LineNo);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2006-01-25 22:26:43 +00:00
|
|
|
/// InlineAsmDescriptor - This is a simple class that holds info about inline
|
|
|
|
/// asm blocks, for use by ValID.
|
|
|
|
struct InlineAsmDescriptor {
|
|
|
|
std::string AsmString, Constraints;
|
|
|
|
bool HasSideEffects;
|
|
|
|
|
|
|
|
InlineAsmDescriptor(const std::string &as, const std::string &c, bool HSE)
|
|
|
|
: AsmString(as), Constraints(c), HasSideEffects(HSE) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
// ValID - Represents a reference of a definition of some sort. This may either
|
2005-04-21 21:10:11 +00:00
|
|
|
// be a numeric reference or a symbolic (%var) reference. This is just a
|
2001-06-06 20:29:01 +00:00
|
|
|
// discriminated union.
|
|
|
|
//
|
2005-04-21 21:10:11 +00:00
|
|
|
// Note that I can't implement this class in a straight forward manner with
|
2003-12-23 20:05:15 +00:00
|
|
|
// constructors and stuff because it goes in a union.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
struct ValID {
|
2001-09-30 22:46:54 +00:00
|
|
|
enum {
|
2002-08-16 21:14:40 +00:00
|
|
|
NumberVal, NameVal, ConstSIntVal, ConstUIntVal, ConstFPVal, ConstNullVal,
|
2006-01-25 22:26:43 +00:00
|
|
|
ConstUndefVal, ConstZeroVal, ConstantVal, InlineAsmVal
|
2001-09-30 22:46:54 +00:00
|
|
|
} Type;
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
union {
|
|
|
|
int Num; // If it's a numeric reference
|
|
|
|
char *Name; // If it's a named reference. Memory must be free'd.
|
|
|
|
int64_t ConstPool64; // Constant pool reference. This is the value
|
|
|
|
uint64_t UConstPool64;// Unsigned constant pool reference.
|
2001-07-15 00:17:01 +00:00
|
|
|
double ConstPoolFP; // Floating point constant pool reference
|
2002-08-16 21:14:40 +00:00
|
|
|
Constant *ConstantValue; // Fully resolved constant for ConstantVal case.
|
2006-01-25 22:26:43 +00:00
|
|
|
InlineAsmDescriptor *IAD;
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static ValID create(int Num) {
|
2001-09-30 22:46:54 +00:00
|
|
|
ValID D; D.Type = NumberVal; D.Num = Num; return D;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ValID create(char *Name) {
|
2001-09-30 22:46:54 +00:00
|
|
|
ValID D; D.Type = NameVal; D.Name = Name; return D;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ValID create(int64_t Val) {
|
2001-09-30 22:46:54 +00:00
|
|
|
ValID D; D.Type = ConstSIntVal; D.ConstPool64 = Val; return D;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ValID create(uint64_t Val) {
|
2001-09-30 22:46:54 +00:00
|
|
|
ValID D; D.Type = ConstUIntVal; D.UConstPool64 = Val; return D;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2001-07-15 00:17:01 +00:00
|
|
|
static ValID create(double Val) {
|
2001-09-30 22:46:54 +00:00
|
|
|
ValID D; D.Type = ConstFPVal; D.ConstPoolFP = Val; return D;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ValID createNull() {
|
|
|
|
ValID D; D.Type = ConstNullVal; return D;
|
2001-07-15 00:17:01 +00:00
|
|
|
}
|
|
|
|
|
2004-10-16 18:17:13 +00:00
|
|
|
static ValID createUndef() {
|
|
|
|
ValID D; D.Type = ConstUndefVal; return D;
|
|
|
|
}
|
|
|
|
|
2005-12-21 17:53:02 +00:00
|
|
|
static ValID createZeroInit() {
|
|
|
|
ValID D; D.Type = ConstZeroVal; return D;
|
|
|
|
}
|
|
|
|
|
2002-08-16 21:14:40 +00:00
|
|
|
static ValID create(Constant *Val) {
|
|
|
|
ValID D; D.Type = ConstantVal; D.ConstantValue = Val; return D;
|
|
|
|
}
|
2006-01-25 22:26:43 +00:00
|
|
|
|
|
|
|
static ValID createInlineAsm(const std::string &AsmString,
|
|
|
|
const std::string &Constraints,
|
|
|
|
bool HasSideEffects) {
|
|
|
|
ValID D;
|
|
|
|
D.Type = InlineAsmVal;
|
|
|
|
D.IAD = new InlineAsmDescriptor(AsmString, Constraints, HasSideEffects);
|
|
|
|
return D;
|
|
|
|
}
|
2002-08-16 21:14:40 +00:00
|
|
|
|
2001-07-26 16:29:15 +00:00
|
|
|
inline void destroy() const {
|
2002-04-28 21:57:50 +00:00
|
|
|
if (Type == NameVal)
|
2006-01-25 22:26:43 +00:00
|
|
|
free(Name); // Free this strdup'd memory.
|
|
|
|
else if (Type == InlineAsmVal)
|
|
|
|
delete IAD;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline ValID copy() const {
|
2002-04-28 21:57:50 +00:00
|
|
|
if (Type != NameVal) return *this;
|
2001-06-06 20:29:01 +00:00
|
|
|
ValID Result = *this;
|
|
|
|
Result.Name = strdup(Name);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
inline std::string getName() const {
|
2001-06-06 20:29:01 +00:00
|
|
|
switch (Type) {
|
2002-01-20 22:54:45 +00:00
|
|
|
case NumberVal : return std::string("#") + itostr(Num);
|
2001-09-30 22:46:54 +00:00
|
|
|
case NameVal : return Name;
|
|
|
|
case ConstFPVal : return ftostr(ConstPoolFP);
|
|
|
|
case ConstNullVal : return "null";
|
2004-10-16 18:17:13 +00:00
|
|
|
case ConstUndefVal : return "undef";
|
2005-12-21 17:53:02 +00:00
|
|
|
case ConstZeroVal : return "zeroinitializer";
|
2001-09-30 22:46:54 +00:00
|
|
|
case ConstUIntVal :
|
2002-01-20 22:54:45 +00:00
|
|
|
case ConstSIntVal : return std::string("%") + itostr(ConstPool64);
|
2002-08-16 21:14:40 +00:00
|
|
|
case ConstantVal:
|
|
|
|
if (ConstantValue == ConstantBool::True) return "true";
|
|
|
|
if (ConstantValue == ConstantBool::False) return "false";
|
|
|
|
return "<constant expression>";
|
2001-09-30 22:46:54 +00:00
|
|
|
default:
|
|
|
|
assert(0 && "Unknown value!");
|
|
|
|
abort();
|
2002-01-20 22:54:45 +00:00
|
|
|
return "";
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
}
|
2001-10-13 06:37:47 +00:00
|
|
|
|
|
|
|
bool operator<(const ValID &V) const {
|
|
|
|
if (Type != V.Type) return Type < V.Type;
|
|
|
|
switch (Type) {
|
|
|
|
case NumberVal: return Num < V.Num;
|
|
|
|
case NameVal: return strcmp(Name, V.Name) < 0;
|
|
|
|
case ConstSIntVal: return ConstPool64 < V.ConstPool64;
|
|
|
|
case ConstUIntVal: return UConstPool64 < V.UConstPool64;
|
|
|
|
case ConstFPVal: return ConstPoolFP < V.ConstPoolFP;
|
|
|
|
case ConstNullVal: return false;
|
2004-10-16 18:17:13 +00:00
|
|
|
case ConstUndefVal: return false;
|
2005-12-21 17:53:02 +00:00
|
|
|
case ConstZeroVal: return false;
|
2002-08-16 21:14:40 +00:00
|
|
|
case ConstantVal: return ConstantValue < V.ConstantValue;
|
2001-10-13 06:37:47 +00:00
|
|
|
default: assert(0 && "Unknown value type!"); return false;
|
|
|
|
}
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|