OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:callssetjmp
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/Analysis/
CodeMetrics.h
29
bool
callsSetJmp
;
63
CodeMetrics() :
callsSetJmp
(false), isRecursive(false),
/external/llvm/include/llvm/CodeGen/
MachineFunction.h
123
///
CallsSetJmp
- True if the function calls setjmp or sigsetjmp. This is used
126
bool
CallsSetJmp
;
195
///
callsSetJmp
- Returns true if the function calls setjmp or sigsetjmp.
196
bool
callsSetJmp
() const {
197
return
CallsSetJmp
;
203
CallsSetJmp
= B;
/external/llvm/lib/Analysis/
InlineCost.cpp
226
callsSetJmp
= true;
255
return (Metrics.
callsSetJmp
|| Metrics.isRecursive ||
624
CallerMetrics.
callsSetJmp
|= CalleeMetrics.
callsSetJmp
;
/external/llvm/lib/CodeGen/
StackSlotColoring.cpp
741
if (MF.
callsSetJmp
())
Completed in 213 milliseconds