Searched defs:MaxCallFrameSize (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsMachineFunction.h51 unsigned MaxCallFrameSize; member in class:llvm::MipsFunctionInfo
59 OutArgFIRange(std::make_pair(-1, 0)), MaxCallFrameSize(0), EmitNOAT(false)
86 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
87 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
/external/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp77 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
113 // and MaxCallFrameSize variables.
149 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
158 unsigned MaxCallFrameSize = 0; local
178 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
189 MFI->setMaxCallFrameSize(MaxCallFrameSize);
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h186 /// MaxCallFrameSize - This contains the size of the largest call frame if the
192 unsigned MaxCallFrameSize; member in class:llvm::MachineFrameInfo
233 MaxCallFrameSize = 0;
453 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
454 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }

Completed in 91 milliseconds