Searched defs:GEPOp (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp219 Value *GEPOp = PHITranslateSubExpr(GEP->getOperand(i), CurBB, PredBB, DT); local
220 if (GEPOp == 0) return 0;
222 AnyChanged |= GEPOp != GEP->getOperand(i);
223 GEPOps.push_back(GEPOp);
H A DBasicAliasAnalysis.cpp286 const GEPOperator *GEPOp = dyn_cast<GEPOperator>(Op); local
287 if (GEPOp == 0) {
302 if (!cast<PointerType>(GEPOp->getOperand(0)->getType())
310 if (!GEPOp->hasAllZeroIndices())
312 V = GEPOp->getOperand(0);
317 gep_type_iterator GTI = gep_type_begin(GEPOp);
318 for (User::const_op_iterator I = GEPOp->op_begin()+1,
319 E = GEPOp->op_end(); I != E; ++I) {
386 V = GEPOp->getOperand(0);

Completed in 271 milliseconds