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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFrameInfo.cpp 166 if (adjustsStack() && TFI->hasReservedCallFrame(MF))
175 if (adjustsStack() || hasVarSizedObjects() ||
201 AdjustsStack = true;
206 AdjustsStack = true;
PrologEpilogInserter.cpp 226 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
254 // must be called before this function in order to set the AdjustsStack
300 /// Calculate the MaxCallFrameSize and AdjustsStack
309 bool AdjustsStack = MFI.adjustsStack();
326 AdjustsStack = true;
332 AdjustsStack = true;
337 MFI.adjustsStack() == AdjustsStack));
338 MFI.setAdjustsStack(AdjustsStack);
    [all...]
MIRPrinter.cpp 345 YamlMFI.AdjustsStack = MFI.adjustsStack();
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 269 bool AdjustsStack = false;
575 bool adjustsStack() const { return AdjustsStack; }
576 void setAdjustsStack(bool V) { AdjustsStack = V; }
607 /// Computes the maximum size of a callframe and the AdjustsStack property.
MIRYamlMapping.h 602 bool AdjustsStack = false;
624 AdjustsStack == Other.AdjustsStack && HasCalls == Other.HasCalls &&
647 YamlIO.mapOptional("adjustsStack", MFI.AdjustsStack, false);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 695 MFI.setAdjustsStack(YamlMFI.AdjustsStack);

Completed in 136 milliseconds