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 177 /// MaxCallFrameSize - This contains the size of the largest call frame if the
183 unsigned MaxCallFrameSize;
223 MaxCallFrameSize = 0;
428 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
429 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 74 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
110 // and MaxCallFrameSize variables.
143 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
152 unsigned MaxCallFrameSize = 0;
172 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
183 MFI->setMaxCallFrameSize(MaxCallFrameSize);

Completed in 33 milliseconds