HomeSort by: relevance | last modified time | path
    Searched refs:MaxCallFrameSize (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiFrameLowering.cpp 39 unsigned MaxCallFrameSize = MFI.getMaxCallFrameSize();
41 // If we have dynamic alloca then MaxCallFrameSize needs to be aligned so
44 MaxCallFrameSize = alignTo(MaxCallFrameSize, StackAlign);
47 MFI.setMaxCallFrameSize(MaxCallFrameSize);
51 FrameSize += MaxCallFrameSize;
66 unsigned MaxCallFrameSize = MF.getFrameInfo().getMaxCallFrameSize();
80 .addImm(MaxCallFrameSize);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFrameInfo.cpp 192 "Can only compute MaxCallFrameSize if Setup/Destroy opcode are known");
194 MaxCallFrameSize = 0;
200 MaxCallFrameSize = std::max(MaxCallFrameSize, Size);
PrologEpilogInserter.cpp 226 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
255 // and MaxCallFrameSize variables.
300 /// Calculate the MaxCallFrameSize and AdjustsStack
308 unsigned MaxCallFrameSize = 0;
325 if (Size > MaxCallFrameSize) MaxCallFrameSize = Size;
336 (MFI.getMaxCallFrameSize() == MaxCallFrameSize &&
339 MFI.setMaxCallFrameSize(MaxCallFrameSize);
MIRPrinter.cpp 347 YamlMFI.MaxCallFrameSize = MFI.isMaxCallFrameSizeComputed()
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 284 unsigned MaxCallFrameSize = ~0u;
622 //assert(isMaxCallFrameSizeComputed() && "MaxCallFrameSize not computed yet");
625 return MaxCallFrameSize;
628 return MaxCallFrameSize != ~0u;
630 void setMaxCallFrameSize(unsigned S) { MaxCallFrameSize = S; }
MIRYamlMapping.h 606 unsigned MaxCallFrameSize = ~0u; ///< ~0u means: not computed yet.
626 MaxCallFrameSize == Other.MaxCallFrameSize &&
651 YamlIO.mapOptional("maxCallFrameSize", MFI.MaxCallFrameSize, (unsigned)~0);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 697 if (YamlMFI.MaxCallFrameSize != ~0u)
698 MFI.setMaxCallFrameSize(YamlMFI.MaxCallFrameSize);

Completed in 36 milliseconds