HomeSort by relevance Sort by last modified time
    Searched refs:BCI (Results 1 - 14 of 14) 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...]
InlineCost.cpp 212 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
214 Reduction += CountCodeReductionForAlloca(BCI);
ValueTracking.cpp     [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/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineVectorOps.cpp 177 if (BitCastInst *BCI = dyn_cast<BitCastInst>(EI.getOperand(0))) {
179 dyn_cast<VectorType>(BCI->getOperand(0)->getType()))
181 if (Value *Elt = FindScalarElement(BCI->getOperand(0), IndexVal))
InstCombineCalls.cpp 717 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
718 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
    [all...]
InstCombineCompares.cpp 570 if (BitCastInst *BCI = dyn_cast<BitCastInst>(RHS))
571 RHS = BCI->getOperand(0);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 441 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
442 if (!onlyUsedByLifetimeMarkers(BCI))
444 if (!CanConvertToScalar(BCI, Offset))
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 262 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
263 if (AnalyzeUsesOfPointer(BCI, Readers, Writers, OkayStoreDest))
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 123 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
124 Address = BCI->getOperand(0);
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 104 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
105 if (BCI->getType() != Type::getInt8PtrTy(U->getContext()))
107 if (!onlyUsedByLifetimeMarkers(BCI))
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 799 milliseconds