HomeSort by relevance Sort by last modified time
    Searched refs:NewGEP (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 350 if (auto *NewGEP = tryReassociateGEPAtIndex(GEP, I - 1, *GTI)) {
351 return NewGEP;
388 if (auto *NewGEP = tryReassociateGEPAtIndex(GEP, I, LHS, RHS, IndexedType))
389 return NewGEP;
392 if (auto *NewGEP =
394 return NewGEP;
435 // NewGEP = (char *)Candidate + RHS * sizeof(IndexedType)
456 // NewGEP = &Candidate[RHS * (sizeof(IndexedType) / sizeof(Candidate[0])));
464 GetElementPtrInst *NewGEP =
466 NewGEP->setIsInBounds(GEP->isInBounds())
    [all...]
SeparateConstOffsetFromGEP.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 161 // NewGEP = gep X, indices
162 // NewASC = addrspacecast NewGEP
163 GetElementPtrInst *NewGEP = GetElementPtrInst::Create(
166 NewGEP->setIsInBounds(GEP->isInBounds());
167 NewASC = new AddrSpaceCastInst(NewGEP, GEP->getType(), "", GEPI);
175 Constant *NewGEP = ConstantExpr::getGetElementPtr(
178 NewASC = ConstantExpr::getAddrSpaceCast(NewGEP, GEP->getType());
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 232 GetElementPtrInst *NewGEP =
235 if (AllInBounds) NewGEP->setIsInBounds();
236 NewGEP->setDebugLoc(FirstInst->getDebugLoc());
237 return NewGEP;
    [all...]
InstructionCombining.cpp     [all...]

Completed in 360 milliseconds