Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Transforms/Utils/
H A DDialectConversion.cpp694 Value replacementValue = mapping.lookupOrDefault(origArg); in materializeLiveConversions() local
695 bool isDroppedArg = replacementValue == origArg; in materializeLiveConversions()
699 rewriter.setInsertionPointAfterValue(replacementValue); in materializeLiveConversions()
704 isDroppedArg ? ValueRange() : ValueRange(replacementValue)); in materializeLiveConversions()
716 diag << ", with target type " << replacementValue.getType(); in materializeLiveConversions()
787 if (inputMap->replacementValue) { in applySignatureConversion()
791 mapping.map(origArg, inputMap->replacementValue); in applySignatureConversion()
2941 Value replacementValue) { in remapInput() argument
2944 InputMapping{origInputNo, /*size=*/0, replacementValue}; in remapInput()
/llvm-project-15.0.7/mlir/lib/Target/LLVMIR/Dialect/OpenMP/
H A DOpenMPToLLVMIRTranslation.cpp276 llvm::Value *&replacementValue) -> InsertPointTy { in convertOmpParallel() argument
277 replacementValue = &vPtr; in convertOmpParallel()
644 llvm::Value *&replacementValue) -> InsertPointTy { in convertOmpSections() argument
645 replacementValue = &vPtr; in convertOmpSections()
/llvm-project-15.0.7/mlir/include/mlir/Transforms/
H A DDialectConversion.h49 Value replacementValue; member