HomeSort by relevance Sort by last modified time
    Searched refs:GEPOp (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/IR/
GetElementPtrTypeIterator.h 104 auto *GEPOp = cast<GEPOperator>(GEP);
106 GEPOp->getSourceElementType(),
107 cast<PointerType>(GEPOp->getPointerOperandType()->getScalarType())
115 auto &GEPOp = cast<GEPOperator>(GEP);
117 GEPOp.getSourceElementType(),
118 cast<PointerType>(GEPOp.getPointerOperandType()->getScalarType())
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 221 Value *GEPOp = PHITranslateSubExpr(GEP->getOperand(i), CurBB, PredBB, DT);
222 if (!GEPOp) return nullptr;
224 AnyChanged |= GEPOp != GEP->getOperand(i);
225 GEPOps.push_back(GEPOp);
BasicAliasAnalysis.cpp 365 const GEPOperator *GEPOp = dyn_cast<GEPOperator>(Op);
366 if (!GEPOp) {
384 if (!GEPOp->getOperand(0)->getType()->getPointerElementType()->isSized())
387 unsigned AS = GEPOp->getPointerAddressSpace();
389 gep_type_iterator GTI = gep_type_begin(GEPOp);
390 for (User::const_op_iterator I = GEPOp->op_begin() + 1, E = GEPOp->op_end();
461 V = GEPOp->getOperand(0);
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 195 GEPOperator *GEPOp = cast<GEPOperator>(GEP);
201 bool isInBounds = GEPOp->isInBounds() && !NoAssumptions;

Completed in 190 milliseconds