2002-12-02 01:23:04 +00:00
|
|
|
//===-- FileParser.y - Parser for TableGen files ----------------*- C++ -*-===//
|
2003-10-21 15:29:18 +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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-02 01:23:04 +00:00
|
|
|
//
|
|
|
|
// This file implements the bison parser for Table Generator files...
|
|
|
|
//
|
2003-10-13 03:32:08 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
%{
|
|
|
|
#include "Record.h"
|
2003-07-30 04:26:44 +00:00
|
|
|
#include "Support/StringExtras.h"
|
2002-12-02 01:23:04 +00:00
|
|
|
#include <algorithm>
|
2003-07-30 04:26:44 +00:00
|
|
|
#include <cstdio>
|
2002-12-02 01:23:04 +00:00
|
|
|
#define YYERROR_VERBOSE 1
|
|
|
|
|
|
|
|
int yyerror(const char *ErrorMsg);
|
|
|
|
int yylex();
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2002-12-02 01:23:04 +00:00
|
|
|
extern int Filelineno;
|
|
|
|
static Record *CurRec = 0;
|
|
|
|
|
|
|
|
typedef std::pair<Record*, std::vector<Init*>*> SubClassRefTy;
|
|
|
|
|
2003-08-04 04:56:53 +00:00
|
|
|
struct LetRecord {
|
2003-08-03 13:58:01 +00:00
|
|
|
std::string Name;
|
|
|
|
std::vector<unsigned> Bits;
|
|
|
|
Init *Value;
|
|
|
|
bool HasBits;
|
2003-08-04 04:56:53 +00:00
|
|
|
LetRecord(const std::string &N, std::vector<unsigned> *B, Init *V)
|
2003-08-03 13:58:01 +00:00
|
|
|
: Name(N), Value(V), HasBits(B != 0) {
|
|
|
|
if (HasBits) Bits = *B;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2003-08-04 04:56:53 +00:00
|
|
|
static std::vector<std::vector<LetRecord> > LetStack;
|
2003-08-03 13:58:01 +00:00
|
|
|
|
2002-12-02 01:23:04 +00:00
|
|
|
|
2003-07-30 20:56:47 +00:00
|
|
|
extern std::ostream &err();
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
static void addValue(const RecordVal &RV) {
|
2003-08-03 13:58:01 +00:00
|
|
|
if (RecordVal *ERV = CurRec->getValue(RV.getName())) {
|
|
|
|
// The value already exists in the class, treat this as a set...
|
|
|
|
if (ERV->setValue(RV.getValue())) {
|
|
|
|
err() << "New definition of '" << RV.getName() << "' of type '"
|
|
|
|
<< *RV.getType() << "' is incompatible with previous "
|
|
|
|
<< "definition of type '" << *ERV->getType() << "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2003-08-03 13:58:01 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
CurRec->addValue(RV);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addSuperClass(Record *SC) {
|
|
|
|
if (CurRec->isSubClassOf(SC)) {
|
|
|
|
err() << "Already subclass of '" << SC->getName() << "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
CurRec->addSuperClass(SC);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setValue(const std::string &ValName,
|
|
|
|
std::vector<unsigned> *BitList, Init *V) {
|
2004-02-28 17:31:28 +00:00
|
|
|
if (!V) return;
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
RecordVal *RV = CurRec->getValue(ValName);
|
|
|
|
if (RV == 0) {
|
|
|
|
err() << "Value '" << ValName << "' unknown!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
2004-02-28 17:31:28 +00:00
|
|
|
|
|
|
|
// Do not allow assignments like 'X = X'. This will just cause infinite loops
|
|
|
|
// in the resolution machinery.
|
|
|
|
if (!BitList)
|
|
|
|
if (VarInit *VI = dynamic_cast<VarInit*>(V))
|
|
|
|
if (VI->getName() == ValName)
|
|
|
|
return;
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
// If we are assigning to a subset of the bits in the value... then we must be
|
|
|
|
// assigning to a field of BitsRecTy, which must have a BitsInit
|
|
|
|
// initializer...
|
|
|
|
//
|
|
|
|
if (BitList) {
|
|
|
|
BitsInit *CurVal = dynamic_cast<BitsInit*>(RV->getValue());
|
|
|
|
if (CurVal == 0) {
|
|
|
|
err() << "Value '" << ValName << "' is not a bits type!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the incoming value to a bits type of the appropriate size...
|
|
|
|
Init *BI = V->convertInitializerTo(new BitsRecTy(BitList->size()));
|
|
|
|
if (BI == 0) {
|
|
|
|
V->convertInitializerTo(new BitsRecTy(BitList->size()));
|
|
|
|
err() << "Initializer '" << *V << "' not compatible with bit range!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// We should have a BitsInit type now...
|
|
|
|
assert(dynamic_cast<BitsInit*>(BI) != 0 || &(std::cerr << *BI) == 0);
|
|
|
|
BitsInit *BInit = (BitsInit*)BI;
|
|
|
|
|
|
|
|
BitsInit *NewVal = new BitsInit(CurVal->getNumBits());
|
|
|
|
|
2002-12-06 03:55:39 +00:00
|
|
|
// Loop over bits, assigning values as appropriate...
|
2002-12-02 01:23:04 +00:00
|
|
|
for (unsigned i = 0, e = BitList->size(); i != e; ++i) {
|
|
|
|
unsigned Bit = (*BitList)[i];
|
2002-12-06 04:42:16 +00:00
|
|
|
if (NewVal->getBit(Bit)) {
|
|
|
|
err() << "Cannot set bit #" << Bit << " of value '" << ValName
|
2002-12-06 03:55:39 +00:00
|
|
|
<< "' more than once!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-06 03:55:39 +00:00
|
|
|
}
|
2002-12-02 01:23:04 +00:00
|
|
|
NewVal->setBit(Bit, BInit->getBit(i));
|
|
|
|
}
|
2002-12-06 03:55:39 +00:00
|
|
|
|
|
|
|
for (unsigned i = 0, e = CurVal->getNumBits(); i != e; ++i)
|
|
|
|
if (NewVal->getBit(i) == 0)
|
|
|
|
NewVal->setBit(i, CurVal->getBit(i));
|
|
|
|
|
2002-12-02 01:23:04 +00:00
|
|
|
V = NewVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (RV->setValue(V)) {
|
|
|
|
err() << "Value '" << ValName << "' of type '" << *RV->getType()
|
|
|
|
<< "' is incompatible with initializer '" << *V << "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addSubClass(Record *SC, const std::vector<Init*> &TemplateArgs) {
|
|
|
|
// Add all of the values in the subclass into the current class...
|
|
|
|
const std::vector<RecordVal> &Vals = SC->getValues();
|
|
|
|
for (unsigned i = 0, e = Vals.size(); i != e; ++i)
|
|
|
|
addValue(Vals[i]);
|
|
|
|
|
|
|
|
const std::vector<std::string> &TArgs = SC->getTemplateArgs();
|
|
|
|
|
|
|
|
// Ensure that an appropriate number of template arguments are specified...
|
|
|
|
if (TArgs.size() < TemplateArgs.size()) {
|
2003-05-20 23:45:36 +00:00
|
|
|
err() << "ERROR: More template args specified than expected!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
} else { // This class expects template arguments...
|
|
|
|
// Loop over all of the template arguments, setting them to the specified
|
2003-08-18 14:43:39 +00:00
|
|
|
// value or leaving them as the default as necessary.
|
2002-12-02 01:23:04 +00:00
|
|
|
for (unsigned i = 0, e = TArgs.size(); i != e; ++i) {
|
|
|
|
if (i < TemplateArgs.size()) { // A value is specified for this temp-arg?
|
|
|
|
// Set it now.
|
|
|
|
setValue(TArgs[i], 0, TemplateArgs[i]);
|
|
|
|
} else if (!CurRec->getValue(TArgs[i])->getValue()->isComplete()) {
|
|
|
|
err() << "ERROR: Value not specified for template argument #"
|
|
|
|
<< i << " (" << TArgs[i] << ") of subclass '" << SC->getName()
|
|
|
|
<< "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since everything went well, we can now set the "superclass" list for the
|
|
|
|
// current record.
|
2004-02-28 17:31:28 +00:00
|
|
|
const std::vector<Record*> &SCs = SC->getSuperClasses();
|
2002-12-02 01:23:04 +00:00
|
|
|
for (unsigned i = 0, e = SCs.size(); i != e; ++i)
|
|
|
|
addSuperClass(SCs[i]);
|
|
|
|
addSuperClass(SC);
|
|
|
|
}
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
using namespace llvm;
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%union {
|
2003-11-11 22:41:34 +00:00
|
|
|
std::string* StrVal;
|
|
|
|
int IntVal;
|
|
|
|
llvm::RecTy* Ty;
|
|
|
|
llvm::Init* Initializer;
|
|
|
|
std::vector<llvm::Init*>* FieldList;
|
|
|
|
std::vector<unsigned>* BitList;
|
|
|
|
llvm::Record* Rec;
|
|
|
|
SubClassRefTy* SubClassRef;
|
|
|
|
std::vector<SubClassRefTy>* SubClassList;
|
|
|
|
std::vector<std::pair<llvm::Init*, std::string> >* DagValueList;
|
2002-12-02 01:23:04 +00:00
|
|
|
};
|
|
|
|
|
2003-08-04 04:56:53 +00:00
|
|
|
%token INT BIT STRING BITS LIST CODE DAG CLASS DEF FIELD LET IN
|
2002-12-02 01:23:04 +00:00
|
|
|
%token <IntVal> INTVAL
|
2003-08-10 22:04:25 +00:00
|
|
|
%token <StrVal> ID VARNAME STRVAL CODEFRAGMENT
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
%type <Ty> Type
|
2003-08-03 18:17:22 +00:00
|
|
|
%type <Rec> ClassInst DefInst Object ObjectBody ClassID
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
%type <SubClassRef> SubClassRef
|
|
|
|
%type <SubClassList> ClassList ClassListNE
|
|
|
|
%type <IntVal> OptPrefix
|
|
|
|
%type <Initializer> Value OptValue
|
2003-08-04 20:44:43 +00:00
|
|
|
%type <DagValueList> DagArgList DagArgListNE
|
2002-12-02 01:23:04 +00:00
|
|
|
%type <FieldList> ValueList ValueListNE
|
|
|
|
%type <BitList> BitList OptBitList RBitList
|
2003-08-10 22:14:13 +00:00
|
|
|
%type <StrVal> Declaration OptID OptVarName
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
%start File
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-12-02 01:23:04 +00:00
|
|
|
%%
|
|
|
|
|
|
|
|
ClassID : ID {
|
|
|
|
$$ = Records.getClass(*$1);
|
|
|
|
if ($$ == 0) {
|
|
|
|
err() << "Couldn't find class '" << *$1 << "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
delete $1;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// TableGen types...
|
|
|
|
Type : STRING { // string type
|
|
|
|
$$ = new StringRecTy();
|
|
|
|
} | BIT { // bit type
|
|
|
|
$$ = new BitRecTy();
|
|
|
|
} | BITS '<' INTVAL '>' { // bits<x> type
|
|
|
|
$$ = new BitsRecTy($3);
|
|
|
|
} | INT { // int type
|
|
|
|
$$ = new IntRecTy();
|
2003-08-03 18:17:22 +00:00
|
|
|
} | LIST '<' Type '>' { // list<x> type
|
2002-12-02 01:23:04 +00:00
|
|
|
$$ = new ListRecTy($3);
|
2003-07-30 21:47:42 +00:00
|
|
|
} | CODE { // code type
|
|
|
|
$$ = new CodeRecTy();
|
2003-08-04 04:50:57 +00:00
|
|
|
} | DAG { // dag type
|
|
|
|
$$ = new DagRecTy();
|
2002-12-02 01:23:04 +00:00
|
|
|
} | ClassID { // Record Type
|
|
|
|
$$ = new RecordRecTy($1);
|
|
|
|
};
|
|
|
|
|
|
|
|
OptPrefix : /*empty*/ { $$ = 0; } | FIELD { $$ = 1; };
|
|
|
|
|
|
|
|
OptValue : /*empty*/ { $$ = 0; } | '=' Value { $$ = $2; };
|
|
|
|
|
|
|
|
Value : INTVAL {
|
|
|
|
$$ = new IntInit($1);
|
|
|
|
} | STRVAL {
|
|
|
|
$$ = new StringInit(*$1);
|
|
|
|
delete $1;
|
2003-07-30 22:15:58 +00:00
|
|
|
} | CODEFRAGMENT {
|
|
|
|
$$ = new CodeInit(*$1);
|
|
|
|
delete $1;
|
2002-12-02 01:23:04 +00:00
|
|
|
} | '?' {
|
|
|
|
$$ = new UnsetInit();
|
|
|
|
} | '{' ValueList '}' {
|
|
|
|
BitsInit *Init = new BitsInit($2->size());
|
|
|
|
for (unsigned i = 0, e = $2->size(); i != e; ++i) {
|
|
|
|
struct Init *Bit = (*$2)[i]->convertInitializerTo(new BitRecTy());
|
|
|
|
if (Bit == 0) {
|
|
|
|
err() << "Element #" << i << " (" << *(*$2)[i]
|
|
|
|
<< ") is not convertable to a bit!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
Init->setBit($2->size()-i-1, Bit);
|
|
|
|
}
|
|
|
|
$$ = Init;
|
|
|
|
delete $2;
|
|
|
|
} | ID {
|
2003-08-03 18:17:22 +00:00
|
|
|
if (const RecordVal *RV = (CurRec ? CurRec->getValue(*$1) : 0)) {
|
2002-12-02 01:23:04 +00:00
|
|
|
$$ = new VarInit(*$1, RV->getType());
|
|
|
|
} else if (Record *D = Records.getDef(*$1)) {
|
|
|
|
$$ = new DefInit(D);
|
|
|
|
} else {
|
|
|
|
err() << "Variable not defined: '" << *$1 << "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
delete $1;
|
|
|
|
} | Value '{' BitList '}' {
|
|
|
|
$$ = $1->convertInitializerBitRange(*$3);
|
|
|
|
if ($$ == 0) {
|
|
|
|
err() << "Invalid bit range for value '" << *$1 << "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
delete $3;
|
2003-08-03 18:17:22 +00:00
|
|
|
} | '[' ValueList ']' {
|
2002-12-02 01:23:04 +00:00
|
|
|
$$ = new ListInit(*$2);
|
|
|
|
delete $2;
|
2002-12-02 16:43:43 +00:00
|
|
|
} | Value '.' ID {
|
|
|
|
if (!$1->getFieldType(*$3)) {
|
|
|
|
err() << "Cannot access field '" << *$3 << "' of value '" << *$1 << "!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 16:43:43 +00:00
|
|
|
}
|
|
|
|
$$ = new FieldInit($1, *$3);
|
|
|
|
delete $3;
|
2003-08-04 20:44:43 +00:00
|
|
|
} | '(' ID DagArgList ')' {
|
|
|
|
Record *D = Records.getDef(*$2);
|
|
|
|
if (D == 0) {
|
|
|
|
err() << "Invalid def '" << *$2 << "'!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2003-08-04 20:44:43 +00:00
|
|
|
}
|
|
|
|
$$ = new DagInit(D, *$3);
|
|
|
|
delete $2; delete $3;
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
} | Value '[' BitList ']' {
|
|
|
|
std::reverse($3->begin(), $3->end());
|
|
|
|
$$ = $1->convertInitListSlice(*$3);
|
|
|
|
if ($$ == 0) {
|
|
|
|
err() << "Invalid list slice for value '" << *$1 << "'!\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
delete $3;
|
2002-12-02 01:23:04 +00:00
|
|
|
};
|
|
|
|
|
2003-08-10 22:14:13 +00:00
|
|
|
OptVarName : /* empty */ {
|
|
|
|
$$ = new std::string();
|
|
|
|
}
|
|
|
|
| ':' VARNAME {
|
|
|
|
$$ = $2;
|
|
|
|
};
|
|
|
|
|
|
|
|
DagArgListNE : Value OptVarName {
|
|
|
|
$$ = new std::vector<std::pair<Init*, std::string> >();
|
|
|
|
$$->push_back(std::make_pair($1, *$2));
|
|
|
|
delete $2;
|
2003-08-04 20:44:43 +00:00
|
|
|
}
|
2003-08-10 22:14:13 +00:00
|
|
|
| DagArgListNE ',' Value OptVarName {
|
|
|
|
$1->push_back(std::make_pair($3, *$4));
|
|
|
|
delete $4;
|
|
|
|
$$ = $1;
|
2003-08-04 20:44:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DagArgList : /*empty*/ {
|
2003-08-10 22:14:13 +00:00
|
|
|
$$ = new std::vector<std::pair<Init*, std::string> >();
|
2003-08-04 20:44:43 +00:00
|
|
|
}
|
|
|
|
| DagArgListNE { $$ = $1; };
|
|
|
|
|
|
|
|
|
2002-12-02 01:23:04 +00:00
|
|
|
RBitList : INTVAL {
|
|
|
|
$$ = new std::vector<unsigned>();
|
|
|
|
$$->push_back($1);
|
|
|
|
} | INTVAL '-' INTVAL {
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($1 < 0 || $3 < 0) {
|
|
|
|
err() << "Invalid range: " << $1 << "-" << $3 << "!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
$$ = new std::vector<unsigned>();
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($1 < $3) {
|
|
|
|
for (int i = $1; i <= $3; ++i)
|
|
|
|
$$->push_back(i);
|
|
|
|
} else {
|
|
|
|
for (int i = $1; i >= $3; --i)
|
|
|
|
$$->push_back(i);
|
|
|
|
}
|
2002-12-02 01:23:04 +00:00
|
|
|
} | INTVAL INTVAL {
|
|
|
|
$2 = -$2;
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($1 < 0 || $2 < 0) {
|
|
|
|
err() << "Invalid range: " << $1 << "-" << $2 << "!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
$$ = new std::vector<unsigned>();
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($1 < $2) {
|
|
|
|
for (int i = $1; i <= $2; ++i)
|
|
|
|
$$->push_back(i);
|
|
|
|
} else {
|
|
|
|
for (int i = $1; i >= $2; --i)
|
|
|
|
$$->push_back(i);
|
|
|
|
}
|
2002-12-02 01:23:04 +00:00
|
|
|
} | RBitList ',' INTVAL {
|
|
|
|
($$=$1)->push_back($3);
|
|
|
|
} | RBitList ',' INTVAL '-' INTVAL {
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($3 < 0 || $5 < 0) {
|
|
|
|
err() << "Invalid range: " << $3 << "-" << $5 << "!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
$$ = $1;
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($3 < $5) {
|
|
|
|
for (int i = $3; i <= $5; ++i)
|
|
|
|
$$->push_back(i);
|
|
|
|
} else {
|
|
|
|
for (int i = $3; i >= $5; --i)
|
|
|
|
$$->push_back(i);
|
|
|
|
}
|
2002-12-02 01:23:04 +00:00
|
|
|
} | RBitList ',' INTVAL INTVAL {
|
|
|
|
$4 = -$4;
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($3 < 0 || $4 < 0) {
|
|
|
|
err() << "Invalid range: " << $3 << "-" << $4 << "!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
$$ = $1;
|
Add initial support for list slices. This currently allows you to do stuff
like this:
def B {
list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
}
... which isn't particularly useful, but more is to come.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15247 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-26 23:21:34 +00:00
|
|
|
if ($3 < $4) {
|
|
|
|
for (int i = $3; i <= $4; ++i)
|
|
|
|
$$->push_back(i);
|
|
|
|
} else {
|
|
|
|
for (int i = $3; i >= $4; --i)
|
|
|
|
$$->push_back(i);
|
|
|
|
}
|
2002-12-02 01:23:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
BitList : RBitList { $$ = $1; std::reverse($1->begin(), $1->end()); };
|
|
|
|
|
|
|
|
OptBitList : /*empty*/ { $$ = 0; } | '{' BitList '}' { $$ = $2; };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ValueList : /*empty*/ {
|
|
|
|
$$ = new std::vector<Init*>();
|
|
|
|
} | ValueListNE {
|
|
|
|
$$ = $1;
|
|
|
|
};
|
|
|
|
|
|
|
|
ValueListNE : Value {
|
|
|
|
$$ = new std::vector<Init*>();
|
|
|
|
$$->push_back($1);
|
|
|
|
} | ValueListNE ',' Value {
|
|
|
|
($$ = $1)->push_back($3);
|
|
|
|
};
|
|
|
|
|
|
|
|
Declaration : OptPrefix Type ID OptValue {
|
|
|
|
addValue(RecordVal(*$3, $2, $1));
|
|
|
|
setValue(*$3, 0, $4);
|
|
|
|
$$ = $3;
|
|
|
|
};
|
|
|
|
|
|
|
|
BodyItem : Declaration ';' {
|
|
|
|
delete $1;
|
2003-08-04 04:56:53 +00:00
|
|
|
} | LET ID OptBitList '=' Value ';' {
|
2002-12-02 01:23:04 +00:00
|
|
|
setValue(*$2, $3, $5);
|
|
|
|
delete $2;
|
|
|
|
delete $3;
|
|
|
|
};
|
|
|
|
|
|
|
|
BodyList : /*empty*/ | BodyList BodyItem;
|
|
|
|
Body : ';' | '{' BodyList '}';
|
|
|
|
|
|
|
|
SubClassRef : ClassID {
|
|
|
|
$$ = new SubClassRefTy($1, new std::vector<Init*>());
|
|
|
|
} | ClassID '<' ValueListNE '>' {
|
|
|
|
$$ = new SubClassRefTy($1, $3);
|
|
|
|
};
|
|
|
|
|
|
|
|
ClassListNE : SubClassRef {
|
|
|
|
$$ = new std::vector<SubClassRefTy>();
|
|
|
|
$$->push_back(*$1);
|
|
|
|
delete $1;
|
|
|
|
}
|
|
|
|
| ClassListNE ',' SubClassRef {
|
|
|
|
($$=$1)->push_back(*$3);
|
|
|
|
delete $3;
|
|
|
|
};
|
|
|
|
|
|
|
|
ClassList : /*empty */ {
|
|
|
|
$$ = new std::vector<SubClassRefTy>();
|
|
|
|
}
|
|
|
|
| ':' ClassListNE {
|
|
|
|
$$ = $2;
|
|
|
|
};
|
|
|
|
|
|
|
|
DeclListNE : Declaration {
|
|
|
|
CurRec->addTemplateArg(*$1);
|
|
|
|
delete $1;
|
|
|
|
} | DeclListNE ',' Declaration {
|
|
|
|
CurRec->addTemplateArg(*$3);
|
|
|
|
delete $3;
|
|
|
|
};
|
|
|
|
|
|
|
|
TemplateArgList : '<' DeclListNE '>' {};
|
|
|
|
OptTemplateArgList : /*empty*/ | TemplateArgList;
|
|
|
|
|
2003-07-30 04:26:44 +00:00
|
|
|
OptID : ID { $$ = $1; } | /*empty*/ { $$ = new std::string(); };
|
|
|
|
|
|
|
|
ObjectBody : OptID {
|
|
|
|
static unsigned AnonCounter = 0;
|
|
|
|
if ($1->empty())
|
|
|
|
*$1 = "anonymous."+utostr(AnonCounter++);
|
2002-12-02 01:23:04 +00:00
|
|
|
CurRec = new Record(*$1);
|
|
|
|
delete $1;
|
|
|
|
} OptTemplateArgList ClassList {
|
|
|
|
for (unsigned i = 0, e = $4->size(); i != e; ++i) {
|
|
|
|
addSubClass((*$4)[i].first, *(*$4)[i].second);
|
2003-07-30 04:56:05 +00:00
|
|
|
// Delete the template arg values for the class
|
|
|
|
delete (*$4)[i].second;
|
|
|
|
}
|
2002-12-02 01:23:04 +00:00
|
|
|
|
|
|
|
// Process any variables on the set stack...
|
2003-08-04 04:56:53 +00:00
|
|
|
for (unsigned i = 0, e = LetStack.size(); i != e; ++i)
|
|
|
|
for (unsigned j = 0, e = LetStack[i].size(); j != e; ++j)
|
|
|
|
setValue(LetStack[i][j].Name,
|
|
|
|
LetStack[i][j].HasBits ? &LetStack[i][j].Bits : 0,
|
|
|
|
LetStack[i][j].Value);
|
2002-12-02 01:23:04 +00:00
|
|
|
} Body {
|
|
|
|
CurRec->resolveReferences();
|
2003-07-30 04:56:05 +00:00
|
|
|
|
|
|
|
// Now that all of the references have been resolved, we can delete template
|
|
|
|
// arguments for superclasses, so they don't pollute our record, and so that
|
|
|
|
// their names won't conflict with later uses of the name...
|
|
|
|
for (unsigned i = 0, e = $4->size(); i != e; ++i) {
|
|
|
|
Record *SuperClass = (*$4)[i].first;
|
|
|
|
for (unsigned i = 0, e = SuperClass->getTemplateArgs().size(); i != e; ++i)
|
2004-02-28 17:41:48 +00:00
|
|
|
if (!CurRec->isTemplateArg(SuperClass->getTemplateArgs()[i]))
|
|
|
|
CurRec->removeValue(SuperClass->getTemplateArgs()[i]);
|
2003-07-30 04:56:05 +00:00
|
|
|
}
|
|
|
|
delete $4; // Delete the class list...
|
|
|
|
|
2002-12-02 01:23:04 +00:00
|
|
|
$$ = CurRec;
|
|
|
|
CurRec = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
ClassInst : CLASS ObjectBody {
|
|
|
|
if (Records.getClass($2->getName())) {
|
|
|
|
err() << "Class '" << $2->getName() << "' already defined!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
Records.addClass($$ = $2);
|
|
|
|
};
|
|
|
|
|
|
|
|
DefInst : DEF ObjectBody {
|
2003-07-30 04:31:17 +00:00
|
|
|
if (!$2->getTemplateArgs().empty()) {
|
|
|
|
err() << "Def '" << $2->getName()
|
|
|
|
<< "' is not permitted to have template arguments!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2003-07-30 04:31:17 +00:00
|
|
|
}
|
|
|
|
// If ObjectBody has template arguments, it's an error.
|
2002-12-02 01:23:04 +00:00
|
|
|
if (Records.getDef($2->getName())) {
|
|
|
|
err() << "Def '" << $2->getName() << "' already defined!\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|
|
|
|
Records.addDef($$ = $2);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Object : ClassInst | DefInst;
|
|
|
|
|
2003-08-04 04:56:53 +00:00
|
|
|
LETItem : ID OptBitList '=' Value {
|
|
|
|
LetStack.back().push_back(LetRecord(*$1, $2, $4));
|
2003-08-03 13:58:01 +00:00
|
|
|
delete $1; delete $2;
|
2003-07-28 03:49:40 +00:00
|
|
|
};
|
|
|
|
|
2003-08-04 04:56:53 +00:00
|
|
|
LETList : LETItem | LETList ',' LETItem;
|
2003-08-03 13:58:01 +00:00
|
|
|
|
2003-08-04 04:56:53 +00:00
|
|
|
// LETCommand - A 'LET' statement start...
|
|
|
|
LETCommand : LET { LetStack.push_back(std::vector<LetRecord>()); } LETList IN;
|
2003-08-03 13:58:01 +00:00
|
|
|
|
2003-07-28 03:49:40 +00:00
|
|
|
// Support Set commands wrapping objects... both with and without braces.
|
2003-08-04 04:56:53 +00:00
|
|
|
Object : LETCommand '{' ObjectList '}' {
|
|
|
|
LetStack.pop_back();
|
2003-07-28 03:49:40 +00:00
|
|
|
}
|
2003-08-04 04:56:53 +00:00
|
|
|
| LETCommand Object {
|
|
|
|
LetStack.pop_back();
|
2002-12-02 01:23:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ObjectList : Object {} | ObjectList Object {};
|
|
|
|
|
|
|
|
File : ObjectList {};
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
int yyerror(const char *ErrorMsg) {
|
|
|
|
err() << "Error parsing: " << ErrorMsg << "\n";
|
2004-02-13 16:37:43 +00:00
|
|
|
exit(1);
|
2002-12-02 01:23:04 +00:00
|
|
|
}
|