Add a comment above findRepresentativeClass explaining why it's
authorEric Christopher <echristo@gmail.com>
Tue, 3 Mar 2015 19:47:14 +0000 (19:47 +0000)
committerEric Christopher <echristo@gmail.com>
Tue, 3 Mar 2015 19:47:14 +0000 (19:47 +0000)
where it is so that future generations can understand.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231111 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/TargetLoweringBase.cpp

index 9048a44e745edd7d0d6b16fe9a3de0d77903bd33..07f9f663ff5747012cbf6db9200bef7f13f1f89c 100644 (file)
@@ -1144,6 +1144,10 @@ TargetLoweringBase::emitPatchPoint(MachineInstr *MI,
 
 /// findRepresentativeClass - Return the largest legal super-reg register class
 /// of the register class for the specified type and its associated "cost".
+// This function is in TargetLowering because it uses RegClassForVT which would
+// need to be moved to TargetRegisterInfo and would necessitate moving
+// isTypeLegal over as well - a massive change that would just require
+// TargetLowering having a TargetRegisterInfo class member that it would use.
 std::pair<const TargetRegisterClass *, uint8_t>
 TargetLoweringBase::findRepresentativeClass(const TargetRegisterInfo *TRI,
                                             MVT VT) const {