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

/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 DCodeGenPrepare.cpp695 BitCastInst *BCI = 0; local
698 BCI = dyn_cast<BitCastInst>(V);
699 if (BCI)
700 V = BCI->getOperand(0);
723 if (&*BI == BCI)
H A DScalarReplAggregates.cpp495 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
496 if (!onlyUsedByLifetimeMarkers(BCI))
498 if (!CanConvertToScalar(BCI, Offset, NonConstantIdx))
1295 if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
1296 if (onlyUsedByLifetimeMarkers(BCI)) {
1297 InstsToRewrite.insert(BCI);
1313 if (BitCastInst *BCI = dyn_cast<BitCastInst>(InstsToRewrite[i])) {
1315 for (BitCastInst::use_iterator I = BCI->use_begin(), E = BCI->use_end();
1321 BCI
1980 BitCastInst *BCI = new BitCastInst(NewAI, AI->getType(), "", NewAI); local
[all...]

Completed in 190 milliseconds