Lines Matching refs:AI
40 StackLifetime::getLiveRange(const AllocaInst *AI) const { in getLiveRange()
41 const auto IT = AllocaNumbering.find(AI); in getLiveRange()
50 bool StackLifetime::isAliveAfter(const AllocaInst *AI, in isAliveAfter() argument
64 return getLiveRange(AI).test(InstNum); in isAliveAfter()
71 const AllocaInst *AI = findAllocaForValue(II.getArgOperand(1), true); in findMatchingAlloca() local
72 if (!AI) in findMatchingAlloca()
75 auto AllocaSizeInBits = AI->getAllocationSizeInBits(DL); in findMatchingAlloca()
88 return AI; in findMatchingAlloca()
104 const AllocaInst *AI = findMatchingAlloca(*II, DL); in collectMarkers() local
105 if (!AI) { in collectMarkers()
109 auto It = AllocaNumbering.find(AI); in collectMarkers()
396 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) in run() local
397 Allocas.push_back(AI); in run()