OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isFreeCall
(Results
1 - 9
of
9
) sorted by null
/external/llvm/include/llvm/Analysis/
MemoryBuiltins.h
128
///
isFreeCall
- Returns non-null if the value is a call to the builtin free()
129
const CallInst *
isFreeCall
(const Value *I, const TargetLibraryInfo *TLI);
131
static inline CallInst *
isFreeCall
(Value *I, const TargetLibraryInfo *TLI) {
132
return const_cast<CallInst*>(
isFreeCall
((const Value*)I, TLI));
/external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp
266
} else if (
isFreeCall
(U, TLI)) {
461
} else if (isAllocationFn(&*II, TLI) ||
isFreeCall
(&*II, TLI)) {
/external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp
499
if (CallInst *F =
isFreeCall
(Inst, TLI)) {
/external/llvm/lib/Analysis/
MemoryBuiltins.cpp
307
///
isFreeCall
- Returns non-null if the value is a call to the builtin free()
308
const CallInst *llvm::
isFreeCall
(const Value *I, const TargetLibraryInfo *TLI) {
MemoryDependenceAnalysis.cpp
151
if (const CallInst *CI =
isFreeCall
(Inst, AA->getTargetLibraryInfo())) {
[
all
...]
/external/llvm/lib/Transforms/Utils/
Local.cpp
307
if (CallInst *CI =
isFreeCall
(I, TLI))
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp
202
if (
isFreeCall
(&CI, TLI))
[
all
...]
InstructionCombining.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar
Completed in 605 milliseconds