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

  /external/llvm/lib/Target/Mips/
MipsMachineFunction.h 52 unsigned MaxCallFrameSize;
59 MaxCallFrameSize(0)
101 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
102 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
MipsISelLowering.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 181 /// MaxCallFrameSize - This contains the size of the largest call frame if the
187 unsigned MaxCallFrameSize;
228 MaxCallFrameSize = 0;
438 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
439 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 77 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
113 // and MaxCallFrameSize variables.
146 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
155 unsigned MaxCallFrameSize = 0;
175 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
186 MFI->setMaxCallFrameSize(MaxCallFrameSize);

Completed in 620 milliseconds