OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AdjustsStack
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h
175
///
AdjustsStack
- Set to true if this function adjusts the stack -- e.g.,
178
bool
AdjustsStack
;
234
AdjustsStack
= false;
444
///
AdjustsStack
- Return true if this function adjusts the stack -- e.g.,
447
bool
adjustsStack
() const { return
AdjustsStack
; }
448
void setAdjustsStack(bool V) {
AdjustsStack
= V; }
/external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp
82
// Calculate the MaxCallFrameSize and
AdjustsStack
variables for the
118
// must be called before this function in order to set the
AdjustsStack
150
/// calculateCallsInformation - Calculate the MaxCallFrameSize and
AdjustsStack
159
bool
AdjustsStack
= MFI->
adjustsStack
();
179
AdjustsStack
= true;
185
AdjustsStack
= true;
188
MFI->setAdjustsStack(
AdjustsStack
);
664
if (MFI->
adjustsStack
() && TFI.hasReservedCallFrame(Fn))
673
if (MFI->
adjustsStack
() || MFI->hasVarSizedObjects() |
[
all
...]
Completed in 848 milliseconds