diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-07-24 20:35:40 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-07-24 20:35:40 +0000 |
commit | ab4cbcfda7c7cf7aa7805881f94c6877be231354 (patch) | |
tree | 4dfba9dadc2b4b9ecd6a05986dba13428c8d542b /llvm/lib/CodeGen/MIRPrinter.cpp | |
parent | bd210e638aca82850ff77832b5be8579d9950c87 (diff) | |
download | bcm5719-llvm-ab4cbcfda7c7cf7aa7805881f94c6877be231354.tar.gz bcm5719-llvm-ab4cbcfda7c7cf7aa7805881f94c6877be231354.zip |
MIR Serialization: Serialize the simple virtual register allocation hints.
This commit serializes the virtual register allocations hints of type 0.
These hints specify the preferred physical registers for allocations.
llvm-svn: 243156
Diffstat (limited to 'llvm/lib/CodeGen/MIRPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MIRPrinter.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index 2ae5466392f..574a0ddee1b 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -140,6 +140,12 @@ static void printReg(unsigned Reg, raw_ostream &OS, llvm_unreachable("Can't print this kind of register yet"); } +static void printReg(unsigned Reg, yaml::StringValue &Dest, + const TargetRegisterInfo *TRI) { + raw_string_ostream OS(Dest.Value); + printReg(Reg, OS, TRI); +} + void MIRPrinter::print(const MachineFunction &MF) { initRegisterMaskIds(MF); @@ -188,6 +194,9 @@ void MIRPrinter::convert(yaml::MachineFunction &MF, VReg.ID = I; VReg.Class = StringRef(TRI->getRegClassName(RegInfo.getRegClass(Reg))).lower(); + unsigned PreferredReg = RegInfo.getSimpleHint(Reg); + if (PreferredReg) + printReg(PreferredReg, VReg.PreferredRegister, TRI); MF.VirtualRegisters.push_back(VReg); } } |