Lines Matching defs:OpBC
6427 } else if (auto *OpBC = dyn_cast<BitCastInst>(V)) {
6429 ConvertTy = OpBC->getOperand(0)->getType();
6430 if (OpBC->getOperand(0)->getType() != ConvertTy)
6432 if (Defs.insert(OpBC).second) {
6433 Worklist.push_back(OpBC);
6434 AnyAnchored |= !isa<LoadInst>(OpBC->getOperand(0)) &&
6435 !isa<ExtractElementInst>(OpBC->getOperand(0));
6458 } else if (auto *OpBC = dyn_cast<BitCastInst>(V)) {
6460 ConvertTy = OpBC->getType();
6461 if (OpBC->getType() != ConvertTy)
6463 Uses.insert(OpBC);
6465 any_of(OpBC->users(), [](User *U) { return !isa<StoreInst>(U); });