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.cpp117 bool isHandledGepForm(GetElementPtrInst *GepI);
118 void processGepInst(GetElementPtrInst *GepI, ValueToNodeMap &NM);
328 bool HexagonCommonGEP::isHandledGepForm(GetElementPtrInst *GepI) { in isHandledGepForm() argument
330 if (!GepI->getType()->isPointerTy()) in isHandledGepForm()
333 if (GepI->idx_begin() == GepI->idx_end()) in isHandledGepForm()
338 void HexagonCommonGEP::processGepInst(GetElementPtrInst *GepI, in processGepInst() argument
340 LLVM_DEBUG(dbgs() << "Visiting GEP: " << *GepI << '\n'); in processGepInst()
342 Value *PtrOp = GepI->getPointerOperand(); in processGepInst()
343 uint32_t InBounds = GepI->isInBounds() ? GepNode::InBounds : 0; in processGepInst()
354 N->PTy = GepI->getSourceElementType(); in processGepInst()
[all …]