HomeSort by relevance Sort by last modified time
    Searched defs:BCI (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 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++))
    [all...]
  /external/llvm/lib/VMCore/
IRBuilder.cpp 49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
50 BB->getInstList().insert(InsertPt, BCI);
51 SetInstDebugLocation(BCI);
52 return BCI;
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 504 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
506 if (!CanConvertToScalar(BCI, Offset))
    [all...]

Completed in 71 milliseconds