Lines Matching defs:BCI
70 static bool isBitCastOfMallocCall(const BitCastInst *BCI) {
71 if (!BCI)
74 return isMallocCall(dyn_cast<CallInst>(BCI->getOperand(0)));
80 BitCastInst *BCI = dyn_cast<BitCastInst>(I);
81 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
86 const BitCastInst *BCI = dyn_cast<BitCastInst>(I);
87 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
145 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(*UI++)) {
146 MallocType = cast<PointerType>(BCI->getDestTy());