Lines Matching defs:wrapper
1 //===- SparseAssembler.cpp - adds wrapper method around sparse types ------===//
136 // as input parameters and/or output return values into wrapper methods that
144 // makes the original foo() internal and adds the following wrapper method
155 // makes the original bar() internal and adds the following wrapper method
187 // Only sparse inputs or outputs need a wrapper method.
193 std::string wrapper = llvm::formatv("_internal_{0}", orgName).str();
194 funcOp.setName(wrapper);
197 // Start the new public wrapper method with original name.
208 // Construct new wrapper method body.
220 auto org = SymbolRefAttr::get(context, wrapper);