diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-12-22 13:46:40 -0500 |
---|---|---|
committer | Matt Arsenault <arsenm2@gmail.com> | 2019-12-24 10:36:54 -0500 |
commit | 9b616415649c7312a50ec051a92ad6d9c1385e93 (patch) | |
tree | 715e3cbd93a436fff62a4997ec91fd0527fdf175 /llvm/lib/CodeGen | |
parent | a12ac7009e99c6f9e72652e34019f07df9970204 (diff) | |
download | bcm5719-llvm-9b616415649c7312a50ec051a92ad6d9c1385e93.tar.gz bcm5719-llvm-9b616415649c7312a50ec051a92ad6d9c1385e93.zip |
GlobalISel: Fix naming variables "brank" instead of "bank"
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp b/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp index 7879f717893..98e48f5fc1d 100644 --- a/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp +++ b/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp @@ -119,16 +119,16 @@ bool RegBankSelect::assignmentMatch( return false; const RegisterBank *CurRegBank = RBI->getRegBank(Reg, *MRI, *TRI); - const RegisterBank *DesiredRegBrank = ValMapping.BreakDown[0].RegBank; + const RegisterBank *DesiredRegBank = ValMapping.BreakDown[0].RegBank; // Reg is free of assignment, a simple assignment will make the // register bank to match. OnlyAssign = CurRegBank == nullptr; LLVM_DEBUG(dbgs() << "Does assignment already match: "; if (CurRegBank) dbgs() << *CurRegBank; else dbgs() << "none"; dbgs() << " against "; - assert(DesiredRegBrank && "The mapping must be valid"); - dbgs() << *DesiredRegBrank << '\n';); - return CurRegBank == DesiredRegBrank; + assert(DesiredRegBank && "The mapping must be valid"); + dbgs() << *DesiredRegBank << '\n';); + return CurRegBank == DesiredRegBank; } bool RegBankSelect::repairReg( @@ -260,11 +260,11 @@ uint64_t RegBankSelect::getRepairCost( return RBI->getBreakDownCost(ValMapping, CurRegBank); if (IsSameNumOfValues) { - const RegisterBank *DesiredRegBrank = ValMapping.BreakDown[0].RegBank; + const RegisterBank *DesiredRegBank = ValMapping.BreakDown[0].RegBank; // If we repair a definition, swap the source and destination for // the repairing. if (MO.isDef()) - std::swap(CurRegBank, DesiredRegBrank); + std::swap(CurRegBank, DesiredRegBank); // TODO: It may be possible to actually avoid the copy. // If we repair something where the source is defined by a copy // and the source of that copy is on the right bank, we can reuse @@ -276,7 +276,7 @@ uint64_t RegBankSelect::getRepairCost( // into a new virtual register. // We would also need to propagate this information in the // repairing placement. - unsigned Cost = RBI->copyCost(*DesiredRegBrank, *CurRegBank, + unsigned Cost = RBI->copyCost(*DesiredRegBank, *CurRegBank, RBI->getSizeInBits(MO.getReg(), *MRI, *TRI)); // TODO: use a dedicated constant for ImpossibleCost. if (Cost != std::numeric_limits<unsigned>::max()) |