Searched refs:MaxCallFrameSize (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h187 /// MaxCallFrameSize - This contains the size of the largest call frame if the
193 unsigned MaxCallFrameSize; member in class:llvm::MachineFrameInfo
237 MaxCallFrameSize = 0;
458 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
459 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp76 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
113 // and MaxCallFrameSize variables.
137 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
145 unsigned MaxCallFrameSize = 0; local
165 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
176 MFI->setMaxCallFrameSize(MaxCallFrameSize);

Completed in 61 milliseconds