OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hasCalls
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Utils/
CloneFunction.cpp
44
bool
hasCalls
= false, hasDynamicAllocas = false, hasStaticAllocas = false;
55
hasCalls
|= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
65
CodeInfo->ContainsCalls |=
hasCalls
;
258
bool
hasCalls
= false, hasDynamicAllocas = false, hasStaticAllocas = false;
291
hasCalls
|= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
351
CodeInfo->ContainsCalls |=
hasCalls
;
/external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h
180
///
HasCalls
- Set to true if this function has any function calls.
181
bool
HasCalls
;
235
HasCalls
= false;
450
///
hasCalls
- Return true if the current function has any function calls.
451
bool
hasCalls
() const { return
HasCalls
; }
452
void setHasCalls(bool V) {
HasCalls
= V; }
Completed in 630 milliseconds