Home | History | Annotate | Download | only in Utils

Lines Matching defs:GEP

4324       Value *GEP = Builder.CreateInBoundsGEP(Array->getValueType(), Array,
4325 GEPIndices, "switch.gep");
4326 return Builder.CreateLoad(GEP, "switch.load");
4488 // GEP needs a runtime relocation in PIC code. We should just build one big
5034 // Look through GEPs. A load from a GEP derived from NULL is still undefined
5035 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Use))
5036 if (GEP->getPointerOperand() == I)
5037 return passingValueIsAlwaysUndefined(V, GEP);