LLVM API Documentation

Functions | Variables
PPCFrameLowering.cpp File Reference
#include "PPCFrameLowering.h"
#include "PPCInstrBuilder.h"
#include "PPCInstrInfo.h"
#include "PPCMachineFunctionInfo.h"
#include "PPCSubtarget.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/MachineModuleInfo.h"
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/CodeGen/RegisterScavenging.h"
#include "llvm/IR/Function.h"
#include "llvm/Target/TargetOptions.h"
Include dependency graph for PPCFrameLowering.cpp:

Go to the source code of this file.

Functions

static void RemoveVRSaveCode (MachineInstr *MI)
static void HandleVRSaveUpdate (MachineInstr *MI, const TargetInstrInfo &TII)
static bool spillsCR (const MachineFunction &MF)
static bool spillsVRSAVE (const MachineFunction &MF)
static bool hasSpills (const MachineFunction &MF)
static bool hasNonRISpills (const MachineFunction &MF)
static bool MustSaveLR (const MachineFunction &MF, unsigned LR)
static void restoreCRs (bool isPPC64, bool is31, bool CR2Spilled, bool CR3Spilled, bool CR4Spilled, MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const std::vector< CalleeSavedInfo > &CSI, unsigned CSIIndex)

Variables

static const uint16_t VRRegNo []

Function Documentation

static void HandleVRSaveUpdate ( MachineInstr MI,
const TargetInstrInfo TII 
) [static]
static bool hasNonRISpills ( const MachineFunction MF) [static]
static bool hasSpills ( const MachineFunction MF) [static]
static bool MustSaveLR ( const MachineFunction MF,
unsigned  LR 
) [static]

MustSaveLR - Return true if this function requires that we save the LR register onto the stack in the prolog and restore it in the epilog of the function.

Definition at line 1057 of file PPCFrameLowering.cpp.

References llvm::MachineRegisterInfo::def_begin(), llvm::MachineRegisterInfo::def_end(), llvm::MachineFunction::getInfo(), llvm::MachineFunction::getRegInfo(), and llvm::PPCFunctionInfo::isLRStoreRequired().

Referenced by llvm::PPCFrameLowering::emitEpilogue(), llvm::PPCFrameLowering::emitPrologue(), and llvm::PPCFrameLowering::processFunctionBeforeCalleeSavedScan().

static void RemoveVRSaveCode ( MachineInstr MI) [static]

RemoveVRSaveCode - We have found that this function does not need any code to manipulate the VRSAVE register, even though it uses vector registers. This can happen when the only registers used are known to be live in or out of the function. Remove all of the VRSAVE related code from the function. FIXME: The removal of the code results in a compile failure at -O0 when the function contains a function call, as the GPR containing original VRSAVE contents is spilled and reloaded around the call. Without the prolog code, the spill instruction refers to an undefined register. This code needs to account for all uses of that GPR.

Definition at line 209 of file PPCFrameLowering.cpp.

References llvm::MachineBasicBlock::begin(), llvm::MachineFunction::begin(), llvm::MachineBasicBlock::end(), llvm::MachineFunction::end(), llvm::MachineInstr::eraseFromParent(), llvm::MachineInstr::getParent(), llvm::MachineBasicBlock::getParent(), I, and llvm::AArch64CC::MI.

Referenced by HandleVRSaveUpdate().

static void restoreCRs ( bool  isPPC64,
bool  is31,
bool  CR2Spilled,
bool  CR3Spilled,
bool  CR4Spilled,
MachineBasicBlock MBB,
MachineBasicBlock::iterator  MI,
const std::vector< CalleeSavedInfo > &  CSI,
unsigned  CSIIndex 
) [static]
static bool spillsCR ( const MachineFunction MF) [static]
static bool spillsVRSAVE ( const MachineFunction MF) [static]

Variable Documentation

const uint16_t VRRegNo[] [static]
Initial value:
 {
 PPC::V0 , PPC::V1 , PPC::V2 , PPC::V3 , PPC::V4 , PPC::V5 , PPC::V6 , PPC::V7 ,
 PPC::V8 , PPC::V9 , PPC::V10, PPC::V11, PPC::V12, PPC::V13, PPC::V14, PPC::V15,
 PPC::V16, PPC::V17, PPC::V18, PPC::V19, PPC::V20, PPC::V21, PPC::V22, PPC::V23,
 PPC::V24, PPC::V25, PPC::V26, PPC::V27, PPC::V28, PPC::V29, PPC::V30, PPC::V31
}

VRRegNo - Map from a numbered VR register to its enum value.

Definition at line 32 of file PPCFrameLowering.cpp.

Referenced by HandleVRSaveUpdate().