Lines Matching defs:mapper
218 void FuncOp::cloneInto(FuncOp dest, IRMapping &mapper) {
233 getBody().cloneInto(&dest.getBody(), mapper);
240 /// those mappings to the mapper.
241 FuncOp FuncOp::clone(IRMapping &mapper) {
246 // the function by specifying them in the mapper. If so, we don't add the
255 if (!mapper.contains(getArgument(i)))
268 if (!mapper.contains(getArgument(i)))
276 cloneInto(newFunc, mapper);
280 IRMapping mapper;
281 return clone(mapper);