LLVM  4.0.0
Classes | Public Member Functions | Static Public Member Functions | Protected Attributes | List of all members
llvm::CCState Class Reference

CCState - This class holds information needed while lowering arguments and return values. More...

#include <CallingConvLower.h>

Inheritance diagram for llvm::CCState:
[legend]
Collaboration diagram for llvm::CCState:
[legend]

Public Member Functions

 CCState (CallingConv::ID CC, bool isVarArg, MachineFunction &MF, SmallVectorImpl< CCValAssign > &locs, LLVMContext &C)
 
void addLoc (const CCValAssign &V)
 
LLVMContextgetContext () const
 
MachineFunctiongetMachineFunction () const
 
CallingConv::ID getCallingConv () const
 
bool isVarArg () const
 
unsigned getNextStackOffset () const
 getNextStackOffset - Return the next stack offset such that all stack slots satisfy their alignment requirements. More...
 
unsigned getAlignedCallFrameSize () const
 getAlignedCallFrameSize - Return the size of the call frame needed to be able to store all arguments and such that the alignment requirement of each of the arguments is satisfied. More...
 
bool isAllocated (unsigned Reg) const
 isAllocated - Return true if the specified register (or an alias) is allocated. More...
 
void AnalyzeFormalArguments (const SmallVectorImpl< ISD::InputArg > &Ins, CCAssignFn Fn)
 AnalyzeFormalArguments - Analyze an array of argument values, incorporating info about the formals into this state. More...
 
void AnalyzeArguments (const SmallVectorImpl< ISD::InputArg > &Ins, CCAssignFn Fn)
 The function will invoke AnalyzeFormalArguments. More...
 
void AnalyzeReturn (const SmallVectorImpl< ISD::OutputArg > &Outs, CCAssignFn Fn)
 AnalyzeReturn - Analyze the returned values of a return, incorporating info about the result values into this state. More...
 
bool CheckReturn (const SmallVectorImpl< ISD::OutputArg > &ArgsFlags, CCAssignFn Fn)
 CheckReturn - Analyze the return values of a function, returning true if the return can be performed without sret-demotion, and false otherwise. More...
 
void AnalyzeCallOperands (const SmallVectorImpl< ISD::OutputArg > &Outs, CCAssignFn Fn)
 AnalyzeCallOperands - Analyze the outgoing arguments to a call, incorporating info about the passed values into this state. More...
 
void AnalyzeCallOperands (SmallVectorImpl< MVT > &ArgVTs, SmallVectorImpl< ISD::ArgFlagsTy > &Flags, CCAssignFn Fn)
 AnalyzeCallOperands - Same as above except it takes vectors of types and argument flags. More...
 
void AnalyzeArguments (const SmallVectorImpl< ISD::OutputArg > &Outs, CCAssignFn Fn)
 The function will invoke AnalyzeCallOperands. More...
 
void AnalyzeCallResult (const SmallVectorImpl< ISD::InputArg > &Ins, CCAssignFn Fn)
 AnalyzeCallResult - Analyze the return values of a call, incorporating info about the passed values into this state. More...
 
bool IsShadowAllocatedReg (unsigned Reg) const
 A shadow allocated register is a register that was allocated but wasn't added to the location list (Locs). More...
 
void AnalyzeCallResult (MVT VT, CCAssignFn Fn)
 AnalyzeCallResult - Same as above except it's specialized for calls which produce a single value. More...
 
unsigned getFirstUnallocated (ArrayRef< MCPhysReg > Regs) const
 getFirstUnallocated - Return the index of the first unallocated register in the set, or Regs.size() if they are all allocated. More...
 
unsigned AllocateReg (unsigned Reg)
 AllocateReg - Attempt to allocate one register. More...
 
unsigned AllocateReg (unsigned Reg, unsigned ShadowReg)
 Version of AllocateReg with extra register to be shadowed. More...
 
unsigned AllocateReg (ArrayRef< MCPhysReg > Regs)
 AllocateReg - Attempt to allocate one of the specified registers. More...
 
unsigned AllocateRegBlock (ArrayRef< MCPhysReg > Regs, unsigned RegsRequired)
 AllocateRegBlock - Attempt to allocate a block of RegsRequired consecutive registers. More...
 
unsigned AllocateReg (ArrayRef< MCPhysReg > Regs, const MCPhysReg *ShadowRegs)
 Version of AllocateReg with list of registers to be shadowed. More...
 
unsigned AllocateStack (unsigned Size, unsigned Align)
 AllocateStack - Allocate a chunk of stack space with the specified size and alignment. More...
 
void ensureMaxAlignment (unsigned Align)
 
unsigned AllocateStack (unsigned Size, unsigned Align, unsigned ShadowReg)
 Version of AllocateStack with extra register to be shadowed. More...
 
unsigned AllocateStack (unsigned Size, unsigned Align, ArrayRef< MCPhysReg > ShadowRegs)
 Version of AllocateStack with list of extra registers to be shadowed. More...
 
void HandleByVal (unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags)
 Allocate space on the stack large enough to pass an argument by value. More...
 
unsigned getInRegsParamsCount () const
 
unsigned getInRegsParamsProcessed () const
 
void getInRegsParamInfo (unsigned InRegsParamRecordIndex, unsigned &BeginReg, unsigned &EndReg) const
 
void addInRegsParamInfo (unsigned RegBegin, unsigned RegEnd)
 
bool nextInRegsParam ()
 
void clearByValRegsInfo ()
 
void rewindByValRegsInfo ()
 
ParmContext getCallOrPrologue () const
 
SmallVectorImpl
< llvm::CCValAssign > & 
getPendingLocs ()
 
void getRemainingRegParmsForType (SmallVectorImpl< MCPhysReg > &Regs, MVT VT, CCAssignFn Fn)
 Compute the remaining unused register parameters that would be used for the given value type. More...
 
void analyzeMustTailForwardedRegisters (SmallVectorImpl< ForwardedRegister > &Forwards, ArrayRef< MVT > RegParmTypes, CCAssignFn Fn)
 Compute the set of registers that need to be preserved and forwarded to any musttail calls. More...
 
template<class T >
void AnalyzeArgumentsSecondPass (const SmallVectorImpl< T > &Args, CCAssignFn Fn)
 The function runs an additional analysis pass over function arguments. More...
 

Static Public Member Functions

static bool resultsCompatible (CallingConv::ID CalleeCC, CallingConv::ID CallerCC, MachineFunction &MF, LLVMContext &C, const SmallVectorImpl< ISD::InputArg > &Ins, CCAssignFn CalleeFn, CCAssignFn CallerFn)
 Returns true if the results of the two calling conventions are compatible. More...
 

Protected Attributes

ParmContext CallOrPrologue
 

Detailed Description

CCState - This class holds information needed while lowering arguments and return values.

It captures which registers are already assigned and which stack slots are used. It provides accessors to allocate these values.

Definition at line 194 of file CallingConvLower.h.

Constructor & Destructor Documentation

CCState::CCState ( CallingConv::ID  CC,
bool  isVarArg,
MachineFunction MF,
SmallVectorImpl< CCValAssign > &  locs,
LLVMContext C 
)

Member Function Documentation

void llvm::CCState::addInRegsParamInfo ( unsigned  RegBegin,
unsigned  RegEnd 
)
inline
void llvm::CCState::addLoc ( const CCValAssign V)
inline
unsigned llvm::CCState::AllocateReg ( unsigned  Reg)
inline
unsigned llvm::CCState::AllocateReg ( unsigned  Reg,
unsigned  ShadowReg 
)
inline

Version of AllocateReg with extra register to be shadowed.

Definition at line 366 of file CallingConvLower.h.

References isAllocated().

unsigned llvm::CCState::AllocateReg ( ArrayRef< MCPhysReg Regs)
inline

AllocateReg - Attempt to allocate one of the specified registers.

If none are available, return zero. Otherwise, return the first one available, marking it and any aliases as allocated.

Definition at line 376 of file CallingConvLower.h.

References getFirstUnallocated(), and llvm::ArrayRef< T >::size().

unsigned llvm::CCState::AllocateReg ( ArrayRef< MCPhysReg Regs,
const MCPhysReg ShadowRegs 
)
inline

Version of AllocateReg with list of registers to be shadowed.

Definition at line 417 of file CallingConvLower.h.

References getFirstUnallocated(), and llvm::ArrayRef< T >::size().

unsigned llvm::CCState::AllocateRegBlock ( ArrayRef< MCPhysReg Regs,
unsigned  RegsRequired 
)
inline

AllocateRegBlock - Attempt to allocate a block of RegsRequired consecutive registers.

If this is not possible, return zero. Otherwise, return the first register of the block that were allocated, marking the entire block as allocated.

Definition at line 390 of file CallingConvLower.h.

References isAllocated(), and llvm::ArrayRef< T >::size().

Referenced by llvm::CC_ARM_AAPCS_Custom_Aggregate().

unsigned llvm::CCState::AllocateStack ( unsigned  Size,
unsigned  Align 
)
inline
unsigned llvm::CCState::AllocateStack ( unsigned  Size,
unsigned  Align,
unsigned  ShadowReg 
)
inline

Version of AllocateStack with extra register to be shadowed.

Definition at line 447 of file CallingConvLower.h.

References AllocateStack().

unsigned llvm::CCState::AllocateStack ( unsigned  Size,
unsigned  Align,
ArrayRef< MCPhysReg ShadowRegs 
)
inline

Version of AllocateStack with list of extra registers to be shadowed.

Note that, unlike AllocateReg, this shadows ALL of the shadow registers.

Definition at line 454 of file CallingConvLower.h.

References AllocateStack(), i, and llvm::ArrayRef< T >::size().

void llvm::CCState::AnalyzeArguments ( const SmallVectorImpl< ISD::InputArg > &  Ins,
CCAssignFn  Fn 
)
inline

The function will invoke AnalyzeFormalArguments.

Definition at line 300 of file CallingConvLower.h.

References AnalyzeFormalArguments().

Referenced by AnalyzeArgumentsSecondPass().

void llvm::CCState::AnalyzeArguments ( const SmallVectorImpl< ISD::OutputArg > &  Outs,
CCAssignFn  Fn 
)
inline

The function will invoke AnalyzeCallOperands.

Definition at line 328 of file CallingConvLower.h.

References AnalyzeCallOperands().

template<class T >
void llvm::CCState::AnalyzeArgumentsSecondPass ( const SmallVectorImpl< T > &  Args,
CCAssignFn  Fn 
)
inline

The function runs an additional analysis pass over function arguments.

It will mark each argument with the attribute flag SecArgPass. After running, it will sort the locs list.

Creates similar argument list to Args in which each argument is marked using SecArgPass flag.

Definition at line 545 of file CallingConvLower.h.

References A, AnalyzeArguments(), B, llvm::SmallVectorTemplateCommon< T >::begin(), E, llvm::SmallVectorTemplateCommon< T >::end(), llvm::CCValAssign::getValNo(), merge, llvm::SmallVectorTemplateBase< T, isPodLike< T >::value >::push_back(), and std::swap().

void CCState::AnalyzeCallOperands ( const SmallVectorImpl< ISD::OutputArg > &  Outs,
CCAssignFn  Fn 
)

AnalyzeCallOperands - Analyze the outgoing arguments to a call, incorporating info about the passed values into this state.

Analyze the outgoing arguments to a call, incorporating info about the passed values into this state.

Definition at line 139 of file CallingConvLower.cpp.

References llvm::dbgs(), llvm::CCValAssign::Full, llvm::EVT::getEVTString(), i, llvm_unreachable, and llvm::SmallVectorTemplateCommon< T, typename >::size().

Referenced by AnalyzeArguments(), llvm::analyzeBuiltinArguments(), llvm::SystemZCCState::AnalyzeCallOperands(), llvm::MipsCCState::AnalyzeCallOperands(), llvm::analyzeStandardArguments(), AnalyzeVarArgs(), llvm::SparcTargetLowering::LowerCall_32(), and llvm::SparcTargetLowering::LowerCall_64().

void CCState::AnalyzeCallOperands ( SmallVectorImpl< MVT > &  ArgVTs,
SmallVectorImpl< ISD::ArgFlagsTy > &  Flags,
CCAssignFn  Fn 
)

AnalyzeCallOperands - Same as above except it takes vectors of types and argument flags.

Same as above except it takes vectors of types and argument flags.

Definition at line 156 of file CallingConvLower.cpp.

References llvm::dbgs(), llvm::CCValAssign::Full, llvm::EVT::getEVTString(), i, llvm_unreachable, and llvm::SmallVectorTemplateCommon< T >::size().

void CCState::AnalyzeCallResult ( const SmallVectorImpl< ISD::InputArg > &  Ins,
CCAssignFn  Fn 
)

AnalyzeCallResult - Analyze the return values of a call, incorporating info about the passed values into this state.

Analyze the return values of a call, incorporating info about the passed values into this state.

Definition at line 175 of file CallingConvLower.cpp.

References llvm::dbgs(), fuzzer::Flags, llvm::CCValAssign::Full, llvm::EVT::getEVTString(), i, llvm_unreachable, and llvm::SmallVectorTemplateCommon< T, typename >::size().

Referenced by llvm::MipsCCState::AnalyzeCallResult(), AnalyzeRetResult(), llvm::SystemZTargetLowering::LowerCall(), llvm::SparcTargetLowering::LowerCall_32(), llvm::HexagonTargetLowering::LowerCallResult(), and resultsCompatible().

void CCState::AnalyzeCallResult ( MVT  VT,
CCAssignFn  Fn 
)

AnalyzeCallResult - Same as above except it's specialized for calls which produce a single value.

Same as above except it's specialized for calls that produce a single value.

Definition at line 191 of file CallingConvLower.cpp.

References llvm::dbgs(), llvm::CCValAssign::Full, llvm::EVT::getEVTString(), and llvm_unreachable.

void CCState::AnalyzeFormalArguments ( const SmallVectorImpl< ISD::InputArg > &  Ins,
CCAssignFn  Fn 
)
void CCState::analyzeMustTailForwardedRegisters ( SmallVectorImpl< ForwardedRegister > &  Forwards,
ArrayRef< MVT RegParmTypes,
CCAssignFn  Fn 
)
void CCState::AnalyzeReturn ( const SmallVectorImpl< ISD::OutputArg > &  Outs,
CCAssignFn  Fn 
)

AnalyzeReturn - Analyze the returned values of a return, incorporating info about the result values into this state.

Analyze the returned values of a return, incorporating info about the result values into this state.

Definition at line 121 of file CallingConvLower.cpp.

References llvm::dbgs(), llvm::CCValAssign::Full, llvm::EVT::getEVTString(), i, llvm_unreachable, and llvm::SmallVectorTemplateCommon< T, typename >::size().

Referenced by AnalyzeRetResult(), llvm::MipsCCState::AnalyzeReturn(), llvm::AMDGPUTargetLowering::AnalyzeReturn(), llvm::HexagonTargetLowering::LowerReturn(), llvm::SystemZTargetLowering::LowerReturn(), llvm::SparcTargetLowering::LowerReturn_32(), and llvm::SparcTargetLowering::LowerReturn_64().

bool CCState::CheckReturn ( const SmallVectorImpl< ISD::OutputArg > &  Outs,
CCAssignFn  Fn 
)

CheckReturn - Analyze the return values of a function, returning true if the return can be performed without sret-demotion, and false otherwise.

Analyze the return values of a function, returning true if the return can be performed without sret-demotion and false otherwise.

Definition at line 107 of file CallingConvLower.cpp.

References llvm::CCValAssign::Full, i, and llvm::SmallVectorTemplateCommon< T, typename >::size().

Referenced by llvm::SystemZTargetLowering::CanLowerReturn(), and llvm::MipsCCState::CheckReturn().

void llvm::CCState::clearByValRegsInfo ( )
inline

Definition at line 503 of file CallingConvLower.h.

References llvm::SmallVectorImpl< T >::clear().

Referenced by CCState().

void llvm::CCState::ensureMaxAlignment ( unsigned  Align)
inline
unsigned llvm::CCState::getAlignedCallFrameSize ( ) const
inline

getAlignedCallFrameSize - Return the size of the call frame needed to be able to store all arguments and such that the alignment requirement of each of the arguments is satisfied.

Definition at line 284 of file CallingConvLower.h.

References llvm::alignTo().

CallingConv::ID llvm::CCState::getCallingConv ( ) const
inline

Definition at line 272 of file CallingConvLower.h.

Referenced by llvm::MipsTargetLowering::HandleByVal().

ParmContext llvm::CCState::getCallOrPrologue ( ) const
inline

Definition at line 513 of file CallingConvLower.h.

References CallOrPrologue.

LLVMContext& llvm::CCState::getContext ( ) const
inline
unsigned llvm::CCState::getFirstUnallocated ( ArrayRef< MCPhysReg Regs) const
inline
void llvm::CCState::getInRegsParamInfo ( unsigned  InRegsParamRecordIndex,
unsigned BeginReg,
unsigned EndReg 
) const
inline
unsigned llvm::CCState::getInRegsParamsCount ( ) const
inline
unsigned llvm::CCState::getInRegsParamsProcessed ( ) const
inline

Definition at line 473 of file CallingConvLower.h.

MachineFunction& llvm::CCState::getMachineFunction ( ) const
inline
unsigned llvm::CCState::getNextStackOffset ( ) const
inline

getNextStackOffset - Return the next stack offset such that all stack slots satisfy their alignment requirements.

Definition at line 277 of file CallingConvLower.h.

Referenced by llvm::CC_ARM_AAPCS_Custom_Aggregate().

SmallVectorImpl<llvm::CCValAssign>& llvm::CCState::getPendingLocs ( )
inline
void CCState::getRemainingRegParmsForType ( SmallVectorImpl< MCPhysReg > &  Regs,
MVT  VT,
CCAssignFn  Fn 
)

Compute the remaining unused register parameters that would be used for the given value type.

This is useful when varargs are passed in the registers that normal prototyped parameters would be passed in, or for implementing perfect forwarding.

Definition at line 211 of file CallingConvLower.cpp.

References assert(), llvm::dbgs(), E, fuzzer::Flags, llvm::CCValAssign::Full, llvm::EVT::getEVTString(), I, isValueTypeInRegForCC(), llvm_unreachable, llvm::SmallVectorTemplateBase< T, isPodLike >::push_back(), and llvm::ISD::ArgFlagsTy::setInReg().

Referenced by analyzeMustTailForwardedRegisters().

void CCState::HandleByVal ( unsigned  ValNo,
MVT  ValVT,
MVT  LocVT,
CCValAssign::LocInfo  LocInfo,
int  MinSize,
int  MinAlign,
ISD::ArgFlagsTy  ArgFlags 
)

Allocate space on the stack large enough to pass an argument by value.

The size and alignment information of the argument is encoded in its parameter attribute.

Definition at line 46 of file CallingConvLower.cpp.

References addLoc(), llvm::alignTo(), AllocateStack(), ensureMaxAlignment(), llvm::ISD::ArgFlagsTy::getByValAlign(), llvm::ISD::ArgFlagsTy::getByValSize(), llvm::CCValAssign::getMem(), llvm::MachineFunction::getSubtarget(), llvm::TargetSubtargetInfo::getTargetLowering(), llvm::TargetLowering::HandleByVal(), llvm::MinAlign(), and Offset.

Referenced by AnalyzeArguments().

bool llvm::CCState::isAllocated ( unsigned  Reg) const
inline
bool CCState::IsShadowAllocatedReg ( unsigned  Reg) const

A shadow allocated register is a register that was allocated but wasn't added to the location list (Locs).

Returns
true if the register was allocated as shadow or false otherwise.

Definition at line 69 of file CallingConvLower.cpp.

References isAllocated(), and llvm::MCRegAliasIterator::isValid().

Referenced by llvm::CC_X86_VectorCallAssignRegister().

bool llvm::CCState::isVarArg ( ) const
inline

Definition at line 273 of file CallingConvLower.h.

Referenced by AnalyzeArguments(), and CC_MipsO32().

bool llvm::CCState::nextInRegsParam ( )
inline
bool CCState::resultsCompatible ( CallingConv::ID  CalleeCC,
CallingConv::ID  CallerCC,
MachineFunction MF,
LLVMContext C,
const SmallVectorImpl< ISD::InputArg > &  Ins,
CCAssignFn  CalleeFn,
CCAssignFn  CallerFn 
)
static

Returns true if the results of the two calling conventions are compatible.

This is usually part of the check for tailcall eligibility.

Definition at line 271 of file CallingConvLower.cpp.

References AnalyzeCallResult(), E, llvm::CCValAssign::getLocInfo(), llvm::CCValAssign::getLocMemOffset(), llvm::CCValAssign::getLocReg(), I, llvm::CCValAssign::isRegLoc(), and llvm::SmallVectorTemplateCommon< T >::size().

void llvm::CCState::rewindByValRegsInfo ( )
inline

Definition at line 509 of file CallingConvLower.h.

Member Data Documentation

ParmContext llvm::CCState::CallOrPrologue
protected

Definition at line 260 of file CallingConvLower.h.

Referenced by getCallOrPrologue().


The documentation for this class was generated from the following files: