mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
[AArch64] Implement the getCSRFirstUseCost API, mirroring that in ARM64.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206473 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
207be301e3
commit
fa477d9837
@ -30,6 +30,13 @@ struct AArch64RegisterInfo : public AArch64GenRegisterInfo {
|
||||
const MCPhysReg *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
|
||||
const uint32_t *getCallPreservedMask(CallingConv::ID) const;
|
||||
|
||||
unsigned getCSRFirstUseCost() const {
|
||||
// The cost will be compared against BlockFrequency where entry has the
|
||||
// value of 1 << 14. A value of 5 will choose to spill or split really
|
||||
// cold path instead of using a callee-saved register.
|
||||
return 5;
|
||||
}
|
||||
|
||||
const uint32_t *getTLSDescCallPreservedMask() const;
|
||||
|
||||
BitVector getReservedRegs(const MachineFunction &MF) const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user