2008-01-06 02:10:31 +01:00
|
|
|
//===- CodeGenDAGPatterns.h - Read DAG patterns from .td file ---*- C++ -*-===//
|
2008-01-05 23:25:12 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-01-06 02:10:31 +01:00
|
|
|
// This file declares the CodeGenDAGPatterns class, which is used to read and
|
2008-01-05 23:25:12 +01:00
|
|
|
// represent the patterns present in a .td file for instructions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CODEGEN_DAGPATTERNS_H
|
|
|
|
#define CODEGEN_DAGPATTERNS_H
|
|
|
|
|
|
|
|
#include "CodeGenTarget.h"
|
|
|
|
#include "CodeGenIntrinsics.h"
|
2010-03-15 07:00:16 +01:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
2012-02-05 08:21:30 +01:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-03-19 02:07:44 +01:00
|
|
|
#include <set>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2008-01-05 23:25:12 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Record;
|
2011-07-14 00:25:51 +02:00
|
|
|
class Init;
|
2008-01-05 23:25:12 +01:00
|
|
|
class ListInit;
|
|
|
|
class DagInit;
|
|
|
|
class SDNodeInfo;
|
|
|
|
class TreePattern;
|
|
|
|
class TreePatternNode;
|
2008-01-06 02:10:31 +01:00
|
|
|
class CodeGenDAGPatterns;
|
2008-01-05 23:25:12 +01:00
|
|
|
class ComplexPattern;
|
|
|
|
|
2009-08-11 00:56:29 +02:00
|
|
|
/// EEVT::DAGISelGenValueType - These are some extended forms of
|
2009-08-11 22:47:22 +02:00
|
|
|
/// MVT::SimpleValueType that we use as lattice values during type inference.
|
2009-08-29 07:53:25 +02:00
|
|
|
/// The existing MVT iAny, fAny and vAny types suffice to represent
|
|
|
|
/// arbitrary integer, floating-point, and vector types, so only an unknown
|
|
|
|
/// value is needed.
|
2009-08-11 00:56:29 +02:00
|
|
|
namespace EEVT {
|
2010-03-15 07:00:16 +01:00
|
|
|
/// TypeSet - This is either empty if it's completely unknown, or holds a set
|
|
|
|
/// of types. It is used during type inference because register classes can
|
|
|
|
/// have multiple possible types and we don't know which one they get until
|
|
|
|
/// type inference is complete.
|
|
|
|
///
|
|
|
|
/// TypeSet can have three states:
|
|
|
|
/// Vector is empty: The type is completely unknown, it can be any valid
|
|
|
|
/// target type.
|
|
|
|
/// Vector has multiple constrained types: (e.g. v4i32 + v4f32) it is one
|
|
|
|
/// of those types only.
|
|
|
|
/// Vector has one concrete type: The type is completely known.
|
|
|
|
///
|
|
|
|
class TypeSet {
|
2010-03-19 18:41:26 +01:00
|
|
|
SmallVector<MVT::SimpleValueType, 4> TypeVec;
|
2010-03-15 07:00:16 +01:00
|
|
|
public:
|
|
|
|
TypeSet() {}
|
|
|
|
TypeSet(MVT::SimpleValueType VT, TreePattern &TP);
|
2010-12-24 06:06:32 +01:00
|
|
|
TypeSet(const std::vector<MVT::SimpleValueType> &VTList);
|
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
bool isCompletelyUnknown() const { return TypeVec.empty(); }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
bool isConcrete() const {
|
|
|
|
if (TypeVec.size() != 1) return false;
|
|
|
|
unsigned char T = TypeVec[0]; (void)T;
|
|
|
|
assert(T < MVT::LAST_VALUETYPE || T == MVT::iPTR || T == MVT::iPTRAny);
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
MVT::SimpleValueType getConcrete() const {
|
|
|
|
assert(isConcrete() && "Type isn't concrete yet");
|
|
|
|
return (MVT::SimpleValueType)TypeVec[0];
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
bool isDynamicallyResolved() const {
|
|
|
|
return getConcrete() == MVT::iPTR || getConcrete() == MVT::iPTRAny;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
const SmallVectorImpl<MVT::SimpleValueType> &getTypeList() const {
|
|
|
|
assert(!TypeVec.empty() && "Not a type list!");
|
|
|
|
return TypeVec;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-19 00:15:10 +01:00
|
|
|
bool isVoid() const {
|
|
|
|
return TypeVec.size() == 1 && TypeVec[0] == MVT::isVoid;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// hasIntegerTypes - Return true if this TypeSet contains any integer value
|
|
|
|
/// types.
|
|
|
|
bool hasIntegerTypes() const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// hasFloatingPointTypes - Return true if this TypeSet contains an fAny or
|
|
|
|
/// a floating point value type.
|
|
|
|
bool hasFloatingPointTypes() const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// hasVectorTypes - Return true if this TypeSet contains a vector value
|
|
|
|
/// type.
|
|
|
|
bool hasVectorTypes() const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// getName() - Return this TypeSet as a string.
|
|
|
|
std::string getName() const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// MergeInTypeInfo - This merges in type information from the specified
|
|
|
|
/// argument. If 'this' changes, it returns true. If the two types are
|
|
|
|
/// contradictory (e.g. merge f32 into i32) then this throws an exception.
|
|
|
|
bool MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP);
|
|
|
|
|
|
|
|
bool MergeInTypeInfo(MVT::SimpleValueType InVT, TreePattern &TP) {
|
|
|
|
return MergeInTypeInfo(EEVT::TypeSet(InVT, TP), TP);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Force this type list to only contain integer types.
|
|
|
|
bool EnforceInteger(TreePattern &TP);
|
|
|
|
|
|
|
|
/// Force this type list to only contain floating point types.
|
|
|
|
bool EnforceFloatingPoint(TreePattern &TP);
|
2008-06-06 14:08:01 +02:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// EnforceScalar - Remove all vector types from this type list.
|
|
|
|
bool EnforceScalar(TreePattern &TP);
|
2008-01-05 23:25:12 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// EnforceVector - Remove all non-vector types from this type list.
|
|
|
|
bool EnforceVector(TreePattern &TP);
|
2009-08-13 00:30:59 +02:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// EnforceSmallerThan - 'this' must be a smaller VT than Other. Update
|
|
|
|
/// this an other based on this information.
|
|
|
|
bool EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP);
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// EnforceVectorEltTypeIs - 'this' is now constrainted to be a vector type
|
|
|
|
/// whose element is VT.
|
2010-03-24 01:01:16 +01:00
|
|
|
bool EnforceVectorEltTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2011-01-24 21:53:18 +01:00
|
|
|
/// EnforceVectorSubVectorTypeIs - 'this' is now constrainted to
|
|
|
|
/// be a vector type VT.
|
|
|
|
bool EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
|
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
|
|
|
|
bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-19 05:54:36 +01:00
|
|
|
private:
|
|
|
|
/// FillWithPossibleTypes - Set to all legal types and return true, only
|
2010-03-19 18:41:26 +01:00
|
|
|
/// valid on completely unknown type sets. If Pred is non-null, only MVTs
|
|
|
|
/// that pass the predicate are added.
|
|
|
|
bool FillWithPossibleTypes(TreePattern &TP,
|
|
|
|
bool (*Pred)(MVT::SimpleValueType) = 0,
|
|
|
|
const char *PredicateName = 0);
|
2010-03-15 07:00:16 +01:00
|
|
|
};
|
2008-01-05 23:25:12 +01:00
|
|
|
}
|
|
|
|
|
2008-03-05 18:49:05 +01:00
|
|
|
/// Set type used to track multiply used variables in patterns
|
|
|
|
typedef std::set<std::string> MultipleUseVarSet;
|
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// SDTypeConstraint - This is a discriminated union of constraints,
|
|
|
|
/// corresponding to the SDTypeConstraint tablegen class in Target.td.
|
|
|
|
struct SDTypeConstraint {
|
|
|
|
SDTypeConstraint(Record *R);
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
unsigned OperandNo; // The operand # this constraint applies to.
|
2010-12-24 06:06:32 +01:00
|
|
|
enum {
|
|
|
|
SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisVec, SDTCisSameAs,
|
2011-01-24 21:53:18 +01:00
|
|
|
SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisEltOfVec,
|
|
|
|
SDTCisSubVecOfVec
|
2008-01-05 23:25:12 +01:00
|
|
|
} ConstraintType;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
union { // The discriminated union.
|
|
|
|
struct {
|
2010-03-15 07:00:16 +01:00
|
|
|
MVT::SimpleValueType VT;
|
2008-01-05 23:25:12 +01:00
|
|
|
} SDTCisVT_Info;
|
|
|
|
struct {
|
|
|
|
unsigned OtherOperandNum;
|
|
|
|
} SDTCisSameAs_Info;
|
|
|
|
struct {
|
|
|
|
unsigned OtherOperandNum;
|
|
|
|
} SDTCisVTSmallerThanOp_Info;
|
|
|
|
struct {
|
|
|
|
unsigned BigOperandNum;
|
|
|
|
} SDTCisOpSmallerThanOp_Info;
|
2008-02-09 02:37:05 +01:00
|
|
|
struct {
|
|
|
|
unsigned OtherOperandNum;
|
|
|
|
} SDTCisEltOfVec_Info;
|
2011-01-24 21:53:18 +01:00
|
|
|
struct {
|
|
|
|
unsigned OtherOperandNum;
|
|
|
|
} SDTCisSubVecOfVec_Info;
|
2008-01-05 23:25:12 +01:00
|
|
|
} x;
|
|
|
|
|
|
|
|
/// ApplyTypeConstraint - Given a node in a pattern, apply this type
|
|
|
|
/// constraint to the nodes operands. This returns true if it makes a
|
|
|
|
/// change, false otherwise. If a type contradiction is found, throw an
|
|
|
|
/// exception.
|
|
|
|
bool ApplyTypeConstraint(TreePatternNode *N, const SDNodeInfo &NodeInfo,
|
|
|
|
TreePattern &TP) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// SDNodeInfo - One of these records is created for each SDNode instance in
|
|
|
|
/// the target .td file. This represents the various dag nodes we will be
|
|
|
|
/// processing.
|
|
|
|
class SDNodeInfo {
|
|
|
|
Record *Def;
|
|
|
|
std::string EnumName;
|
|
|
|
std::string SDClassName;
|
|
|
|
unsigned Properties;
|
|
|
|
unsigned NumResults;
|
|
|
|
int NumOperands;
|
|
|
|
std::vector<SDTypeConstraint> TypeConstraints;
|
|
|
|
public:
|
|
|
|
SDNodeInfo(Record *R); // Parse the specified record.
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
unsigned getNumResults() const { return NumResults; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-28 10:48:47 +02:00
|
|
|
/// getNumOperands - This is the number of operands required or -1 if
|
|
|
|
/// variadic.
|
2008-01-05 23:25:12 +01:00
|
|
|
int getNumOperands() const { return NumOperands; }
|
|
|
|
Record *getRecord() const { return Def; }
|
|
|
|
const std::string &getEnumName() const { return EnumName; }
|
|
|
|
const std::string &getSDClassName() const { return SDClassName; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
const std::vector<SDTypeConstraint> &getTypeConstraints() const {
|
|
|
|
return TypeConstraints;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-02-28 01:22:30 +01:00
|
|
|
/// getKnownType - If the type constraints on this node imply a fixed type
|
|
|
|
/// (e.g. all stores return void, etc), then return it as an
|
2010-03-19 02:14:27 +01:00
|
|
|
/// MVT::SimpleValueType. Otherwise, return MVT::Other.
|
2010-03-24 01:41:19 +01:00
|
|
|
MVT::SimpleValueType getKnownType(unsigned ResNo) const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// hasProperty - Return true if this node has the specified property.
|
|
|
|
///
|
|
|
|
bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
|
|
|
|
|
|
|
|
/// ApplyTypeConstraints - Given a node in a pattern, apply the type
|
|
|
|
/// constraints for this node to the operands of the node. This returns
|
|
|
|
/// true if it makes a change, false otherwise. If a type contradiction is
|
|
|
|
/// found, throw an exception.
|
|
|
|
bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const {
|
|
|
|
bool MadeChange = false;
|
|
|
|
for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i)
|
|
|
|
MadeChange |= TypeConstraints[i].ApplyTypeConstraint(N, *this, TP);
|
|
|
|
return MadeChange;
|
|
|
|
}
|
|
|
|
};
|
2011-04-17 23:38:24 +02:00
|
|
|
|
|
|
|
/// TreePredicateFn - This is an abstraction that represents the predicates on
|
|
|
|
/// a PatFrag node. This is a simple one-word wrapper around a pointer to
|
|
|
|
/// provide nice accessors.
|
|
|
|
class TreePredicateFn {
|
|
|
|
/// PatFragRec - This is the TreePattern for the PatFrag that we
|
|
|
|
/// originally came from.
|
|
|
|
TreePattern *PatFragRec;
|
|
|
|
public:
|
|
|
|
/// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag.
|
2011-04-18 00:05:17 +02:00
|
|
|
TreePredicateFn(TreePattern *N);
|
2011-04-17 23:38:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
TreePattern *getOrigPatFragRecord() const { return PatFragRec; }
|
|
|
|
|
|
|
|
/// isAlwaysTrue - Return true if this is a noop predicate.
|
|
|
|
bool isAlwaysTrue() const;
|
|
|
|
|
2011-04-18 08:22:33 +02:00
|
|
|
bool isImmediatePattern() const { return !getImmCode().empty(); }
|
|
|
|
|
|
|
|
/// getImmediatePredicateCode - Return the code that evaluates this pattern if
|
|
|
|
/// this is an immediate predicate. It is an error to call this on a
|
|
|
|
/// non-immediate pattern.
|
|
|
|
std::string getImmediatePredicateCode() const {
|
|
|
|
std::string Result = getImmCode();
|
|
|
|
assert(!Result.empty() && "Isn't an immediate pattern!");
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2011-04-17 23:38:24 +02:00
|
|
|
|
|
|
|
bool operator==(const TreePredicateFn &RHS) const {
|
|
|
|
return PatFragRec == RHS.PatFragRec;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
|
|
|
|
|
|
|
|
/// Return the name to use in the generated code to reference this, this is
|
|
|
|
/// "Predicate_foo" if from a pattern fragment "foo".
|
|
|
|
std::string getFnName() const;
|
|
|
|
|
|
|
|
/// getCodeToRunOnSDNode - Return the code for the function body that
|
|
|
|
/// evaluates this predicate. The argument is expected to be in "Node",
|
|
|
|
/// not N. This handles casting and conversion to a concrete node type as
|
|
|
|
/// appropriate.
|
|
|
|
std::string getCodeToRunOnSDNode() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string getPredCode() const;
|
2011-04-18 00:05:17 +02:00
|
|
|
std::string getImmCode() const;
|
2011-04-17 23:38:24 +02:00
|
|
|
};
|
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
|
|
|
|
/// FIXME: TreePatternNode's can be shared in some cases (due to dag-shaped
|
|
|
|
/// patterns), and as such should be ref counted. We currently just leak all
|
|
|
|
/// TreePatternNode objects!
|
|
|
|
class TreePatternNode {
|
2010-03-19 22:37:09 +01:00
|
|
|
/// The type of each node result. Before and during type inference, each
|
|
|
|
/// result may be a set of possible types. After (successful) type inference,
|
|
|
|
/// each is a single concrete type.
|
|
|
|
SmallVector<EEVT::TypeSet, 1> Types;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// Operator - The Record for the operator if this is an interior node (not
|
|
|
|
/// a leaf).
|
|
|
|
Record *Operator;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
|
|
|
|
///
|
2011-07-30 00:43:06 +02:00
|
|
|
Init *Val;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// Name - The name given to this node with the :$foo notation.
|
|
|
|
///
|
|
|
|
std::string Name;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-10-15 08:17:21 +02:00
|
|
|
/// PredicateFns - The predicate functions to execute on this node to check
|
|
|
|
/// for a match. If this list is empty, no predicate is involved.
|
2011-04-17 23:38:24 +02:00
|
|
|
std::vector<TreePredicateFn> PredicateFns;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// TransformFn - The transformation function to execute on this node before
|
|
|
|
/// it can be substituted into the resulting instruction on a pattern match.
|
|
|
|
Record *TransformFn;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
std::vector<TreePatternNode*> Children;
|
|
|
|
public:
|
2010-03-19 22:37:09 +01:00
|
|
|
TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch,
|
2010-12-24 06:06:32 +01:00
|
|
|
unsigned NumResults)
|
2010-03-19 22:37:09 +01:00
|
|
|
: Operator(Op), Val(0), TransformFn(0), Children(Ch) {
|
|
|
|
Types.resize(NumResults);
|
|
|
|
}
|
2011-07-30 00:43:06 +02:00
|
|
|
TreePatternNode(Init *val, unsigned NumResults) // leaf ctor
|
2010-03-15 07:00:16 +01:00
|
|
|
: Operator(0), Val(val), TransformFn(0) {
|
2010-03-19 22:37:09 +01:00
|
|
|
Types.resize(NumResults);
|
2008-01-05 23:25:12 +01:00
|
|
|
}
|
|
|
|
~TreePatternNode();
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
const std::string &getName() const { return Name; }
|
2010-03-28 08:50:34 +02:00
|
|
|
void setName(StringRef N) { Name.assign(N.begin(), N.end()); }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
bool isLeaf() const { return Val != 0; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
// Type accessors.
|
2010-03-19 22:37:09 +01:00
|
|
|
unsigned getNumTypes() const { return Types.size(); }
|
|
|
|
MVT::SimpleValueType getType(unsigned ResNo) const {
|
|
|
|
return Types[ResNo].getConcrete();
|
|
|
|
}
|
|
|
|
const SmallVectorImpl<EEVT::TypeSet> &getExtTypes() const { return Types; }
|
|
|
|
const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
|
|
|
|
EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
|
|
|
|
void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-19 22:37:09 +01:00
|
|
|
bool hasTypeSet(unsigned ResNo) const {
|
|
|
|
return Types[ResNo].isConcrete();
|
|
|
|
}
|
|
|
|
bool isTypeCompletelyUnknown(unsigned ResNo) const {
|
|
|
|
return Types[ResNo].isCompletelyUnknown();
|
|
|
|
}
|
|
|
|
bool isTypeDynamicallyResolved(unsigned ResNo) const {
|
|
|
|
return Types[ResNo].isDynamicallyResolved();
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2011-07-30 00:43:06 +02:00
|
|
|
Init *getLeafValue() const { assert(isLeaf()); return Val; }
|
2008-01-05 23:25:12 +01:00
|
|
|
Record *getOperator() const { assert(!isLeaf()); return Operator; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
unsigned getNumChildren() const { return Children.size(); }
|
|
|
|
TreePatternNode *getChild(unsigned N) const { return Children[N]; }
|
|
|
|
void setChild(unsigned i, TreePatternNode *N) {
|
|
|
|
Children[i] = N;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-02-16 07:10:58 +01:00
|
|
|
/// hasChild - Return true if N is any of our children.
|
|
|
|
bool hasChild(const TreePatternNode *N) const {
|
|
|
|
for (unsigned i = 0, e = Children.size(); i != e; ++i)
|
|
|
|
if (Children[i] == N) return true;
|
|
|
|
return false;
|
|
|
|
}
|
2008-01-06 06:36:50 +01:00
|
|
|
|
2011-04-17 23:38:24 +02:00
|
|
|
bool hasAnyPredicate() const { return !PredicateFns.empty(); }
|
|
|
|
|
|
|
|
const std::vector<TreePredicateFn> &getPredicateFns() const {
|
|
|
|
return PredicateFns;
|
|
|
|
}
|
2008-10-15 08:17:21 +02:00
|
|
|
void clearPredicateFns() { PredicateFns.clear(); }
|
2011-04-17 23:38:24 +02:00
|
|
|
void setPredicateFns(const std::vector<TreePredicateFn> &Fns) {
|
2008-10-15 08:17:21 +02:00
|
|
|
assert(PredicateFns.empty() && "Overwriting non-empty predicate list!");
|
|
|
|
PredicateFns = Fns;
|
|
|
|
}
|
2011-04-17 23:38:24 +02:00
|
|
|
void addPredicateFn(const TreePredicateFn &Fn) {
|
|
|
|
assert(!Fn.isAlwaysTrue() && "Empty predicate string!");
|
2008-10-15 08:17:21 +02:00
|
|
|
if (std::find(PredicateFns.begin(), PredicateFns.end(), Fn) ==
|
|
|
|
PredicateFns.end())
|
|
|
|
PredicateFns.push_back(Fn);
|
|
|
|
}
|
2008-01-05 23:25:12 +01:00
|
|
|
|
|
|
|
Record *getTransformFn() const { return TransformFn; }
|
|
|
|
void setTransformFn(Record *Fn) { TransformFn = Fn; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-06 06:36:50 +01:00
|
|
|
/// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
|
|
|
|
/// CodeGenIntrinsic information for it, otherwise return a null pointer.
|
|
|
|
const CodeGenIntrinsic *getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const;
|
2008-06-16 22:29:38 +02:00
|
|
|
|
2010-02-14 23:22:58 +01:00
|
|
|
/// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
|
|
|
|
/// return the ComplexPattern information, otherwise return null.
|
|
|
|
const ComplexPattern *
|
|
|
|
getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const;
|
|
|
|
|
|
|
|
/// NodeHasProperty - Return true if this node has the specified property.
|
2010-02-14 23:33:49 +01:00
|
|
|
bool NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-02-14 23:22:58 +01:00
|
|
|
/// TreeHasProperty - Return true if any node in this tree has the specified
|
|
|
|
/// property.
|
2010-02-14 23:33:49 +01:00
|
|
|
bool TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-06-16 22:29:38 +02:00
|
|
|
/// isCommutativeIntrinsic - Return true if the node is an intrinsic which is
|
|
|
|
/// marked isCommutative.
|
|
|
|
bool isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2009-07-03 02:10:29 +02:00
|
|
|
void print(raw_ostream &OS) const;
|
2008-01-05 23:25:12 +01:00
|
|
|
void dump() const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
public: // Higher level manipulation routines.
|
|
|
|
|
|
|
|
/// clone - Return a new copy of this tree.
|
|
|
|
///
|
|
|
|
TreePatternNode *clone() const;
|
2010-02-14 23:22:58 +01:00
|
|
|
|
|
|
|
/// RemoveAllTypes - Recursively strip all the types of this tree.
|
|
|
|
void RemoveAllTypes();
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// isIsomorphicTo - Return true if this node is recursively isomorphic to
|
|
|
|
/// the specified node. For this comparison, all of the state of the node
|
|
|
|
/// is considered, except for the assigned name. Nodes with differing names
|
|
|
|
/// that are otherwise identical are considered isomorphic.
|
2008-03-05 18:49:05 +01:00
|
|
|
bool isIsomorphicTo(const TreePatternNode *N,
|
|
|
|
const MultipleUseVarSet &DepVars) const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// SubstituteFormalArguments - Replace the formal arguments in this tree
|
|
|
|
/// with actual values specified by ArgMap.
|
|
|
|
void SubstituteFormalArguments(std::map<std::string,
|
|
|
|
TreePatternNode*> &ArgMap);
|
|
|
|
|
|
|
|
/// InlinePatternFragments - If this pattern refers to any pattern
|
|
|
|
/// fragments, inline them into place, giving us a pattern without any
|
|
|
|
/// PatFrag references.
|
|
|
|
TreePatternNode *InlinePatternFragments(TreePattern &TP);
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2009-01-05 18:23:09 +01:00
|
|
|
/// ApplyTypeConstraints - Apply all of the type constraints relevant to
|
2008-01-05 23:25:12 +01:00
|
|
|
/// this node and its children in the tree. This returns true if it makes a
|
|
|
|
/// change, false otherwise. If a type contradiction is found, throw an
|
|
|
|
/// exception.
|
|
|
|
bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// UpdateNodeType - Set the node type of N to VT if VT contains
|
|
|
|
/// information. If N already contains a conflicting type, then throw an
|
|
|
|
/// exception. This returns true if any information was updated.
|
|
|
|
///
|
2010-03-19 22:37:09 +01:00
|
|
|
bool UpdateNodeType(unsigned ResNo, const EEVT::TypeSet &InTy,
|
|
|
|
TreePattern &TP) {
|
|
|
|
return Types[ResNo].MergeInTypeInfo(InTy, TP);
|
2010-03-15 07:00:16 +01:00
|
|
|
}
|
|
|
|
|
2010-03-19 22:37:09 +01:00
|
|
|
bool UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy,
|
|
|
|
TreePattern &TP) {
|
|
|
|
return Types[ResNo].MergeInTypeInfo(EEVT::TypeSet(InTy, TP), TP);
|
2008-01-05 23:25:12 +01:00
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// ContainsUnresolvedType - Return true if this tree contains any
|
|
|
|
/// unresolved types.
|
|
|
|
bool ContainsUnresolvedType() const {
|
2010-03-19 22:37:09 +01:00
|
|
|
for (unsigned i = 0, e = Types.size(); i != e; ++i)
|
|
|
|
if (!Types[i].isConcrete()) return true;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
|
|
|
|
if (getChild(i)->ContainsUnresolvedType()) return true;
|
|
|
|
return false;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// canPatternMatch - If it is impossible for this pattern to match on this
|
|
|
|
/// target, fill in Reason and return false. Otherwise, return true.
|
2008-04-03 02:02:49 +02:00
|
|
|
bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
|
2008-01-05 23:25:12 +01:00
|
|
|
};
|
|
|
|
|
2010-02-14 22:10:33 +01:00
|
|
|
inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {
|
|
|
|
TPN.print(OS);
|
|
|
|
return OS;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
|
|
|
|
/// TreePattern - Represent a pattern, used for instructions, pattern
|
|
|
|
/// fragments, etc.
|
|
|
|
///
|
|
|
|
class TreePattern {
|
|
|
|
/// Trees - The list of pattern trees which corresponds to this pattern.
|
|
|
|
/// Note that PatFrag's only have a single tree.
|
|
|
|
///
|
|
|
|
std::vector<TreePatternNode*> Trees;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
/// NamedNodes - This is all of the nodes that have names in the trees in this
|
|
|
|
/// pattern.
|
|
|
|
StringMap<SmallVector<TreePatternNode*,1> > NamedNodes;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// TheRecord - The actual TableGen record corresponding to this pattern.
|
|
|
|
///
|
|
|
|
Record *TheRecord;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// Args - This is a list of all of the arguments to this pattern (for
|
|
|
|
/// PatFrag patterns), which are the 'node' markers in this pattern.
|
|
|
|
std::vector<std::string> Args;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// CDP - the top-level object coordinating this madness.
|
|
|
|
///
|
2008-01-06 02:10:31 +01:00
|
|
|
CodeGenDAGPatterns &CDP;
|
2008-01-05 23:25:12 +01:00
|
|
|
|
|
|
|
/// isInputPattern - True if this is an input pattern, something to match.
|
|
|
|
/// False if this is an output pattern, something to emit.
|
|
|
|
bool isInputPattern;
|
|
|
|
public:
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// TreePattern constructor - Parse the specified DagInits into the
|
|
|
|
/// current record.
|
2011-07-30 00:43:06 +02:00
|
|
|
TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
|
2008-01-06 02:10:31 +01:00
|
|
|
CodeGenDAGPatterns &ise);
|
2011-07-30 00:43:06 +02:00
|
|
|
TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
|
2008-01-06 02:10:31 +01:00
|
|
|
CodeGenDAGPatterns &ise);
|
2008-01-05 23:25:12 +01:00
|
|
|
TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
|
2008-01-06 02:10:31 +01:00
|
|
|
CodeGenDAGPatterns &ise);
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// getTrees - Return the tree patterns which corresponds to this pattern.
|
|
|
|
///
|
|
|
|
const std::vector<TreePatternNode*> &getTrees() const { return Trees; }
|
|
|
|
unsigned getNumTrees() const { return Trees.size(); }
|
|
|
|
TreePatternNode *getTree(unsigned i) const { return Trees[i]; }
|
|
|
|
TreePatternNode *getOnlyTree() const {
|
|
|
|
assert(Trees.size() == 1 && "Doesn't have exactly one pattern!");
|
|
|
|
return Trees[0];
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-15 07:00:16 +01:00
|
|
|
const StringMap<SmallVector<TreePatternNode*,1> > &getNamedNodesMap() {
|
|
|
|
if (NamedNodes.empty())
|
|
|
|
ComputeNamedNodes();
|
|
|
|
return NamedNodes;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// getRecord - Return the actual TableGen record corresponding to this
|
|
|
|
/// pattern.
|
|
|
|
///
|
|
|
|
Record *getRecord() const { return TheRecord; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
unsigned getNumArgs() const { return Args.size(); }
|
|
|
|
const std::string &getArgName(unsigned i) const {
|
|
|
|
assert(i < Args.size() && "Argument reference out of range!");
|
|
|
|
return Args[i];
|
|
|
|
}
|
|
|
|
std::vector<std::string> &getArgList() { return Args; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-06 02:10:31 +01:00
|
|
|
CodeGenDAGPatterns &getDAGPatterns() const { return CDP; }
|
2008-01-05 23:25:12 +01:00
|
|
|
|
|
|
|
/// InlinePatternFragments - If this pattern refers to any pattern
|
|
|
|
/// fragments, inline them into place, giving us a pattern without any
|
|
|
|
/// PatFrag references.
|
|
|
|
void InlinePatternFragments() {
|
|
|
|
for (unsigned i = 0, e = Trees.size(); i != e; ++i)
|
|
|
|
Trees[i] = Trees[i]->InlinePatternFragments(*this);
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// InferAllTypes - Infer/propagate as many types throughout the expression
|
2009-03-26 17:17:51 +01:00
|
|
|
/// patterns as possible. Return true if all types are inferred, false
|
2008-01-05 23:25:12 +01:00
|
|
|
/// otherwise. Throw an exception if a type contradiction is found.
|
2010-03-15 07:00:16 +01:00
|
|
|
bool InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> >
|
|
|
|
*NamedTypes=0);
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// error - Throw an exception, prefixing it with information about this
|
|
|
|
/// pattern.
|
|
|
|
void error(const std::string &Msg) const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2009-07-03 02:10:29 +02:00
|
|
|
void print(raw_ostream &OS) const;
|
2008-01-05 23:25:12 +01:00
|
|
|
void dump() const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
private:
|
2011-07-30 00:43:06 +02:00
|
|
|
TreePatternNode *ParseTreePattern(Init *DI, StringRef OpName);
|
2010-03-15 07:00:16 +01:00
|
|
|
void ComputeNamedNodes();
|
|
|
|
void ComputeNamedNodes(TreePatternNode *N);
|
2008-01-05 23:25:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/// DAGDefaultOperand - One of these is created for each PredicateOperand
|
|
|
|
/// or OptionalDefOperand that has a set ExecuteAlways / DefaultOps field.
|
|
|
|
struct DAGDefaultOperand {
|
|
|
|
std::vector<TreePatternNode*> DefaultOps;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DAGInstruction {
|
|
|
|
TreePattern *Pattern;
|
|
|
|
std::vector<Record*> Results;
|
|
|
|
std::vector<Record*> Operands;
|
|
|
|
std::vector<Record*> ImpResults;
|
|
|
|
TreePatternNode *ResultPattern;
|
|
|
|
public:
|
|
|
|
DAGInstruction(TreePattern *TP,
|
|
|
|
const std::vector<Record*> &results,
|
|
|
|
const std::vector<Record*> &operands,
|
2010-04-20 08:28:43 +02:00
|
|
|
const std::vector<Record*> &impresults)
|
2010-12-24 06:06:32 +01:00
|
|
|
: Pattern(TP), Results(results), Operands(operands),
|
2010-04-20 08:28:43 +02:00
|
|
|
ImpResults(impresults), ResultPattern(0) {}
|
2008-01-05 23:25:12 +01:00
|
|
|
|
2008-01-06 02:52:22 +01:00
|
|
|
const TreePattern *getPattern() const { return Pattern; }
|
2008-01-05 23:25:12 +01:00
|
|
|
unsigned getNumResults() const { return Results.size(); }
|
|
|
|
unsigned getNumOperands() const { return Operands.size(); }
|
|
|
|
unsigned getNumImpResults() const { return ImpResults.size(); }
|
|
|
|
const std::vector<Record*>& getImpResults() const { return ImpResults; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
void setResultPattern(TreePatternNode *R) { ResultPattern = R; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
Record *getResult(unsigned RN) const {
|
|
|
|
assert(RN < Results.size());
|
|
|
|
return Results[RN];
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
Record *getOperand(unsigned ON) const {
|
|
|
|
assert(ON < Operands.size());
|
|
|
|
return Operands[ON];
|
|
|
|
}
|
|
|
|
|
|
|
|
Record *getImpResult(unsigned RN) const {
|
|
|
|
assert(RN < ImpResults.size());
|
|
|
|
return ImpResults[RN];
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
TreePatternNode *getResultPattern() const { return ResultPattern; }
|
|
|
|
};
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-06 02:10:31 +01:00
|
|
|
/// PatternToMatch - Used by CodeGenDAGPatterns to keep tab of patterns
|
2008-01-05 23:25:12 +01:00
|
|
|
/// processed to produce isel.
|
2010-02-18 07:47:49 +01:00
|
|
|
class PatternToMatch {
|
|
|
|
public:
|
2011-07-30 00:43:06 +02:00
|
|
|
PatternToMatch(Record *srcrecord, ListInit *preds,
|
2008-01-05 23:25:12 +01:00
|
|
|
TreePatternNode *src, TreePatternNode *dst,
|
|
|
|
const std::vector<Record*> &dstregs,
|
2010-03-01 23:09:11 +01:00
|
|
|
unsigned complexity, unsigned uid)
|
2010-12-08 00:05:49 +01:00
|
|
|
: SrcRecord(srcrecord), Predicates(preds), SrcPattern(src), DstPattern(dst),
|
2010-03-01 23:09:11 +01:00
|
|
|
Dstregs(dstregs), AddedComplexity(complexity), ID(uid) {}
|
2008-01-05 23:25:12 +01:00
|
|
|
|
2010-12-08 00:05:49 +01:00
|
|
|
Record *SrcRecord; // Originating Record for the pattern.
|
2011-07-30 00:43:06 +02:00
|
|
|
ListInit *Predicates; // Top level predicate conditions to match.
|
2008-01-05 23:25:12 +01:00
|
|
|
TreePatternNode *SrcPattern; // Source pattern to match.
|
|
|
|
TreePatternNode *DstPattern; // Resulting pattern.
|
|
|
|
std::vector<Record*> Dstregs; // Physical register defs being matched.
|
|
|
|
unsigned AddedComplexity; // Add to matching pattern complexity.
|
2010-03-01 23:09:11 +01:00
|
|
|
unsigned ID; // Unique ID for the record.
|
2008-01-05 23:25:12 +01:00
|
|
|
|
2010-12-08 00:05:49 +01:00
|
|
|
Record *getSrcRecord() const { return SrcRecord; }
|
2011-07-30 00:43:06 +02:00
|
|
|
ListInit *getPredicates() const { return Predicates; }
|
2008-01-05 23:25:12 +01:00
|
|
|
TreePatternNode *getSrcPattern() const { return SrcPattern; }
|
|
|
|
TreePatternNode *getDstPattern() const { return DstPattern; }
|
|
|
|
const std::vector<Record*> &getDstRegs() const { return Dstregs; }
|
|
|
|
unsigned getAddedComplexity() const { return AddedComplexity; }
|
2008-08-22 02:20:26 +02:00
|
|
|
|
|
|
|
std::string getPredicateCheck() const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-03-29 03:40:38 +02:00
|
|
|
/// Compute the complexity metric for the input pattern. This roughly
|
|
|
|
/// corresponds to the number of nodes that are covered.
|
|
|
|
unsigned getPatternComplexity(const CodeGenDAGPatterns &CGP) const;
|
2008-01-05 23:25:12 +01:00
|
|
|
};
|
|
|
|
|
2009-08-23 11:47:37 +02:00
|
|
|
// Deterministic comparison of Record*.
|
|
|
|
struct RecordPtrCmp {
|
|
|
|
bool operator()(const Record *LHS, const Record *RHS) const;
|
|
|
|
};
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-06 02:10:31 +01:00
|
|
|
class CodeGenDAGPatterns {
|
2008-01-05 23:25:12 +01:00
|
|
|
RecordKeeper &Records;
|
|
|
|
CodeGenTarget Target;
|
|
|
|
std::vector<CodeGenIntrinsic> Intrinsics;
|
2009-02-05 02:49:45 +01:00
|
|
|
std::vector<CodeGenIntrinsic> TgtIntrinsics;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2009-08-23 11:47:37 +02:00
|
|
|
std::map<Record*, SDNodeInfo, RecordPtrCmp> SDNodes;
|
|
|
|
std::map<Record*, std::pair<Record*, std::string>, RecordPtrCmp> SDNodeXForms;
|
|
|
|
std::map<Record*, ComplexPattern, RecordPtrCmp> ComplexPatterns;
|
|
|
|
std::map<Record*, TreePattern*, RecordPtrCmp> PatternFragments;
|
|
|
|
std::map<Record*, DAGDefaultOperand, RecordPtrCmp> DefaultOperands;
|
|
|
|
std::map<Record*, DAGInstruction, RecordPtrCmp> Instructions;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
// Specific SDNode definitions:
|
|
|
|
Record *intrinsic_void_sdnode;
|
|
|
|
Record *intrinsic_w_chain_sdnode, *intrinsic_wo_chain_sdnode;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
/// PatternsToMatch - All of the things we are matching on the DAG. The first
|
|
|
|
/// value is the pattern to match, the second pattern is the result to
|
|
|
|
/// emit.
|
|
|
|
std::vector<PatternToMatch> PatternsToMatch;
|
|
|
|
public:
|
2010-12-24 06:06:32 +01:00
|
|
|
CodeGenDAGPatterns(RecordKeeper &R);
|
2008-01-06 02:10:31 +01:00
|
|
|
~CodeGenDAGPatterns();
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-04-03 02:02:49 +02:00
|
|
|
CodeGenTarget &getTargetInfo() { return Target; }
|
2008-01-05 23:25:12 +01:00
|
|
|
const CodeGenTarget &getTargetInfo() const { return Target; }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
Record *getSDNodeNamed(const std::string &Name) const;
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
const SDNodeInfo &getSDNodeInfo(Record *R) const {
|
|
|
|
assert(SDNodes.count(R) && "Unknown node!");
|
|
|
|
return SDNodes.find(R)->second;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:54:53 +01:00
|
|
|
// Node transformation lookups.
|
|
|
|
typedef std::pair<Record*, std::string> NodeXForm;
|
|
|
|
const NodeXForm &getSDNodeTransform(Record *R) const {
|
2008-01-05 23:25:12 +01:00
|
|
|
assert(SDNodeXForms.count(R) && "Invalid transform!");
|
|
|
|
return SDNodeXForms.find(R)->second;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2009-08-23 12:39:21 +02:00
|
|
|
typedef std::map<Record*, NodeXForm, RecordPtrCmp>::const_iterator
|
|
|
|
nx_iterator;
|
2008-01-05 23:54:53 +01:00
|
|
|
nx_iterator nx_begin() const { return SDNodeXForms.begin(); }
|
|
|
|
nx_iterator nx_end() const { return SDNodeXForms.end(); }
|
|
|
|
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
const ComplexPattern &getComplexPattern(Record *R) const {
|
|
|
|
assert(ComplexPatterns.count(R) && "Unknown addressing mode!");
|
|
|
|
return ComplexPatterns.find(R)->second;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
const CodeGenIntrinsic &getIntrinsic(Record *R) const {
|
|
|
|
for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
|
|
|
|
if (Intrinsics[i].TheDef == R) return Intrinsics[i];
|
2009-02-05 02:49:45 +01:00
|
|
|
for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
|
|
|
|
if (TgtIntrinsics[i].TheDef == R) return TgtIntrinsics[i];
|
2012-02-05 08:21:30 +01:00
|
|
|
llvm_unreachable("Unknown intrinsic!");
|
2008-01-05 23:25:12 +01:00
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const {
|
2009-02-05 02:49:45 +01:00
|
|
|
if (IID-1 < Intrinsics.size())
|
|
|
|
return Intrinsics[IID-1];
|
|
|
|
if (IID-Intrinsics.size()-1 < TgtIntrinsics.size())
|
|
|
|
return TgtIntrinsics[IID-Intrinsics.size()-1];
|
2012-02-05 08:21:30 +01:00
|
|
|
llvm_unreachable("Bad intrinsic ID!");
|
2008-01-05 23:25:12 +01:00
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
unsigned getIntrinsicID(Record *R) const {
|
|
|
|
for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
|
|
|
|
if (Intrinsics[i].TheDef == R) return i;
|
2009-02-05 02:49:45 +01:00
|
|
|
for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
|
|
|
|
if (TgtIntrinsics[i].TheDef == R) return i + Intrinsics.size();
|
2012-02-05 08:21:30 +01:00
|
|
|
llvm_unreachable("Unknown intrinsic!");
|
2008-01-05 23:25:12 +01:00
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-02-18 07:47:49 +01:00
|
|
|
const DAGDefaultOperand &getDefaultOperand(Record *R) const {
|
2008-01-05 23:25:12 +01:00
|
|
|
assert(DefaultOperands.count(R) &&"Isn't an analyzed default operand!");
|
|
|
|
return DefaultOperands.find(R)->second;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
// Pattern Fragment information.
|
|
|
|
TreePattern *getPatternFragment(Record *R) const {
|
|
|
|
assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
|
|
|
|
return PatternFragments.find(R)->second;
|
|
|
|
}
|
2010-03-19 22:37:09 +01:00
|
|
|
TreePattern *getPatternFragmentIfRead(Record *R) const {
|
|
|
|
if (!PatternFragments.count(R)) return 0;
|
|
|
|
return PatternFragments.find(R)->second;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2009-08-23 12:39:21 +02:00
|
|
|
typedef std::map<Record*, TreePattern*, RecordPtrCmp>::const_iterator
|
|
|
|
pf_iterator;
|
2008-01-05 23:25:12 +01:00
|
|
|
pf_iterator pf_begin() const { return PatternFragments.begin(); }
|
|
|
|
pf_iterator pf_end() const { return PatternFragments.end(); }
|
|
|
|
|
|
|
|
// Patterns to match information.
|
2008-01-05 23:30:17 +01:00
|
|
|
typedef std::vector<PatternToMatch>::const_iterator ptm_iterator;
|
|
|
|
ptm_iterator ptm_begin() const { return PatternsToMatch.begin(); }
|
|
|
|
ptm_iterator ptm_end() const { return PatternsToMatch.end(); }
|
2010-12-24 06:06:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
const DAGInstruction &getInstruction(Record *R) const {
|
|
|
|
assert(Instructions.count(R) && "Unknown instruction!");
|
|
|
|
return Instructions.find(R)->second;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
Record *get_intrinsic_void_sdnode() const {
|
|
|
|
return intrinsic_void_sdnode;
|
|
|
|
}
|
|
|
|
Record *get_intrinsic_w_chain_sdnode() const {
|
|
|
|
return intrinsic_w_chain_sdnode;
|
|
|
|
}
|
|
|
|
Record *get_intrinsic_wo_chain_sdnode() const {
|
|
|
|
return intrinsic_wo_chain_sdnode;
|
|
|
|
}
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2009-10-15 20:50:03 +02:00
|
|
|
bool hasTargetIntrinsics() { return !TgtIntrinsics.empty(); }
|
|
|
|
|
2008-01-05 23:25:12 +01:00
|
|
|
private:
|
|
|
|
void ParseNodeInfo();
|
2008-01-05 23:54:53 +01:00
|
|
|
void ParseNodeTransforms();
|
2008-01-05 23:25:12 +01:00
|
|
|
void ParseComplexPatterns();
|
2008-01-05 23:43:57 +01:00
|
|
|
void ParsePatternFragments();
|
2008-01-05 23:25:12 +01:00
|
|
|
void ParseDefaultOperands();
|
|
|
|
void ParseInstructions();
|
|
|
|
void ParsePatterns();
|
2008-04-03 02:02:49 +02:00
|
|
|
void InferInstructionFlags();
|
2008-01-05 23:25:12 +01:00
|
|
|
void GenerateVariants();
|
2010-12-24 06:06:32 +01:00
|
|
|
|
2010-02-23 07:16:51 +01:00
|
|
|
void AddPatternToMatch(const TreePattern *Pattern, const PatternToMatch &PTM);
|
2008-01-05 23:25:12 +01:00
|
|
|
void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
|
|
|
|
std::map<std::string,
|
|
|
|
TreePatternNode*> &InstInputs,
|
|
|
|
std::map<std::string,
|
|
|
|
TreePatternNode*> &InstResults,
|
|
|
|
std::vector<Record*> &InstImpResults);
|
|
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|