summaryrefslogtreecommitdiff
path: root/lib/Target/AArch64/AArch64RegisterBankInfo.h
diff options
context:
space:
mode:
authorDaniel Sanders <daniel_l_sanders@apple.com>2017-01-13 11:50:34 +0000
committerDaniel Sanders <daniel_l_sanders@apple.com>2017-01-13 11:50:34 +0000
commit7f85bbe4937ac52675ce6a339cf1383d7d90afb1 (patch)
tree2f0dc79a9baabf64119eec95fa61cdbd8a8455ae /lib/Target/AArch64/AArch64RegisterBankInfo.h
parentdc79a8b464b08c8ea3397d9aa2153f739fd534d3 (diff)
[aarch64][globalisel] Move getValueMapping/getCopyMapping to AArch64GenRegisterBankInfo. NFC.
Summary: We did lose a little specificity in the assertion messages for the PartialMappingIdx enumerators in this change but this was necessary to avoid unnecessary use of 'public:' and we haven't lost anything that can't be discovered easily in lldb. Once this is tablegen-erated we could also safely remove the assertions. Depends on D27976 Reviewers: t.p.northover, ab, rovka, qcolombet Subscribers: aditya_nandakumar, aemerson, rengolin, vkalintiris, dberris, kristof.beyls, llvm-commits Differential Revision: https://reviews.llvm.org/D27978 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291900 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AArch64/AArch64RegisterBankInfo.h')
-rw-r--r--lib/Target/AArch64/AArch64RegisterBankInfo.h67
1 files changed, 22 insertions, 45 deletions
diff --git a/lib/Target/AArch64/AArch64RegisterBankInfo.h b/lib/Target/AArch64/AArch64RegisterBankInfo.h
index 7dcb44a0de4..1ad4ca5fd46 100644
--- a/lib/Target/AArch64/AArch64RegisterBankInfo.h
+++ b/lib/Target/AArch64/AArch64RegisterBankInfo.h
@@ -70,51 +70,28 @@ public:
static bool checkPartialMappingIdx(PartialMappingIdx FirstAlias,
PartialMappingIdx LastAlias,
- ArrayRef<PartialMappingIdx> Order) {
- if (Order.front() != FirstAlias)
- return false;
- if (Order.back() != LastAlias)
- return false;
- if (Order.front() > Order.back())
- return false;
-
- PartialMappingIdx Previous = Order.front();
- bool First = true;
- for (const auto &Current : Order) {
- if (First) {
- First = false;
- continue;
- }
- if (Previous + 1 != Current)
- return false;
- Previous = Current;
- }
- return true;
- }
-
- static unsigned getRegBankBaseIdxOffset(unsigned RBIdx, unsigned Size) {
- if (RBIdx == PMI_FirstGPR) {
- if (Size <= 32)
- return 0;
- if (Size <= 64)
- return 1;
- llvm_unreachable("Unexpected size");
- }
- if (RBIdx == PMI_FirstFPR) {
- if (Size <= 32)
- return 0;
- if (Size <= 64)
- return 1;
- if (Size <= 128)
- return 2;
- if (Size <= 256)
- return 3;
- if (Size <= 512)
- return 4;
- llvm_unreachable("Unexpected size");
- }
- llvm_unreachable("Unexpected bank");
-}
+ ArrayRef<PartialMappingIdx> Order);
+
+ static unsigned getRegBankBaseIdxOffset(unsigned RBIdx, unsigned Size);
+
+ /// Get the pointer to the ValueMapping representing the RegisterBank
+ /// at \p RBIdx with a size of \p Size.
+ ///
+ /// The returned mapping works for instructions with the same kind of
+ /// operands for up to 3 operands.
+ ///
+ /// \pre \p RBIdx != PartialMappingIdx::None
+ static const RegisterBankInfo::ValueMapping *
+ getValueMapping(PartialMappingIdx RBIdx, unsigned Size);
+
+ /// Get the pointer to the ValueMapping of the operands of a copy
+ /// instruction from a GPR or FPR register to a GPR or FPR register
+ /// with a size of \p Size.
+ ///
+ /// If \p DstIsGPR is true, the destination of the copy is on GPR,
+ /// otherwise it is on FPR. Same thing for \p SrcIsGPR.
+ static const RegisterBankInfo::ValueMapping *
+ getCopyMapping(bool DstIsGPR, bool SrcIsGPR, unsigned Size);
};
/// This class provides the information for the target register banks.