2001-06-06 20:29:01 +00:00
|
|
|
//===-- ParserInternals.h - Definitions internal to the parser ---*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This header file defines the various variables that are shared among the
|
|
|
|
// different components of the parser...
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PARSER_INTERNALS_H
|
|
|
|
#define PARSER_INTERNALS_H
|
|
|
|
|
|
|
|
#define __STDC_LIMIT_MACROS
|
|
|
|
#include "llvm/BasicBlock.h"
|
2002-04-28 19:55:58 +00:00
|
|
|
#include "llvm/Constants.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/iOther.h"
|
2002-04-04 22:19:18 +00:00
|
|
|
#include "llvm/Function.h"
|
2001-09-07 16:33:01 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/Assembly/Parser.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/StringExtras.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
class Module;
|
|
|
|
|
|
|
|
// Global variables exported from the lexer...
|
2002-01-20 22:54:45 +00:00
|
|
|
extern std::FILE *llvmAsmin;
|
2001-06-06 20:29:01 +00:00
|
|
|
extern int llvmAsmlineno;
|
|
|
|
|
|
|
|
// Globals exported by the parser...
|
2002-01-20 22:54:45 +00:00
|
|
|
extern std::string CurFilename;
|
|
|
|
Module *RunVMAsmParser(const std::string &Filename, FILE *F);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-07-14 22:49:40 +00:00
|
|
|
extern char* llvmAsmtext;
|
|
|
|
extern int llvmAsmleng;
|
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.
|
|
|
|
//
|
|
|
|
// This also helps me because I keep typing 'throw new ParseException' instead
|
|
|
|
// of just 'throw ParseException'... sigh...
|
|
|
|
//
|
2002-01-20 22:54:45 +00:00
|
|
|
static inline void ThrowException(const std::string &message,
|
2001-07-28 17:48:55 +00:00
|
|
|
int LineNo = -1) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// ValID - Represents a reference of a definition of some sort. This may either
|
|
|
|
// be a numeric reference or a symbolic (%var) reference. This is just a
|
|
|
|
// discriminated union.
|
|
|
|
//
|
|
|
|
// Note that I can't implement this class in a straight forward manner with
|
|
|
|
// constructors and stuff because it goes in a union, and GCC doesn't like
|
|
|
|
// putting classes with ctor's in unions. :(
|
|
|
|
//
|
|
|
|
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,
|
|
|
|
ConstantVal,
|
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.
|
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
|
|
|
}
|
|
|
|
|
2002-08-16 21:14:40 +00:00
|
|
|
static ValID create(Constant *Val) {
|
|
|
|
ValID D; D.Type = ConstantVal; D.ConstantValue = Val; return D;
|
|
|
|
}
|
|
|
|
|
2001-07-26 16:29:15 +00:00
|
|
|
inline void destroy() const {
|
2002-04-28 21:57:50 +00:00
|
|
|
if (Type == NameVal)
|
2001-09-30 22:46:54 +00:00
|
|
|
free(Name); // Free this strdup'd memory...
|
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";
|
|
|
|
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;
|
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
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<class SuperType>
|
2001-07-28 17:48:55 +00:00
|
|
|
class PlaceholderValue : public SuperType {
|
2001-06-06 20:29:01 +00:00
|
|
|
ValID D;
|
2001-07-28 17:48:55 +00:00
|
|
|
int LineNum;
|
2001-06-06 20:29:01 +00:00
|
|
|
public:
|
2001-07-28 17:48:55 +00:00
|
|
|
PlaceholderValue(const Type *Ty, const ValID &d) : SuperType(Ty), D(d) {
|
|
|
|
LineNum = llvmAsmlineno;
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
ValID &getDef() { return D; }
|
2001-07-28 17:48:55 +00:00
|
|
|
int getLineNum() const { return LineNum; }
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InstPlaceHolderHelper : public Instruction {
|
|
|
|
InstPlaceHolderHelper(const Type *Ty) : Instruction(Ty, UserOp1, "") {}
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
virtual Instruction *clone() const { abort(); return 0; }
|
2001-07-07 19:24:15 +00:00
|
|
|
virtual const char *getOpcodeName() const { return "placeholder"; }
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct BBPlaceHolderHelper : public BasicBlock {
|
|
|
|
BBPlaceHolderHelper(const Type *Ty) : BasicBlock() {
|
2002-04-08 21:59:08 +00:00
|
|
|
assert(Ty == Type::LabelTy);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2002-04-04 22:19:18 +00:00
|
|
|
struct MethPlaceHolderHelper : public Function {
|
|
|
|
MethPlaceHolderHelper(const Type *Ty)
|
|
|
|
: Function(cast<FunctionType>(Ty), true) {}
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
2001-07-28 17:48:55 +00:00
|
|
|
typedef PlaceholderValue<InstPlaceHolderHelper> ValuePlaceHolder;
|
|
|
|
typedef PlaceholderValue<BBPlaceHolderHelper> BBPlaceHolder;
|
|
|
|
|
2001-09-07 16:33:01 +00:00
|
|
|
static inline ValID &getValIDFromPlaceHolder(const Value *Val) {
|
2001-10-03 14:53:21 +00:00
|
|
|
const Type *Ty = Val->getType();
|
|
|
|
if (isa<PointerType>(Ty) &&
|
2002-04-04 22:19:18 +00:00
|
|
|
isa<FunctionType>(cast<PointerType>(Ty)->getElementType()))
|
2001-12-04 00:03:30 +00:00
|
|
|
Ty = cast<PointerType>(Ty)->getElementType();
|
2001-10-03 14:53:21 +00:00
|
|
|
|
|
|
|
switch (Ty->getPrimitiveID()) {
|
2001-07-28 17:48:55 +00:00
|
|
|
case Type::LabelTyID: return ((BBPlaceHolder*)Val)->getDef();
|
|
|
|
default: return ((ValuePlaceHolder*)Val)->getDef();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-07 16:33:01 +00:00
|
|
|
static inline int getLineNumFromPlaceHolder(const Value *Val) {
|
2001-10-03 14:53:21 +00:00
|
|
|
const Type *Ty = Val->getType();
|
|
|
|
if (isa<PointerType>(Ty) &&
|
2002-04-04 22:19:18 +00:00
|
|
|
isa<FunctionType>(cast<PointerType>(Ty)->getElementType()))
|
2001-12-04 00:03:30 +00:00
|
|
|
Ty = cast<PointerType>(Ty)->getElementType();
|
2001-10-03 14:53:21 +00:00
|
|
|
|
|
|
|
switch (Ty->getPrimitiveID()) {
|
2001-07-28 17:48:55 +00:00
|
|
|
case Type::LabelTyID: return ((BBPlaceHolder*)Val)->getLineNum();
|
|
|
|
default: return ((ValuePlaceHolder*)Val)->getLineNum();
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|