Searched defs:BCI (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp70 static bool isBitCastOfMallocCall(const BitCastInst *BCI) { argument
71 if (!BCI)
74 return isMallocCall(dyn_cast<CallInst>(BCI->getOperand(0)));
80 BitCastInst *BCI = dyn_cast<BitCastInst>(I); local
81 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
86 const BitCastInst *BCI = dyn_cast<BitCastInst>(I); local
87 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
145 if (const BitCastInst *BCI
[all...]
/external/llvm/lib/VMCore/
H A DIRBuilder.cpp49 BitCastInst *BCI = new BitCastInst(Ptr, PT, ""); local
50 BB->getInstList().insert(InsertPt, BCI);
51 SetInstDebugLocation(BCI);
52 return BCI;
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp441 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
442 if (!onlyUsedByLifetimeMarkers(BCI))
444 if (!CanConvertToScalar(BCI, Offset))
1179 if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
1180 if (onlyUsedByLifetimeMarkers(BCI)) {
1181 InstsToRewrite.insert(BCI);
1197 if (BitCastInst *BCI = dyn_cast<BitCastInst>(InstsToRewrite[i])) {
1199 for (BitCastInst::use_iterator I = BCI->use_begin(), E = BCI->use_end();
1205 BCI
1863 BitCastInst *BCI = new BitCastInst(NewAI, AI->getType(), "", NewAI); local
[all...]

Completed in 121 milliseconds