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

/external/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp82 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
119 // and MaxCallFrameSize variables.
150 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
158 unsigned MaxCallFrameSize = 0; local
178 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
189 MFI->setMaxCallFrameSize(MaxCallFrameSize);
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h190 /// MaxCallFrameSize - This contains the size of the largest call frame if the
196 unsigned MaxCallFrameSize; member in class:llvm::MachineFrameInfo
238 MaxCallFrameSize = 0;
459 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
460 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }

Completed in 89 milliseconds