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 178 /// AdjustsStack - Set to true if this function adjusts the stack -- e.g.,
181 bool AdjustsStack;
243 AdjustsStack = false;
458 /// AdjustsStack - Return true if this function adjusts the stack -- e.g.,
461 bool adjustsStack() const { return AdjustsStack; }
462 void setAdjustsStack(bool V) { AdjustsStack = V; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 121 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
152 // must be called before this function in order to set the AdjustsStack
184 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
193 bool AdjustsStack = MFI->adjustsStack();
213 AdjustsStack = true;
219 AdjustsStack = true;
222 MFI->setAdjustsStack(AdjustsStack);
640 if (MFI->adjustsStack() && TFI.hasReservedCallFrame(Fn))
649 if (MFI->adjustsStack() || MFI->hasVarSizedObjects() |
    [all...]

Completed in 51 milliseconds