Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:ExtInst

2989   Instruction *ExtInst = dyn_cast<Instruction>(ExtVal);
2990 if (!ExtInst || ExtInst->getType() != ExtInst->getOperand(0)->getType()) {
2991 if (ExtInst) {
2993 Exts->push_back(ExtInst);
2994 CreatedInstsCost = !TLI.isExtFree(ExtInst) && !HasMergedNonFreeExt;
3000 // Reassign the uses of ExtInst to the opnd and remove ExtInst.
3001 Value *NextVal = ExtInst->getOperand(0);
3002 TPT.eraseInstruction(ExtInst, NextVal);
4802 auto *ExtInst = CastInst::Create(ExtType, Cond, NewType);
4803 ExtInst->insertBefore(SI);
4804 SI->setCondition(ExtInst);