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 193 /// MaxCallFrameSize - This contains the size of the largest call frame if the
199 unsigned MaxCallFrameSize;
247 MaxCallFrameSize = 0;
477 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
478 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 121 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
153 // and MaxCallFrameSize variables.
184 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
192 unsigned MaxCallFrameSize = 0;
212 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
223 MFI->setMaxCallFrameSize(MaxCallFrameSize);
    [all...]

Completed in 86 milliseconds