Lines Matching defs:operationToIndexMap
352 DenseMap<Operation *, unsigned> operationToIndexMap;
362 operationToIndexMap.try_emplace(&op, index++);
365 return operationToIndexMap;
370 gatherTileLiveRanges(DenseMap<Operation *, unsigned> const &operationToIndexMap,
373 assert(!operationToIndexMap.empty() && "expected operation numbering");
390 operationToIndexMap.at(firstUseOrDef) + (liveAtBlockEntry ? -1 : 0);
391 unsigned endOpIdx = operationToIndexMap.at(lastUseInBlock);
756 void dumpLiveRanges(DenseMap<Operation *, unsigned> const &operationToIndexMap,
764 unsigned operationIndex = operationToIndexMap.at(&op);
814 auto operationToIndexMap = generateOperationNumbering(function);
816 operationToIndexMap, liveRangeAllocator, liveness, function);
830 dumpLiveRanges(operationToIndexMap, initialRanges, function);
840 dumpLiveRanges(operationToIndexMap, coalescedLiveRanges, function);