OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isFreeCall
(Results
1 - 7
of
7
) sorted by null
/external/llvm/include/llvm/Analysis/
MemoryBuiltins.h
75
///
isFreeCall
- Returns non-null if the value is a call to the builtin free()
76
const CallInst *
isFreeCall
(const Value *I);
78
static inline CallInst *
isFreeCall
(Value *I) {
79
return const_cast<CallInst*>(
isFreeCall
((const Value*)I));
/external/llvm/lib/Analysis/
MemoryBuiltins.cpp
187
///
isFreeCall
- Returns non-null if the value is a call to the builtin free()
188
const CallInst *llvm::
isFreeCall
(const Value *I) {
MemoryDependenceAnalysis.cpp
145
if (const CallInst *CI =
isFreeCall
(Inst)) {
[
all
...]
/external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp
265
} else if (
isFreeCall
(U)) {
468
isFreeCall
(&cast<Instruction>(*II))) {
/external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp
429
if (CallInst *F =
isFreeCall
(Inst)) {
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
[
all
...]
InstCombineCalls.cpp
174
if (
isFreeCall
(&CI))
[
all
...]
Completed in 839 milliseconds