OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hasStackFrame
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.h
44
///
HasStackFrame
- True if this function has a stack frame. Set by
46
bool
HasStackFrame
;
81
: BytesInStackArgArea(0), ArgumentStackToRestore(0),
HasStackFrame
(false),
87
: BytesInStackArgArea(0), ArgumentStackToRestore(0),
HasStackFrame
(false),
102
bool
hasStackFrame
() const { return
HasStackFrame
; }
103
void setHasStackFrame(bool s) {
HasStackFrame
= s; }
/external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h
54
///
HasStackFrame
- True if this function has a stack frame. Set by
56
bool
HasStackFrame
;
66
/// FramePtrSpillOffset - If
HasStackFrame
, this records the frame pointer
125
ArgRegsSaveSize(0), ReturnRegsCount(0),
HasStackFrame
(false),
148
bool
hasStackFrame
() const { return
HasStackFrame
; }
149
void setHasStackFrame(bool s) {
HasStackFrame
= s; }
Completed in 46 milliseconds