Searched refs:use_empty (Results 1 - 25 of 98) sorted by relevance

1234

/external/llvm/lib/Transforms/IPO/
H A DStripDeadPrototypes.cpp51 if (F->isDeclaration() && F->use_empty()) {
63 if (GV->isDeclaration() && GV->use_empty())
H A DStripSymbols.cpp144 assert(C->use_empty() && "Constant is not dead!");
245 while (!Declare->use_empty()) {
254 while (!DbgVal->use_empty()) {
304 while (!Declare->use_empty()) {
308 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
310 if (Arg1->use_empty()) {
316 if (Arg2->use_empty())
H A DPartialInlining.cpp154 if (!FI->use_empty() && !FI->isDeclaration())
162 if (currFunc->use_empty()) continue;
H A DIPConstantPropagation.cpp81 if (F.arg_empty() || F.use_empty()) return false; // No arguments? Early exit.
137 if (ArgumentConstants[i].second || AI->use_empty() ||
233 if (Call->use_empty())
H A DArgumentPromotion.cpp312 if (Arg->use_empty())
388 if (GEP->use_empty()) {
539 } else if (I->use_empty()) {
637 while (!F->use_empty()) {
673 } else if (!I->use_empty()) {
752 if (!Call->use_empty()) {
811 if (I->use_empty()) {
821 while (!I->use_empty()) {
861 while (!GEP->use_empty()) {
H A DGlobalDCE.cpp208 if (GV.use_empty()) return false;
210 return GV.use_empty();
H A DConstantMerge.cpp131 if (GV->use_empty() && GV->hasLocalLinkage()) {
H A DGlobalOpt.cpp427 if (CE->use_empty()) {
495 if (CE->use_empty()) {
518 if (GEP->use_empty()) {
741 while (!GV->use_empty()) {
790 if (NewGlobals[i]->use_empty()) {
902 if (CI->use_empty()) {
919 if (GEPI->use_empty()) {
949 if (LI->use_empty()) {
984 if (GV->use_empty()) {
1045 while (!CI->use_empty()) {
[all...]
H A DDeadArgumentElimination.cpp226 while (!Fn.use_empty()) {
261 if (!Call->use_empty())
304 if (Fn.use_empty())
312 if (Arg->use_empty() && !Arg->hasByValAttr())
778 while (!F->use_empty()) {
837 if (!Call->use_empty()) {
/external/llvm/lib/Transforms/Utils/
H A DDemoteRegToStack.cpp24 if (I.use_empty()) {
41 while (!I.use_empty()) {
100 if (P->use_empty()) {
H A DSimplifyInstructions.cpp65 if (!I->use_empty())
H A DLCSSA.cpp151 if (I->use_empty() ||
273 if (AddedPHIs[i]->use_empty())
H A DInlineFunction.cpp631 if (AI->use_empty()) {
737 if (!TheCall->use_empty()) {
803 if (!TheCall->use_empty()) {
832 if (!TheCall->use_empty()) {
851 } else if (!TheCall->use_empty()) {
H A DLocal.cpp236 if (!I->use_empty() || isa<TerminatorInst>(I)) return false;
287 if (!I || !I->use_empty() || !isInstructionTriviallyDead(I, TLI))
302 if (!OpV->use_empty()) continue;
346 if (I->use_empty())
640 assert(PN->use_empty() && "There shouldn't be any uses here!");
/external/llvm/tools/bugpoint-passes/
H A DTestPasses.cpp62 if (!CI->use_empty())
/external/llvm/lib/Transforms/Scalar/
H A DConstantProp.cpp77 if (!I->use_empty()) // Don't muck with dead instructions...
H A DLICM.cpp498 if (!I.use_empty())
520 if (!I.use_empty())
531 if (!I.use_empty())
564 if (!I.use_empty())
571 if (!I.use_empty())
858 if (PreheaderLoad->use_empty())
H A DLoopInstSimplify.cpp110 if (!I->use_empty()) {
H A DSimplifyCFGPass.cpp84 if (!BBI->use_empty())
165 if (II->use_empty() && II->onlyReadsMemory()) {
H A DEarlyCSE.cpp428 if (!Inst->use_empty()) Inst->replaceAllUsesWith(InVal.first);
454 if (!Inst->use_empty()) Inst->replaceAllUsesWith(InVal.first);
/external/llvm/lib/VMCore/
H A DBasicBlock.cpp69 assert(!use_empty() && "There should be at least one blockaddress!");
72 while (!use_empty()) {
H A DValue.cpp68 if (!use_empty()) {
75 assert(use_empty() && "Uses remain when a value is destroyed!");
307 while (!use_empty()) {
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp183 if (!L->use_empty())
214 if (!LeftI->use_empty())
614 if (!LCall->use_empty())
627 if (!LInvoke->use_empty())
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp82 if (!CI->use_empty())
98 if (I->isDeclaration() && !I->use_empty())
539 assert(CI->use_empty() &&
/external/llvm/tools/bugpoint/
H A DExtractFunction.cpp232 !GV->use_empty()) return;
274 assert(GV->use_empty() && "llvm.ctors shouldn't have uses!");

Completed in 704 milliseconds

1234