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

/external/llvm/lib/Target/Mips/
H A DMipsMachineFunction.h50 unsigned MaxCallFrameSize; member in class:llvm::MipsFunctionInfo
59 MaxCallFrameSize(0), EmitNOAT(false)
102 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
103 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
H A DMipsISelLowering.cpp2390 unsigned MaxCallFrameSize = MipsFI->getMaxCallFrameSize(); local
2392 if (MaxCallFrameSize < NextStackOffset) {
/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.h181 /// MaxCallFrameSize - This contains the size of the largest call frame if the
187 unsigned MaxCallFrameSize; member in class:llvm::MachineFrameInfo
228 MaxCallFrameSize = 0;
438 unsigned getMaxCallFrameSize() const { return MaxCallFrameSize; }
439 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }

Completed in 147 milliseconds