mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
728c2ac3b1
Summary: GIMatchTree's job is to build a decision tree by zipping all the GIMatchDag's together. Each DAG is added to the tree builder as a leaf and partitioners are used to subdivide each node until there are no more partitioners to apply. At this point, the code generator is responsible for testing any untested predicates and following any unvisited traversals (there shouldn't be any of the latter as the getVRegDef partitioner handles them all). Note that the leaves don't always fit into partitions cleanly and the partitions may overlap as a result. This is resolved by cloning the leaf into every partition it belongs to. One example of this is a rule that can match one of N opcodes. The leaf for this rule would end up in N partitions when processed by the opcode partitioner. A similar example is the getVRegDef partitioner where having rules (add $a, $b), and (add ($a, $b), $c) will result in the former being in the partition for successfully following the vreg-def and failing to do so as it doesn't care which happens. Depends on D69151 Fixed the issues with the windows bots which were caused by stdout/stderr interleaving. Reviewers: bogner, volkan Reviewed By: volkan Subscribers: lkail, mgorny, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D69152
70 lines
2.3 KiB
C++
70 lines
2.3 KiB
C++
//===- GIMatchDagPredicate.cpp - Represent a predicate to check -----------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "GIMatchDagPredicate.h"
|
|
|
|
#include "llvm/TableGen/Record.h"
|
|
|
|
#include "GIMatchDagOperands.h"
|
|
#include "../CodeGenInstruction.h"
|
|
|
|
using namespace llvm;
|
|
|
|
void GIMatchDagPredicate::print(raw_ostream &OS) const {
|
|
OS << "<<";
|
|
printDescription(OS);
|
|
OS << ">>:$" << Name;
|
|
}
|
|
|
|
void GIMatchDagPredicate::printDescription(raw_ostream &OS) const { OS << ""; }
|
|
|
|
GIMatchDagOpcodePredicate::GIMatchDagOpcodePredicate(
|
|
GIMatchDagContext &Ctx, StringRef Name, const CodeGenInstruction &Instr)
|
|
: GIMatchDagPredicate(GIMatchDagPredicateKind_Opcode, Name,
|
|
Ctx.makeMIPredicateOperandList()),
|
|
Instr(Instr) {}
|
|
|
|
void GIMatchDagOpcodePredicate::printDescription(raw_ostream &OS) const {
|
|
OS << "$mi.getOpcode() == " << Instr.TheDef->getName();
|
|
}
|
|
|
|
GIMatchDagOneOfOpcodesPredicate::GIMatchDagOneOfOpcodesPredicate(
|
|
GIMatchDagContext &Ctx, StringRef Name)
|
|
: GIMatchDagPredicate(GIMatchDagPredicateKind_OneOfOpcodes, Name,
|
|
Ctx.makeMIPredicateOperandList()) {}
|
|
|
|
void GIMatchDagOneOfOpcodesPredicate::printDescription(raw_ostream &OS) const {
|
|
OS << "$mi.getOpcode() == oneof(";
|
|
StringRef Separator = "";
|
|
for (const CodeGenInstruction *Instr : Instrs) {
|
|
OS << Separator << Instr->TheDef->getName();
|
|
Separator = ",";
|
|
}
|
|
OS << ")";
|
|
}
|
|
|
|
GIMatchDagSameMOPredicate::GIMatchDagSameMOPredicate(GIMatchDagContext &Ctx,
|
|
StringRef Name)
|
|
: GIMatchDagPredicate(GIMatchDagPredicateKind_SameMO, Name,
|
|
Ctx.makeTwoMOPredicateOperandList()) {}
|
|
|
|
void GIMatchDagSameMOPredicate::printDescription(raw_ostream &OS) const {
|
|
OS << "$mi0 == $mi1";
|
|
}
|
|
|
|
raw_ostream &llvm::operator<<(raw_ostream &OS, const GIMatchDagPredicate &N) {
|
|
N.print(OS);
|
|
return OS;
|
|
}
|
|
|
|
raw_ostream &llvm::operator<<(raw_ostream &OS,
|
|
const GIMatchDagOpcodePredicate &N) {
|
|
N.print(OS);
|
|
return OS;
|
|
}
|