Home
last modified time | relevance | path

Searched refs:returnVal (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/Bufferization/Transforms/
H A DOneShotModuleBufferize.cpp124 static void annotateEquivalentReturnBbArg(OpOperand &returnVal, in annotateEquivalentReturnBbArg() argument
127 Operation *op = returnVal.getOwner(); in annotateEquivalentReturnBbArg()
138 equivBbArgs[returnVal.getOperandNumber()] = bbArg.getArgNumber(); in annotateEquivalentReturnBbArg()
154 for (OpOperand &returnVal : returnOp->getOpOperands()) in aliasingFuncOpBBArgsAnalysis()
155 if (returnVal.get().getType().isa<RankedTensorType>()) in aliasingFuncOpBBArgsAnalysis()
158 int64_t returnIdx = returnVal.getOperandNumber(); in aliasingFuncOpBBArgsAnalysis()
160 if (state.areEquivalentBufferizedValues(returnVal.get(), bbArg)) { in aliasingFuncOpBBArgsAnalysis()
163 annotateEquivalentReturnBbArg(returnVal, bbArg); in aliasingFuncOpBBArgsAnalysis()
165 if (state.areAliasingBufferizedValues(returnVal.get(), bbArg)) { in aliasingFuncOpBBArgsAnalysis()
264 Value returnVal = callOp.getResult(returnIdx); in equivalenceAnalysis() local
[all …]
H A DOneShotAnalysis.cpp235 Value returnVal = returnValOperand.get(); in gatherYieldedTensors() local
237 if (!returnVal.getType().isa<TensorType>()) in gatherYieldedTensors()
242 aliasInfo.applyOnAliases(returnVal, [&](Value v) { in gatherYieldedTensors()
906 Value returnVal = returnValOperand.get(); in assertDestinationPassingStyle() local
908 if (!returnVal.getType().isa<TensorType>()) in assertDestinationPassingStyle()
912 aliasInfo.applyOnEquivalenceClass(returnVal, [&](Value equivVal) { in assertDestinationPassingStyle()
H A DFuncBufferizableOpInterfaceImpl.cpp462 Value returnVal = returnOperand.get(); in bufferize() local
463 auto tensorType = returnVal.getType().dyn_cast<TensorType>(); in bufferize()
468 returnValues.push_back(returnVal); in bufferize()
481 loc, resultType, returnVal); in bufferize()
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRInterpreter.cpp1488 lldb_private::Scalar returnVal = -1; in Interpret() local
1500 returnVal = value.GetScalar(); in Interpret()
1503 frame.AssignValue(inst, returnVal, module); in Interpret()