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 188 /// AdjustsStack - Set to true if this function adjusts the stack -- e.g.,
191 bool AdjustsStack;
260 AdjustsStack = false;
477 /// AdjustsStack - Return true if this function adjusts the stack -- e.g.,
480 bool adjustsStack() const { return AdjustsStack; }
481 void setAdjustsStack(bool V) { AdjustsStack = V; }
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 170 // Calculate the MaxCallFrameSize and AdjustsStack variables for the
201 // must be called before this function in order to set the AdjustsStack
233 /// calculateCallsInformation - Calculate the MaxCallFrameSize and AdjustsStack
242 bool AdjustsStack = MFI->adjustsStack();
262 AdjustsStack = true;
268 AdjustsStack = true;
271 MFI->setAdjustsStack(AdjustsStack);
689 if (MFI->adjustsStack() && TFI.hasReservedCallFrame(Fn))
698 if (MFI->adjustsStack() || MFI->hasVarSizedObjects() |
    [all...]

Completed in 33 milliseconds