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 171 /// AdjustsStack - Set to true if this function adjusts the stack -- e.g.,
174 bool AdjustsStack;
229 AdjustsStack = false;
438 /// AdjustsStack - Return true if this function adjusts the stack -- e.g.,
441 bool adjustsStack() const { return AdjustsStack; }
442 void setAdjustsStack(bool V) { AdjustsStack = V; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 77 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
112 // must be called before this function in order to set the AdjustsStack
149 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
159 bool AdjustsStack = MFI->adjustsStack();
179 AdjustsStack = true;
185 AdjustsStack = true;
188 MFI->setAdjustsStack(AdjustsStack);
655 if (MFI->adjustsStack() && TFI.hasReservedCallFrame(Fn))
664 if (MFI->adjustsStack() || MFI->hasVarSizedObjects() |
    [all...]

Completed in 218 milliseconds