Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DAsmParserState.cpp281 auto existingIt = impl->operationToIdx.find(parentOp); in addUses() local
282 if (existingIt == impl->operationToIdx.end()) { in addUses()
292 OperationDefinition &def = *impl->operations[existingIt->second]; in addUses()
305 auto existingIt = impl->blocksToIdx.find(arg.getOwner()); in addUses() local
306 assert(existingIt != impl->blocksToIdx.end() && in addUses()
308 BlockDefinition &blockDef = *impl->blocks[existingIt->second]; in addUses()
/llvm-project-15.0.7/mlir/lib/Target/LLVMIR/
H A DDebugTranslation.cpp139 auto existingIt = locationToLoc.find(std::make_pair(loc, scope)); in translateLoc() local
140 if (existingIt != locationToLoc.end()) in translateLoc()
141 return existingIt->second; in translateLoc()
/llvm-project-15.0.7/mlir/lib/Transforms/Utils/
H A DDialectConversion.cpp2949 auto existingIt = cachedDirectConversions.find(t); in convertType() local
2950 if (existingIt != cachedDirectConversions.end()) { in convertType()
2951 if (existingIt->second) in convertType()
2952 results.push_back(existingIt->second); in convertType()
2953 return success(existingIt->second != nullptr); in convertType()