mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
merge some code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96896 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
be5ad7dce2
commit
25b6f91c54
@ -2077,19 +2077,26 @@ void CodeGenDAGPatterns::ParseInstructions() {
|
||||
SrcPattern = Pattern;
|
||||
}
|
||||
|
||||
std::string Reason;
|
||||
if (!SrcPattern->canPatternMatch(Reason, *this))
|
||||
I->error("Instruction can never match: " + Reason);
|
||||
|
||||
Record *Instr = II->first;
|
||||
TreePatternNode *DstPattern = TheInst.getResultPattern();
|
||||
PatternsToMatch.
|
||||
push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
|
||||
SrcPattern, DstPattern, TheInst.getImpResults(),
|
||||
Instr->getValueAsInt("AddedComplexity")));
|
||||
AddPatternToMatch(I,
|
||||
PatternToMatch(Instr->getValueAsListInit("Predicates"),
|
||||
SrcPattern, DstPattern,
|
||||
TheInst.getImpResults(),
|
||||
Instr->getValueAsInt("AddedComplexity")));
|
||||
}
|
||||
}
|
||||
|
||||
void CodeGenDAGPatterns::AddPatternToMatch(const TreePattern *Pattern,
|
||||
const PatternToMatch &PTM) {
|
||||
std::string Reason;
|
||||
if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this))
|
||||
Pattern->error("Instruction can never match: " + Reason);
|
||||
|
||||
PatternsToMatch.push_back(PTM);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void CodeGenDAGPatterns::InferInstructionFlags() {
|
||||
std::map<std::string, CodeGenInstruction> &InstrDescs =
|
||||
@ -2218,15 +2225,12 @@ void CodeGenDAGPatterns::ParsePatterns() {
|
||||
TreePattern Temp(Result->getRecord(), DstPattern, false, *this);
|
||||
Temp.InferAllTypes();
|
||||
|
||||
std::string Reason;
|
||||
if (!Pattern->getTree(0)->canPatternMatch(Reason, *this))
|
||||
Pattern->error("Pattern can never match: " + Reason);
|
||||
|
||||
PatternsToMatch.
|
||||
push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
|
||||
Pattern->getTree(0),
|
||||
Temp.getOnlyTree(), InstImpResults,
|
||||
Patterns[i]->getValueAsInt("AddedComplexity")));
|
||||
AddPatternToMatch(Pattern,
|
||||
PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
|
||||
Pattern->getTree(0),
|
||||
Temp.getOnlyTree(), InstImpResults,
|
||||
Patterns[i]->getValueAsInt("AddedComplexity")));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -625,6 +625,7 @@ private:
|
||||
void InferInstructionFlags();
|
||||
void GenerateVariants();
|
||||
|
||||
void AddPatternToMatch(const TreePattern *Pattern, const PatternToMatch &PTM);
|
||||
void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
|
||||
std::map<std::string,
|
||||
TreePatternNode*> &InstInputs,
|
||||
|
Loading…
x
Reference in New Issue
Block a user