Searched defs:AdjustsStack (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp77 // 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(); local
179 AdjustsStack = true;
185 AdjustsStack = true;
188 MFI->setAdjustsStack(AdjustsStack);
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h171 /// AdjustsStack - Set to true if this function adjusts the stack -- e.g.,
174 bool AdjustsStack; member in class:llvm::MachineFrameInfo
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; }

Completed in 287 milliseconds