Lines Matching refs:GEPTy
4053 Type *GEPTy = PointerType::get(LastType, AS); in SimplifyGEPInst() local
4055 GEPTy = VectorType::get(GEPTy, VT->getNumElements()); in SimplifyGEPInst()
4057 GEPTy = VectorType::get(GEPTy, VT->getNumElements()); in SimplifyGEPInst()
4060 return UndefValue::get(GEPTy); in SimplifyGEPInst()
4064 if (match(Ops[1], m_Zero()) && Ops[0]->getType() == GEPTy) in SimplifyGEPInst()
4073 if (TyAllocSize == 0 && Ops[0]->getType() == GEPTy) in SimplifyGEPInst()
4080 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * { in SimplifyGEPInst()
4082 return Constant::getNullValue(GEPTy); in SimplifyGEPInst()
4085 if (Temp->getType() == GEPTy) in SimplifyGEPInst()
4130 auto *CI = ConstantInt::get(GEPTy->getContext(), BasePtrOffset); in SimplifyGEPInst()
4131 return ConstantExpr::getIntToPtr(CI, GEPTy); in SimplifyGEPInst()
4136 auto *CI = ConstantInt::get(GEPTy->getContext(), BasePtrOffset - 1); in SimplifyGEPInst()
4137 return ConstantExpr::getIntToPtr(CI, GEPTy); in SimplifyGEPInst()