HomeSort by relevance Sort by last modified time
    Searched refs:MaxCallFrameSize (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 203 /// MaxCallFrameSize - This contains the size of the largest call frame if the
209 unsigned MaxCallFrameSize;
264 MaxCallFrameSize = 0;
504 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
505 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 170 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
202 // and MaxCallFrameSize variables.
233 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
241 unsigned MaxCallFrameSize = 0;
261 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
272 MFI->setMaxCallFrameSize(MaxCallFrameSize);
    [all...]

Completed in 43 milliseconds