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

/external/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp121 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
153 // and MaxCallFrameSize variables.
184 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
192 unsigned MaxCallFrameSize = 0; local
212 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
223 MFI->setMaxCallFrameSize(MaxCallFrameSize);
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h193 /// MaxCallFrameSize - This contains the size of the largest call frame if the
199 unsigned MaxCallFrameSize; member in class:llvm::MachineFrameInfo
247 MaxCallFrameSize = 0;
477 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
478 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }

Completed in 2084 milliseconds