mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-10 19:34:29 +00:00
[RISCV][InsertVSETVLI] Add debug output capability to DemandedFields [nfc]
This commit is contained in:
parent
263962545d
commit
d36936fdb4
@ -146,8 +146,36 @@ struct DemandedFields {
|
||||
TailPolicy = true;
|
||||
MaskPolicy = true;
|
||||
}
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
/// Support for debugging, callable in GDB: V->dump()
|
||||
LLVM_DUMP_METHOD void dump() const {
|
||||
print(dbgs());
|
||||
dbgs() << "\n";
|
||||
}
|
||||
|
||||
/// Implement operator<<.
|
||||
void print(raw_ostream &OS) const {
|
||||
OS << "{";
|
||||
OS << "VL=" << VL << ", ";
|
||||
OS << "SEW=" << SEW << ", ";
|
||||
OS << "LMUL=" << LMUL << ", ";
|
||||
OS << "SEWLMULRatio=" << SEWLMULRatio << ", ";
|
||||
OS << "TailPolicy=" << TailPolicy << ", ";
|
||||
OS << "MaskPolicy=" << MaskPolicy;
|
||||
OS << "}";
|
||||
}
|
||||
#endif
|
||||
};
|
||||
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
LLVM_ATTRIBUTE_USED
|
||||
inline raw_ostream &operator<<(raw_ostream &OS, const DemandedFields &DF) {
|
||||
DF.print(OS);
|
||||
return OS;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/// Return true if the two values of the VTYPE register provided are
|
||||
/// indistinguishable from the perspective of an instruction (or set of
|
||||
/// instructions) which use only the Used subfields and properties.
|
||||
|
Loading…
x
Reference in New Issue
Block a user