HomeSort by relevance Sort by last modified time
    Searched refs:replaceAllUsesWith (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/llvm/tools/bugpoint-passes/
TestPasses.cpp 63 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 83 CI->replaceAllUsesWith(NewCI);
359 CI->replaceAllUsesWith(V);
371 CI->replaceAllUsesWith(V);
376 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
392 CI->replaceAllUsesWith(LowerCTPOP(Context, CI->getArgOperand(0), CI));
396 CI->replaceAllUsesWith(LowerBSWAP(Context, CI->getArgOperand(0), CI));
400 CI->replaceAllUsesWith(LowerCTLZ(Context, CI->getArgOperand(0), CI));
411 CI->replaceAllUsesWith(Src);
423 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
432 CI->replaceAllUsesWith(ConstantPointerNull::get
    [all...]
SjLjEHPrepare.cpp 163 EVI->replaceAllUsesWith(ExnVal);
165 EVI->replaceAllUsesWith(SelVal);
181 LPI->replaceAllUsesWith(LPadVal);
271 AI->replaceAllUsesWith(NI);
283 AI->replaceAllUsesWith(NC);
289 // this because the above replaceAllUsesWith() clobbered the operand, but
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 83 F->replaceAllUsesWith(duplicateFunction);
99 OldPhi->replaceAllUsesWith(retPhi);
141 duplicateFunction->replaceAllUsesWith(F);
IPConstantPropagation.cpp 143 AI->replaceAllUsesWith(V);
244 Call->replaceAllUsesWith(New);
270 Ins->replaceAllUsesWith(New);
PruneEH.cpp 188 II->replaceAllUsesWith(Call);
246 I->replaceAllUsesWith(UndefValue::get(I->getType()));
DeadArgumentElimination.cpp 262 Call->replaceAllUsesWith(New);
283 I->replaceAllUsesWith(I2);
842 Call->replaceAllUsesWith(New);
848 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 64 Use->replaceAllUsesWith(SI);
  /external/llvm/lib/Transforms/Scalar/
ConstantProp.cpp 86 I->replaceAllUsesWith(C);
CorrelatedValuePropagation.cpp 84 S->replaceAllUsesWith(ReplaceWith);
110 P->replaceAllUsesWith(V);
170 C->replaceAllUsesWith(ConstantInt::getTrue(C->getContext()));
172 C->replaceAllUsesWith(ConstantInt::getFalse(C->getContext()));
LowerAtomic.cpp 34 CXI->replaceAllUsesWith(Orig);
88 RMWI->replaceAllUsesWith(Orig);
SimplifyCFGPass.cpp 85 BBI->replaceAllUsesWith(UndefValue::get(BBI->getType()));
99 II->replaceAllUsesWith(NewCall);
254 BB.replaceAllUsesWith(RetBlock);
EarlyCSE.cpp 389 Inst->replaceAllUsesWith(V);
401 Inst->replaceAllUsesWith(V);
428 if (!Inst->use_empty()) Inst->replaceAllUsesWith(InVal.first);
454 if (!Inst->use_empty()) Inst->replaceAllUsesWith(InVal.first);
  /external/llvm/lib/VMCore/
BasicBlock.cpp 74 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
257 PN->replaceAllUsesWith(PN->getIncomingValue(0));
260 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
279 PN->replaceAllUsesWith(PNV);
AutoUpgrade.cpp 160 CI->replaceAllUsesWith(Rep);
175 CI->replaceAllUsesWith(Builder.CreateCall2(NewFn, CI->getArgOperand(0),
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 173 ICmp->replaceAllUsesWith(ConstantInt::getTrue(ICmp->getContext()));
175 ICmp->replaceAllUsesWith(ConstantInt::getFalse(ICmp->getContext()));
208 Rem->replaceAllUsesWith(Rem->getOperand(0));
227 Rem->replaceAllUsesWith(Sel);
261 UseInst->replaceAllUsesWith(IVOperand);
SimplifyInstructions.cpp 71 I->replaceAllUsesWith(V);
InlineFunction.cpp 125 OuterPHI->replaceAllUsesWith(InnerPHI);
132 CallerLPad->replaceAllUsesWith(InnerEHValuesPHI);
204 CI->replaceAllUsesWith(II);
740 TheCall->replaceAllUsesWith(UndefValue::get(TheCall->getType()));
742 TheCall->replaceAllUsesWith(R->getReturnValue());
    [all...]
BasicBlockUtils.cpp 55 I.replaceAllUsesWith(UndefValue::get(I.getType()));
79 PN->replaceAllUsesWith(PN->getIncomingValue(0));
81 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
158 BB->replaceAllUsesWith(PredBB);
200 I.replaceAllUsesWith(V);
591 LPad->replaceAllUsesWith(PN);
596 LPad->replaceAllUsesWith(Clone1);
DemoteRegToStack.cpp 128 P->replaceAllUsesWith(V);
LowerInvoke.cpp 183 II->replaceAllUsesWith(NewCall);
214 PN->replaceAllUsesWith(PN->getIncomingValue(0));
249 II->replaceAllUsesWith(NewCall);
301 AI->replaceAllUsesWith(NI);
311 AI->replaceAllUsesWith(NC);
316 // We do this because the above replaceAllUsesWith() clobbered the
LoopUnroll.cpp 88 BB->replaceAllUsesWith(OnlyPred);
330 PN->replaceAllUsesWith(PN->getIncomingValueForBlock(Preheader));
439 Inst->replaceAllUsesWith(V);
  /external/llvm/unittests/VMCore/
ValueMapTest.cpp 54 this->BitcastV->replaceAllUsesWith(this->AddV.get());
172 this->BitcastV->replaceAllUsesWith(this->AddV.get());
206 this->BitcastV->replaceAllUsesWith(this->AddV.get());
223 this->BitcastV->replaceAllUsesWith(this->AddV.get());
255 this->BitcastV->replaceAllUsesWith(this->AddV.get());
287 this->BitcastV->replaceAllUsesWith(this->AddV.get());
  /external/llvm/unittests/Support/
ValueHandleTest.cpp 90 BitcastV->replaceAllUsesWith(ConstantV);
166 BitcastV->replaceAllUsesWith(ConstantV);
286 BitcastV->replaceAllUsesWith(ConstantV);
306 getValPtr()->replaceAllUsesWith(Constant::getNullValue(Type::getInt32Ty(getGlobalContext())));
364 BitcastV->replaceAllUsesWith(ConstantV);
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 90 AI->replaceAllUsesWith(
99 AI->replaceAllUsesWith(InitCall);

Completed in 261 milliseconds

1 2 3 4