reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstructionCombining.cpp
 2173               ? Builder.CreateInBoundsGEP(SrcEltType, SrcOp, {Ops[1], Ops[2]})
 2174               : Builder.CreateGEP(SrcEltType, SrcOp, {Ops[1], Ops[2]});
 2191     if (!isa<BitCastInst>(SrcOp) && GEP.accumulateConstantOffset(DL, Offset)) {
 2197         if (isa<AllocaInst>(SrcOp) || isAllocationFn(SrcOp, &TLI)) {
 2197         if (isa<AllocaInst>(SrcOp) || isAllocationFn(SrcOp, &TLI)) {
 2210           return new AddrSpaceCastInst(SrcOp, GEPType);
 2211         return new BitCastInst(SrcOp, GEPType);
 2221                 ? Builder.CreateInBoundsGEP(SrcEltType, SrcOp, NewIndices)
 2222                 : Builder.CreateGEP(SrcEltType, SrcOp, NewIndices);