Lines Matching refs:allocValue
109 Value allocValue; member
115 BufferAllocationHoistingStateBase(DominanceInfo *dominators, Value allocValue, in BufferAllocationHoistingStateBase()
117 : dominators(dominators), allocValue(allocValue), in BufferAllocationHoistingStateBase()
138 for (auto allocValue : allocsAndAllocas) { in hoist() local
139 if (!StateT::shouldHoistOpType(allocValue.getDefiningOp())) in hoist()
141 Operation *definingOp = allocValue.getDefiningOp(); in hoist()
144 auto resultAliases = aliases.resolve(allocValue); in hoist()
147 findCommonDominator(allocValue, resultAliases, dominators); in hoist()
149 StateT state(&dominators, allocValue, allocValue.getParentBlock()); in hoist()
168 allocValue, placementBlock, liveness); in hoist()
171 Operation *allocOperation = allocValue.getDefiningOp(); in hoist()