Home
last modified time | relevance | path

Searched refs:GepI (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp124 bool isHandledGepForm(GetElementPtrInst *GepI);
125 void processGepInst(GetElementPtrInst *GepI, ValueToNodeMap &NM);
335 bool HexagonCommonGEP::isHandledGepForm(GetElementPtrInst *GepI) { in isHandledGepForm() argument
337 if (!GepI->getType()->isPointerTy()) in isHandledGepForm()
340 if (GepI->idx_begin() == GepI->idx_end()) in isHandledGepForm()
345 void HexagonCommonGEP::processGepInst(GetElementPtrInst *GepI, in processGepInst() argument
347 LLVM_DEBUG(dbgs() << "Visiting GEP: " << *GepI << '\n'); in processGepInst()
349 Value *PtrOp = GepI->getPointerOperand(); in processGepInst()
350 uint32_t InBounds = GepI->isInBounds() ? GepNode::InBounds : 0; in processGepInst()
361 N->PTy = GepI->getSourceElementType(); in processGepInst()
[all …]