HomeSort by relevance Sort by last modified time
    Searched refs:AdjustsStack (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 172 /// AdjustsStack - Set to true if this function adjusts the stack -- e.g.,
175 bool AdjustsStack;
233 AdjustsStack = false;
443 /// AdjustsStack - Return true if this function adjusts the stack -- e.g.,
446 bool adjustsStack() const { return AdjustsStack; }
447 void setAdjustsStack(bool V) { AdjustsStack = V; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 76 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
112 // must be called before this function in order to set the AdjustsStack
137 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
146 bool AdjustsStack = MFI->adjustsStack();
166 AdjustsStack = true;
172 AdjustsStack = true;
175 MFI->setAdjustsStack(AdjustsStack);
643 if (MFI->adjustsStack() && TFI.hasReservedCallFrame(Fn))
652 if (MFI->adjustsStack() || MFI->hasVarSizedObjects() |
    [all...]

Completed in 42 milliseconds