Home
last modified time | relevance | path

Searched refs:sourceValue (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/Bufferization/Transforms/
H A DBufferDeallocation.cpp332 Value sourceValue = operands[blockArg.getArgNumber()]; in introduceBlockArgCopy() local
333 if (!sourceValue) { in introduceBlockArgCopy()
338 auto clone = introduceCloneBuffers(sourceValue, terminator); in introduceBlockArgCopy()
450 Value sourceValue = immutableTerminatorOperands[operandIndex]; in introduceClonesForRegionSuccessors() local
452 auto clone = introduceCloneBuffers(sourceValue, terminator); in introduceClonesForRegionSuccessors()
467 FailureOr<Value> introduceCloneBuffers(Value sourceValue, in introduceCloneBuffers() argument
477 if (clonedValues.contains(sourceValue)) in introduceCloneBuffers()
478 return sourceValue; in introduceCloneBuffers()
481 auto clone = buildClone(terminator, sourceValue); in introduceCloneBuffers()
/llvm-project-15.0.7/mlir/lib/Dialect/Arithmetic/IR/
H A DArithmeticOps.cpp997 double sourceValue = in fold() local
999 auto targetAttr = FloatAttr::get(getType(), sourceValue); in fold()
1002 if (sourceValue == targetAttr.getValue().convertToDouble()) in fold()