mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 06:12:18 +00:00
[RegisterBankInfo] Add print and dump method to the ValueMapping helper
class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265746 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
818c860694
commit
b80cd97269
@ -71,6 +71,12 @@ public:
|
|||||||
|
|
||||||
/// Verify that this mapping makes sense for a value of \p ExpectedBitWidth.
|
/// Verify that this mapping makes sense for a value of \p ExpectedBitWidth.
|
||||||
void verify(unsigned ExpectedBitWidth) const;
|
void verify(unsigned ExpectedBitWidth) const;
|
||||||
|
|
||||||
|
/// Print this on dbgs() stream.
|
||||||
|
void dump() const;
|
||||||
|
|
||||||
|
/// Print this on \p OS;
|
||||||
|
void print(raw_ostream &OS) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Helper class that represents how the value of an instruction may be
|
/// Helper class that represents how the value of an instruction may be
|
||||||
@ -385,6 +391,12 @@ operator<<(raw_ostream &OS,
|
|||||||
PartMapping.print(OS);
|
PartMapping.print(OS);
|
||||||
return OS;
|
return OS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline raw_ostream &
|
||||||
|
operator<<(raw_ostream &OS, const RegisterBankInfo::ValueMapping &ValMapping) {
|
||||||
|
ValMapping.print(OS);
|
||||||
|
return OS;
|
||||||
|
}
|
||||||
} // End namespace llvm.
|
} // End namespace llvm.
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -390,6 +390,22 @@ void RegisterBankInfo::ValueMapping::verify(unsigned ExpectedBitWidth) const {
|
|||||||
assert(ValueMask.isAllOnesValue() && "Value is not fully mapped");
|
assert(ValueMask.isAllOnesValue() && "Value is not fully mapped");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RegisterBankInfo::ValueMapping::dump() const {
|
||||||
|
print(dbgs());
|
||||||
|
dbgs() << '\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
void RegisterBankInfo::ValueMapping::print(raw_ostream &OS) const {
|
||||||
|
OS << "#BreakDown: " << BreakDown.size() << " ";
|
||||||
|
bool IsFirst = true;
|
||||||
|
for (const PartialMapping &PartMap : BreakDown) {
|
||||||
|
if (!IsFirst)
|
||||||
|
OS << ", ";
|
||||||
|
OS << '[' << PartMap << ']';
|
||||||
|
IsFirst = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void RegisterBankInfo::InstructionMapping::setOperandMapping(
|
void RegisterBankInfo::InstructionMapping::setOperandMapping(
|
||||||
unsigned OpIdx, unsigned MaskSize, const RegisterBank &RegBank) {
|
unsigned OpIdx, unsigned MaskSize, const RegisterBank &RegBank) {
|
||||||
// Build the value mapping.
|
// Build the value mapping.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user