Home | History | Annotate | Download | only in Utils

Lines Matching defs:GEP

3628       Value *GEP = Builder.CreateInBoundsGEP(Array, GEPIndices,
3629 "switch.gep");
3630 return Builder.CreateLoad(GEP, "switch.load");
3715 // GEP needs a runtime relocation in PIC code. We should just build one big
4131 // Look through GEPs. A load from a GEP derived from NULL is still undefined
4132 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Use))
4133 if (GEP->getPointerOperand() == I)
4134 return passingValueIsAlwaysUndefined(V, GEP);