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 187 /// MaxCallFrameSize - This contains the size of the largest call frame if the
193 unsigned MaxCallFrameSize;
237 MaxCallFrameSize = 0;
458 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
459 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 76 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
113 // and MaxCallFrameSize variables.
137 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
145 unsigned MaxCallFrameSize = 0;
165 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
176 MFI->setMaxCallFrameSize(MaxCallFrameSize);
    [all...]

Completed in 2648 milliseconds