mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	PPC: Support dynamic allocas with large alignment
Support for dynamic stack alignments in the PPC backend has been unfinished, in part because it depends on dynamic stack realignment (which I only just recently implemented fully). Now we can also support dynamic allocas with higher than the default target stack alignment (16 bytes). In order to round-up the requested size to the maximum requested alignment, we need an additional register to hold the rounded-up size. We're already using one scavenged register to hold the previous stack-pointer value (which needs to be stored with the signal-safe stdux update), and so when we have dynamic allocas and a large alignment, we allocate two emergency spill slots for the scavenger. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186562 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		@@ -1237,8 +1237,12 @@ PPCFrameLowering::addScavengingSpillSlot(MachineFunction &MF,
 | 
			
		||||
                                                       RC->getAlignment(),
 | 
			
		||||
                                                       false));
 | 
			
		||||
 | 
			
		||||
    // Might we have over-aligned allocas?
 | 
			
		||||
    bool HasAlVars = MFI->hasVarSizedObjects() &&
 | 
			
		||||
                     MFI->getMaxAlignment() > getStackAlignment();
 | 
			
		||||
 | 
			
		||||
    // These kinds of spills might need two registers.
 | 
			
		||||
    if (spillsCR(MF) || spillsVRSAVE(MF))
 | 
			
		||||
    if (spillsCR(MF) || spillsVRSAVE(MF) || HasAlVars)
 | 
			
		||||
      RS->addScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
 | 
			
		||||
                                                         RC->getAlignment(),
 | 
			
		||||
                                                         false));
 | 
			
		||||
 
 | 
			
		||||
@@ -269,8 +269,8 @@ void PPCRegisterInfo::lowerDynamicAlloc(MachineBasicBlock::iterator II) const {
 | 
			
		||||
  // Get stack alignments.
 | 
			
		||||
  unsigned TargetAlign = MF.getTarget().getFrameLowering()->getStackAlignment();
 | 
			
		||||
  unsigned MaxAlign = MFI->getMaxAlignment();
 | 
			
		||||
  if (MaxAlign > TargetAlign)
 | 
			
		||||
    report_fatal_error("Dynamic alloca with large aligns not supported");
 | 
			
		||||
  assert((maxCallFrameSize & (MaxAlign-1)) == 0 &&
 | 
			
		||||
         "Maximum call-frame size not sufficiently aligned");
 | 
			
		||||
 | 
			
		||||
  // Determine the previous frame's address.  If FrameSize can't be
 | 
			
		||||
  // represented as 16 bits or we need special alignment, then we load the
 | 
			
		||||
@@ -295,40 +295,62 @@ void PPCRegisterInfo::lowerDynamicAlloc(MachineBasicBlock::iterator II) const {
 | 
			
		||||
      .addImm(0)
 | 
			
		||||
      .addReg(PPC::R1);
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
  bool KillNegSizeReg = MI.getOperand(1).isKill();
 | 
			
		||||
  unsigned NegSizeReg = MI.getOperand(1).getReg();
 | 
			
		||||
 | 
			
		||||
  // Grow the stack and update the stack pointer link, then determine the
 | 
			
		||||
  // address of new allocated space.
 | 
			
		||||
  if (LP64) {
 | 
			
		||||
    if (MaxAlign > TargetAlign) {
 | 
			
		||||
      unsigned UnalNegSizeReg = NegSizeReg;
 | 
			
		||||
      NegSizeReg = MF.getRegInfo().createVirtualRegister(G8RC);
 | 
			
		||||
 | 
			
		||||
      // Unfortunately, there is no andi, only andi., and we can't insert that
 | 
			
		||||
      // here because we might clobber cr0 while it is live.
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::LI8), NegSizeReg)
 | 
			
		||||
        .addImm(~(MaxAlign-1));
 | 
			
		||||
 | 
			
		||||
      unsigned NegSizeReg1 = NegSizeReg;
 | 
			
		||||
      NegSizeReg = MF.getRegInfo().createVirtualRegister(G8RC);
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::AND8), NegSizeReg)
 | 
			
		||||
        .addReg(UnalNegSizeReg, getKillRegState(KillNegSizeReg))
 | 
			
		||||
        .addReg(NegSizeReg1, RegState::Kill);
 | 
			
		||||
      KillNegSizeReg = true;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    BuildMI(MBB, II, dl, TII.get(PPC::STDUX), PPC::X1)
 | 
			
		||||
      .addReg(Reg, RegState::Kill)
 | 
			
		||||
      .addReg(PPC::X1)
 | 
			
		||||
      .addReg(MI.getOperand(1).getReg());
 | 
			
		||||
    if (!MI.getOperand(1).isKill())
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::ADDI8), MI.getOperand(0).getReg())
 | 
			
		||||
        .addReg(PPC::X1)
 | 
			
		||||
        .addImm(maxCallFrameSize);
 | 
			
		||||
    else
 | 
			
		||||
      // Implicitly kill the register.
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::ADDI8), MI.getOperand(0).getReg())
 | 
			
		||||
        .addReg(PPC::X1)
 | 
			
		||||
        .addImm(maxCallFrameSize)
 | 
			
		||||
        .addReg(MI.getOperand(1).getReg(), RegState::ImplicitKill);
 | 
			
		||||
      .addReg(NegSizeReg, getKillRegState(KillNegSizeReg));
 | 
			
		||||
    BuildMI(MBB, II, dl, TII.get(PPC::ADDI8), MI.getOperand(0).getReg())
 | 
			
		||||
      .addReg(PPC::X1)
 | 
			
		||||
      .addImm(maxCallFrameSize);
 | 
			
		||||
  } else {
 | 
			
		||||
    if (MaxAlign > TargetAlign) {
 | 
			
		||||
      unsigned UnalNegSizeReg = NegSizeReg;
 | 
			
		||||
      NegSizeReg = MF.getRegInfo().createVirtualRegister(GPRC);
 | 
			
		||||
 | 
			
		||||
      // Unfortunately, there is no andi, only andi., and we can't insert that
 | 
			
		||||
      // here because we might clobber cr0 while it is live.
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::LI), NegSizeReg)
 | 
			
		||||
        .addImm(~(MaxAlign-1));
 | 
			
		||||
 | 
			
		||||
      unsigned NegSizeReg1 = NegSizeReg;
 | 
			
		||||
      NegSizeReg = MF.getRegInfo().createVirtualRegister(GPRC);
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::AND), NegSizeReg)
 | 
			
		||||
        .addReg(UnalNegSizeReg, getKillRegState(KillNegSizeReg))
 | 
			
		||||
        .addReg(NegSizeReg1, RegState::Kill);
 | 
			
		||||
      KillNegSizeReg = true;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    BuildMI(MBB, II, dl, TII.get(PPC::STWUX), PPC::R1)
 | 
			
		||||
      .addReg(Reg, RegState::Kill)
 | 
			
		||||
      .addReg(PPC::R1)
 | 
			
		||||
      .addReg(MI.getOperand(1).getReg());
 | 
			
		||||
 | 
			
		||||
    if (!MI.getOperand(1).isKill())
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::ADDI), MI.getOperand(0).getReg())
 | 
			
		||||
        .addReg(PPC::R1)
 | 
			
		||||
        .addImm(maxCallFrameSize);
 | 
			
		||||
    else
 | 
			
		||||
      // Implicitly kill the register.
 | 
			
		||||
      BuildMI(MBB, II, dl, TII.get(PPC::ADDI), MI.getOperand(0).getReg())
 | 
			
		||||
        .addReg(PPC::R1)
 | 
			
		||||
        .addImm(maxCallFrameSize)
 | 
			
		||||
        .addReg(MI.getOperand(1).getReg(), RegState::ImplicitKill);
 | 
			
		||||
      .addReg(NegSizeReg, getKillRegState(KillNegSizeReg));
 | 
			
		||||
    BuildMI(MBB, II, dl, TII.get(PPC::ADDI), MI.getOperand(0).getReg())
 | 
			
		||||
      .addReg(PPC::R1)
 | 
			
		||||
      .addImm(maxCallFrameSize);
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
  // Discard the DYNALLOC instruction.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user