mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Split EVT into MVT and EVT, the former representing _just_ a primitive type, while
the latter is capable of representing either a primitive or an extended type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78713 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -27,9 +27,9 @@ using namespace llvm;
|
||||
/// FilterVTs - Filter a list of VT's according to a predicate.
|
||||
///
|
||||
template<typename T>
|
||||
static std::vector<EVT::SimpleValueType>
|
||||
FilterVTs(const std::vector<EVT::SimpleValueType> &InVTs, T Filter) {
|
||||
std::vector<EVT::SimpleValueType> Result;
|
||||
static std::vector<MVT::SimpleValueType>
|
||||
FilterVTs(const std::vector<MVT::SimpleValueType> &InVTs, T Filter) {
|
||||
std::vector<MVT::SimpleValueType> Result;
|
||||
for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
|
||||
if (Filter(InVTs[i]))
|
||||
Result.push_back(InVTs[i]);
|
||||
@@ -41,28 +41,28 @@ static std::vector<unsigned char>
|
||||
FilterEVTs(const std::vector<unsigned char> &InVTs, T Filter) {
|
||||
std::vector<unsigned char> Result;
|
||||
for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
|
||||
if (Filter((EVT::SimpleValueType)InVTs[i]))
|
||||
if (Filter((MVT::SimpleValueType)InVTs[i]))
|
||||
Result.push_back(InVTs[i]);
|
||||
return Result;
|
||||
}
|
||||
|
||||
static std::vector<unsigned char>
|
||||
ConvertVTs(const std::vector<EVT::SimpleValueType> &InVTs) {
|
||||
ConvertVTs(const std::vector<MVT::SimpleValueType> &InVTs) {
|
||||
std::vector<unsigned char> Result;
|
||||
for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
|
||||
Result.push_back(InVTs[i]);
|
||||
return Result;
|
||||
}
|
||||
|
||||
static inline bool isInteger(EVT::SimpleValueType VT) {
|
||||
static inline bool isInteger(MVT::SimpleValueType VT) {
|
||||
return EVT(VT).isInteger();
|
||||
}
|
||||
|
||||
static inline bool isFloatingPoint(EVT::SimpleValueType VT) {
|
||||
static inline bool isFloatingPoint(MVT::SimpleValueType VT) {
|
||||
return EVT(VT).isFloatingPoint();
|
||||
}
|
||||
|
||||
static inline bool isVector(EVT::SimpleValueType VT) {
|
||||
static inline bool isVector(MVT::SimpleValueType VT) {
|
||||
return EVT(VT).isVector();
|
||||
}
|
||||
|
||||
@@ -261,11 +261,11 @@ bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
|
||||
return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
|
||||
case SDTCisPtrTy: {
|
||||
// Operand must be same as target pointer type.
|
||||
return NodeToApply->UpdateNodeType(EVT::iPTR, TP);
|
||||
return NodeToApply->UpdateNodeType(MVT::iPTR, TP);
|
||||
}
|
||||
case SDTCisInt: {
|
||||
// If there is only one integer type supported, this must be it.
|
||||
std::vector<EVT::SimpleValueType> IntVTs =
|
||||
std::vector<MVT::SimpleValueType> IntVTs =
|
||||
FilterVTs(CGT.getLegalValueTypes(), isInteger);
|
||||
|
||||
// If we found exactly one supported integer type, apply it.
|
||||
@@ -275,7 +275,7 @@ bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
|
||||
}
|
||||
case SDTCisFP: {
|
||||
// If there is only one FP type supported, this must be it.
|
||||
std::vector<EVT::SimpleValueType> FPVTs =
|
||||
std::vector<MVT::SimpleValueType> FPVTs =
|
||||
FilterVTs(CGT.getLegalValueTypes(), isFloatingPoint);
|
||||
|
||||
// If we found exactly one supported FP type, apply it.
|
||||
@@ -297,7 +297,7 @@ bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
|
||||
!static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
|
||||
->isSubClassOf("ValueType"))
|
||||
TP.error(N->getOperator()->getName() + " expects a VT operand!");
|
||||
EVT::SimpleValueType VT =
|
||||
MVT::SimpleValueType VT =
|
||||
getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
|
||||
if (!isInteger(VT))
|
||||
TP.error(N->getOperator()->getName() + " VT operand must be integer!");
|
||||
@@ -314,7 +314,7 @@ bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
|
||||
// types at this point.
|
||||
assert(OtherNode->getExtTypes().size() == 1 && "Node has too many types!");
|
||||
if (OtherNode->hasTypeSet() && OtherNode->getTypeNum(0) <= VT)
|
||||
OtherNode->UpdateNodeType(EVT::Other, TP); // Throw an error.
|
||||
OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
|
||||
return false;
|
||||
}
|
||||
case SDTCisOpSmallerThanOp: {
|
||||
@@ -341,7 +341,7 @@ bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
|
||||
else if (EEVT::isExtFloatingPointInVTs(BigOperand->getExtTypes()))
|
||||
MadeChange |= NodeToApply->UpdateNodeType(EEVT::isFP, TP);
|
||||
|
||||
std::vector<EVT::SimpleValueType> VTs = CGT.getLegalValueTypes();
|
||||
std::vector<MVT::SimpleValueType> VTs = CGT.getLegalValueTypes();
|
||||
|
||||
if (EEVT::isExtIntegerInVTs(NodeToApply->getExtTypes())) {
|
||||
VTs = FilterVTs(VTs, isInteger);
|
||||
@@ -356,7 +356,7 @@ bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
|
||||
case 0: break; // No info yet.
|
||||
case 1:
|
||||
// Only one VT of this flavor. Cannot ever satisfy the constraints.
|
||||
return NodeToApply->UpdateNodeType(EVT::Other, TP); // throw
|
||||
return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
|
||||
case 2:
|
||||
// If we have exactly two possible types, the little operand must be the
|
||||
// small one, the big operand should be the big one. Common with
|
||||
@@ -377,7 +377,7 @@ bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
|
||||
TP.error(N->getOperator()->getName() + " VT operand must be a vector!");
|
||||
EVT IVT = OtherOperand->getTypeNum(0);
|
||||
IVT = IVT.getVectorElementType();
|
||||
return NodeToApply->UpdateNodeType(IVT.getSimpleVT(), TP);
|
||||
return NodeToApply->UpdateNodeType(IVT.getSimpleVT().SimpleTy, TP);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -459,8 +459,8 @@ bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
|
||||
return true;
|
||||
}
|
||||
|
||||
if (getExtTypeNum(0) == EVT::iPTR || getExtTypeNum(0) == EVT::iPTRAny) {
|
||||
if (ExtVTs[0] == EVT::iPTR || ExtVTs[0] == EVT::iPTRAny ||
|
||||
if (getExtTypeNum(0) == MVT::iPTR || getExtTypeNum(0) == MVT::iPTRAny) {
|
||||
if (ExtVTs[0] == MVT::iPTR || ExtVTs[0] == MVT::iPTRAny ||
|
||||
ExtVTs[0] == EEVT::isInt)
|
||||
return false;
|
||||
if (EEVT::isExtIntegerInVTs(ExtVTs)) {
|
||||
@@ -472,7 +472,7 @@ bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
|
||||
}
|
||||
}
|
||||
|
||||
if ((ExtVTs[0] == EEVT::isInt || ExtVTs[0] == EVT::iAny) &&
|
||||
if ((ExtVTs[0] == EEVT::isInt || ExtVTs[0] == MVT::iAny) &&
|
||||
EEVT::isExtIntegerInVTs(getExtTypes())) {
|
||||
assert(hasTypeSet() && "should be handled above!");
|
||||
std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), isInteger);
|
||||
@@ -481,7 +481,7 @@ bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
|
||||
setTypes(FVTs);
|
||||
return true;
|
||||
}
|
||||
if ((ExtVTs[0] == EVT::iPTR || ExtVTs[0] == EVT::iPTRAny) &&
|
||||
if ((ExtVTs[0] == MVT::iPTR || ExtVTs[0] == MVT::iPTRAny) &&
|
||||
EEVT::isExtIntegerInVTs(getExtTypes())) {
|
||||
//assert(hasTypeSet() && "should be handled above!");
|
||||
std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), isInteger);
|
||||
@@ -492,7 +492,7 @@ bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if ((ExtVTs[0] == EEVT::isFP || ExtVTs[0] == EVT::fAny) &&
|
||||
if ((ExtVTs[0] == EEVT::isFP || ExtVTs[0] == MVT::fAny) &&
|
||||
EEVT::isExtFloatingPointInVTs(getExtTypes())) {
|
||||
assert(hasTypeSet() && "should be handled above!");
|
||||
std::vector<unsigned char> FVTs =
|
||||
@@ -502,7 +502,7 @@ bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
|
||||
setTypes(FVTs);
|
||||
return true;
|
||||
}
|
||||
if (ExtVTs[0] == EVT::vAny && EEVT::isExtVectorInVTs(getExtTypes())) {
|
||||
if (ExtVTs[0] == MVT::vAny && EEVT::isExtVectorInVTs(getExtTypes())) {
|
||||
assert(hasTypeSet() && "should be handled above!");
|
||||
std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), isVector);
|
||||
if (getExtTypes() == FVTs)
|
||||
@@ -516,17 +516,17 @@ bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
|
||||
//
|
||||
// Similarly, we should probably set the type here to the intersection of
|
||||
// {isInt|isFP} and ExtVTs
|
||||
if (((getExtTypeNum(0) == EEVT::isInt || getExtTypeNum(0) == EVT::iAny) &&
|
||||
if (((getExtTypeNum(0) == EEVT::isInt || getExtTypeNum(0) == MVT::iAny) &&
|
||||
EEVT::isExtIntegerInVTs(ExtVTs)) ||
|
||||
((getExtTypeNum(0) == EEVT::isFP || getExtTypeNum(0) == EVT::fAny) &&
|
||||
((getExtTypeNum(0) == EEVT::isFP || getExtTypeNum(0) == MVT::fAny) &&
|
||||
EEVT::isExtFloatingPointInVTs(ExtVTs)) ||
|
||||
(getExtTypeNum(0) == EVT::vAny &&
|
||||
(getExtTypeNum(0) == MVT::vAny &&
|
||||
EEVT::isExtVectorInVTs(ExtVTs))) {
|
||||
setTypes(ExtVTs);
|
||||
return true;
|
||||
}
|
||||
if (getExtTypeNum(0) == EEVT::isInt &&
|
||||
(ExtVTs[0] == EVT::iPTR || ExtVTs[0] == EVT::iPTRAny)) {
|
||||
(ExtVTs[0] == MVT::iPTR || ExtVTs[0] == MVT::iPTRAny)) {
|
||||
setTypes(ExtVTs);
|
||||
return true;
|
||||
}
|
||||
@@ -553,16 +553,16 @@ void TreePatternNode::print(raw_ostream &OS) const {
|
||||
// FIXME: At some point we should handle printing all the value types for
|
||||
// nodes that are multiply typed.
|
||||
switch (getExtTypeNum(0)) {
|
||||
case EVT::Other: OS << ":Other"; break;
|
||||
case MVT::Other: OS << ":Other"; break;
|
||||
case EEVT::isInt: OS << ":isInt"; break;
|
||||
case EEVT::isFP : OS << ":isFP"; break;
|
||||
case EEVT::isUnknown: ; /*OS << ":?";*/ break;
|
||||
case EVT::iPTR: OS << ":iPTR"; break;
|
||||
case EVT::iPTRAny: OS << ":iPTRAny"; break;
|
||||
case MVT::iPTR: OS << ":iPTR"; break;
|
||||
case MVT::iPTRAny: OS << ":iPTRAny"; break;
|
||||
default: {
|
||||
std::string VTName = llvm::getName(getTypeNum(0));
|
||||
// Strip off EVT:: prefix if present.
|
||||
if (VTName.substr(0,5) == "EVT::")
|
||||
if (VTName.substr(0,5) == "MVT::")
|
||||
VTName = VTName.substr(5);
|
||||
OS << ":" << VTName;
|
||||
break;
|
||||
@@ -744,7 +744,7 @@ static std::vector<unsigned char> getImplicitType(Record *R, bool NotRegisters,
|
||||
TreePattern &TP) {
|
||||
// Some common return values
|
||||
std::vector<unsigned char> Unknown(1, EEVT::isUnknown);
|
||||
std::vector<unsigned char> Other(1, EVT::Other);
|
||||
std::vector<unsigned char> Other(1, MVT::Other);
|
||||
|
||||
// Check to see if this is a register or a register class...
|
||||
if (R->isSubClassOf("RegisterClass")) {
|
||||
@@ -771,7 +771,7 @@ static std::vector<unsigned char> getImplicitType(Record *R, bool NotRegisters,
|
||||
ComplexPat(1, TP.getDAGPatterns().getComplexPattern(R).getValueType());
|
||||
return ComplexPat;
|
||||
} else if (R->isSubClassOf("PointerLikeRegClass")) {
|
||||
Other[0] = EVT::iPTR;
|
||||
Other[0] = MVT::iPTR;
|
||||
return Other;
|
||||
} else if (R->getName() == "node" || R->getName() == "srcvalue" ||
|
||||
R->getName() == "zero_reg") {
|
||||
@@ -827,12 +827,12 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
// multiple types. Assert here that it does not, so we revisit this
|
||||
// code when appropriate.
|
||||
assert(getExtTypes().size() >= 1 && "TreePattern doesn't have a type!");
|
||||
EVT::SimpleValueType VT = getTypeNum(0);
|
||||
MVT::SimpleValueType VT = getTypeNum(0);
|
||||
for (unsigned i = 1, e = getExtTypes().size(); i != e; ++i)
|
||||
assert(getTypeNum(i) == VT && "TreePattern has too many types!");
|
||||
|
||||
VT = getTypeNum(0);
|
||||
if (VT != EVT::iPTR && VT != EVT::iPTRAny) {
|
||||
if (VT != MVT::iPTR && VT != MVT::iPTRAny) {
|
||||
unsigned Size = EVT(VT).getSizeInBits();
|
||||
// Make sure that the value is representable for this type.
|
||||
if (Size < 32) {
|
||||
@@ -873,7 +873,7 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
TP);
|
||||
MadeChange |= getChild(NC-1)->UpdateNodeType(getChild(i)->getExtTypes(),
|
||||
TP);
|
||||
MadeChange |= UpdateNodeType(EVT::isVoid, TP);
|
||||
MadeChange |= UpdateNodeType(MVT::isVoid, TP);
|
||||
}
|
||||
return MadeChange;
|
||||
} else if (getOperator()->getName() == "implicit" ||
|
||||
@@ -881,7 +881,7 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
bool MadeChange = false;
|
||||
for (unsigned i = 0; i < getNumChildren(); ++i)
|
||||
MadeChange = getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
|
||||
MadeChange |= UpdateNodeType(EVT::isVoid, TP);
|
||||
MadeChange |= UpdateNodeType(MVT::isVoid, TP);
|
||||
return MadeChange;
|
||||
} else if (getOperator()->getName() == "COPY_TO_REGCLASS") {
|
||||
bool MadeChange = false;
|
||||
@@ -905,10 +905,10 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
utostr(getNumChildren() - 1) + " operands!");
|
||||
|
||||
// Apply type info to the intrinsic ID.
|
||||
MadeChange |= getChild(0)->UpdateNodeType(EVT::iPTR, TP);
|
||||
MadeChange |= getChild(0)->UpdateNodeType(MVT::iPTR, TP);
|
||||
|
||||
for (unsigned i = NumRetVTs, e = getNumChildren(); i != e; ++i) {
|
||||
EVT::SimpleValueType OpVT = Int->IS.ParamVTs[i - NumRetVTs];
|
||||
MVT::SimpleValueType OpVT = Int->IS.ParamVTs[i - NumRetVTs];
|
||||
MadeChange |= getChild(i)->UpdateNodeType(OpVT, TP);
|
||||
MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
|
||||
}
|
||||
@@ -922,7 +922,7 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
// Branch, etc. do not produce results and top-level forms in instr pattern
|
||||
// must have void types.
|
||||
if (NI.getNumResults() == 0)
|
||||
MadeChange |= UpdateNodeType(EVT::isVoid, TP);
|
||||
MadeChange |= UpdateNodeType(MVT::isVoid, TP);
|
||||
|
||||
return MadeChange;
|
||||
} else if (getOperator()->isSubClassOf("Instruction")) {
|
||||
@@ -937,13 +937,13 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
CDP.getTargetInfo().getInstruction(getOperator()->getName());
|
||||
// Apply the result type to the node
|
||||
if (NumResults == 0 || InstInfo.NumDefs == 0) {
|
||||
MadeChange = UpdateNodeType(EVT::isVoid, TP);
|
||||
MadeChange = UpdateNodeType(MVT::isVoid, TP);
|
||||
} else {
|
||||
Record *ResultNode = Inst.getResult(0);
|
||||
|
||||
if (ResultNode->isSubClassOf("PointerLikeRegClass")) {
|
||||
std::vector<unsigned char> VT;
|
||||
VT.push_back(EVT::iPTR);
|
||||
VT.push_back(MVT::iPTR);
|
||||
MadeChange = UpdateNodeType(VT, TP);
|
||||
} else if (ResultNode->getName() == "unknown") {
|
||||
std::vector<unsigned char> VT;
|
||||
@@ -976,7 +976,7 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
TP.error("Instruction '" + getOperator()->getName() +
|
||||
"' expects more operands than were provided.");
|
||||
|
||||
EVT::SimpleValueType VT;
|
||||
MVT::SimpleValueType VT;
|
||||
TreePatternNode *Child = getChild(ChildNo++);
|
||||
if (OperandNode->isSubClassOf("RegisterClass")) {
|
||||
const CodeGenRegisterClass &RC =
|
||||
@@ -986,7 +986,7 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
VT = getValueType(OperandNode->getValueAsDef("Type"));
|
||||
MadeChange |= Child->UpdateNodeType(VT, TP);
|
||||
} else if (OperandNode->isSubClassOf("PointerLikeRegClass")) {
|
||||
MadeChange |= Child->UpdateNodeType(EVT::iPTR, TP);
|
||||
MadeChange |= Child->UpdateNodeType(MVT::iPTR, TP);
|
||||
} else if (OperandNode->getName() == "unknown") {
|
||||
MadeChange |= Child->UpdateNodeType(EEVT::isUnknown, TP);
|
||||
} else {
|
||||
@@ -1227,7 +1227,7 @@ TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
|
||||
|
||||
// If this intrinsic returns void, it must have side-effects and thus a
|
||||
// chain.
|
||||
if (Int.IS.RetVTs[0] == EVT::isVoid) {
|
||||
if (Int.IS.RetVTs[0] == MVT::isVoid) {
|
||||
Operator = getDAGPatterns().get_intrinsic_void_sdnode();
|
||||
} else if (Int.ModRef != CodeGenIntrinsic::NoMem) {
|
||||
// Has side-effects, requires chain.
|
||||
@@ -1585,7 +1585,7 @@ FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
|
||||
// If this is not a set, verify that the children nodes are not void typed,
|
||||
// and recurse.
|
||||
for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
|
||||
if (Pat->getChild(i)->getExtTypeNum(0) == EVT::isVoid)
|
||||
if (Pat->getChild(i)->getExtTypeNum(0) == MVT::isVoid)
|
||||
I->error("Cannot have void nodes inside of patterns!");
|
||||
FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
|
||||
InstImpInputs, InstImpResults);
|
||||
@@ -1833,7 +1833,7 @@ void CodeGenDAGPatterns::ParseInstructions() {
|
||||
// fill in the InstResults map.
|
||||
for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
|
||||
TreePatternNode *Pat = I->getTree(j);
|
||||
if (Pat->getExtTypeNum(0) != EVT::isVoid)
|
||||
if (Pat->getExtTypeNum(0) != MVT::isVoid)
|
||||
I->error("Top-level forms in instruction pattern should have"
|
||||
" void types");
|
||||
|
||||
|
Reference in New Issue
Block a user