mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
add support for DagInit initializers, which represent DAG patterns
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7576 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c1af88b8e
commit
8e9a9774eb
@ -434,6 +434,17 @@ Init *FieldInit::resolveReferences(Record &R) {
|
||||
}
|
||||
|
||||
|
||||
void DagInit::print(std::ostream &OS) const {
|
||||
OS << "(" << NodeTypeDef->getName();
|
||||
if (Args.size()) {
|
||||
OS << " " << *Args[0];
|
||||
for (unsigned i = 1, e = Args.size(); i != e; ++i)
|
||||
OS << ", " << *Args[i];
|
||||
}
|
||||
OS << ")";
|
||||
}
|
||||
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Other implementations
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -34,6 +34,7 @@ class StringInit;
|
||||
class CodeInit;
|
||||
class ListInit;
|
||||
class DefInit;
|
||||
class DagInit;
|
||||
class TypedInit;
|
||||
class VarInit;
|
||||
class FieldInit;
|
||||
@ -66,6 +67,7 @@ public: // These methods should only be called from subclasses of Init
|
||||
virtual Init *convertValue( CodeInit *CI) { return 0; }
|
||||
virtual Init *convertValue(VarBitInit *VB) { return 0; }
|
||||
virtual Init *convertValue( DefInit *DI) { return 0; }
|
||||
virtual Init *convertValue( DagInit *DI) { return 0; }
|
||||
virtual Init *convertValue( TypedInit *TI) { return 0; }
|
||||
virtual Init *convertValue( VarInit *VI) {
|
||||
return convertValue((TypedInit*)VI);
|
||||
@ -221,7 +223,7 @@ struct CodeRecTy : public RecTy {
|
||||
///
|
||||
struct DagRecTy : public RecTy {
|
||||
Init *convertValue(UnsetInit *UI) { return (Init*)UI; }
|
||||
//Init *convertValue( DagInit *CI) { return (Init*)CI; }
|
||||
Init *convertValue( DagInit *CI) { return (Init*)CI; }
|
||||
Init *convertValue(TypedInit *TI);
|
||||
|
||||
void print(std::ostream &OS) const { OS << "dag"; }
|
||||
@ -582,6 +584,26 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
/// DagInit - (def a, b) - Represent a DAG tree value. DAG inits are required
|
||||
/// to have Records for their first value, after that, any legal Init is
|
||||
/// possible.
|
||||
///
|
||||
class DagInit : public Init {
|
||||
Record *NodeTypeDef;
|
||||
std::vector<Init*> Args;
|
||||
public:
|
||||
DagInit(Record *D, std::vector<Init*> &a) : NodeTypeDef(D) {
|
||||
Args.swap(a); // DESTRUCTIVELY take the arguments
|
||||
}
|
||||
|
||||
virtual Init *convertInitializerTo(RecTy *Ty) {
|
||||
return Ty->convertValue(this);
|
||||
}
|
||||
|
||||
Record *getNodeType() const { return NodeTypeDef; }
|
||||
|
||||
virtual void print(std::ostream &OS) const;
|
||||
};
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// High-Level Classes
|
||||
|
@ -434,6 +434,17 @@ Init *FieldInit::resolveReferences(Record &R) {
|
||||
}
|
||||
|
||||
|
||||
void DagInit::print(std::ostream &OS) const {
|
||||
OS << "(" << NodeTypeDef->getName();
|
||||
if (Args.size()) {
|
||||
OS << " " << *Args[0];
|
||||
for (unsigned i = 1, e = Args.size(); i != e; ++i)
|
||||
OS << ", " << *Args[i];
|
||||
}
|
||||
OS << ")";
|
||||
}
|
||||
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Other implementations
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -34,6 +34,7 @@ class StringInit;
|
||||
class CodeInit;
|
||||
class ListInit;
|
||||
class DefInit;
|
||||
class DagInit;
|
||||
class TypedInit;
|
||||
class VarInit;
|
||||
class FieldInit;
|
||||
@ -66,6 +67,7 @@ public: // These methods should only be called from subclasses of Init
|
||||
virtual Init *convertValue( CodeInit *CI) { return 0; }
|
||||
virtual Init *convertValue(VarBitInit *VB) { return 0; }
|
||||
virtual Init *convertValue( DefInit *DI) { return 0; }
|
||||
virtual Init *convertValue( DagInit *DI) { return 0; }
|
||||
virtual Init *convertValue( TypedInit *TI) { return 0; }
|
||||
virtual Init *convertValue( VarInit *VI) {
|
||||
return convertValue((TypedInit*)VI);
|
||||
@ -221,7 +223,7 @@ struct CodeRecTy : public RecTy {
|
||||
///
|
||||
struct DagRecTy : public RecTy {
|
||||
Init *convertValue(UnsetInit *UI) { return (Init*)UI; }
|
||||
//Init *convertValue( DagInit *CI) { return (Init*)CI; }
|
||||
Init *convertValue( DagInit *CI) { return (Init*)CI; }
|
||||
Init *convertValue(TypedInit *TI);
|
||||
|
||||
void print(std::ostream &OS) const { OS << "dag"; }
|
||||
@ -582,6 +584,26 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
/// DagInit - (def a, b) - Represent a DAG tree value. DAG inits are required
|
||||
/// to have Records for their first value, after that, any legal Init is
|
||||
/// possible.
|
||||
///
|
||||
class DagInit : public Init {
|
||||
Record *NodeTypeDef;
|
||||
std::vector<Init*> Args;
|
||||
public:
|
||||
DagInit(Record *D, std::vector<Init*> &a) : NodeTypeDef(D) {
|
||||
Args.swap(a); // DESTRUCTIVELY take the arguments
|
||||
}
|
||||
|
||||
virtual Init *convertInitializerTo(RecTy *Ty) {
|
||||
return Ty->convertValue(this);
|
||||
}
|
||||
|
||||
Record *getNodeType() const { return NodeTypeDef; }
|
||||
|
||||
virtual void print(std::ostream &OS) const;
|
||||
};
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// High-Level Classes
|
||||
|
Loading…
x
Reference in New Issue
Block a user