Lines Matching refs:argName
264 std::string argName = formatv("arg{0}_{1}", depth, i); in emitNativeCodeMatch() local
266 os << "Value " << argName << ";\n"; in emitNativeCodeMatch()
270 os << "Attribute " << argName << ";\n"; in emitNativeCodeMatch()
272 os << "Operation " << argName << ";\n"; in emitNativeCodeMatch()
276 capture[i] = std::move(argName); in emitNativeCodeMatch()
298 std::string argName = capture[i]; in emitNativeCodeMatch() local
305 argName, i)); in emitNativeCodeMatch()
311 auto self = formatv("{0}", argName); in emitNativeCodeMatch()
354 std::string argName = formatv("op{0}", depth + 1); in emitOpMatch() local
372 argName, castedName, nextOperand++); in emitOpMatch()
373 emitMatch(argTree, argName, depth + 1); in emitOpMatch()
374 os << formatv("tblgen_ops[{0}] = {1};\n", ++opCounter, argName); in emitOpMatch()
895 auto argName = symbolInfoMap.getValueAndRangeUse(patArgName); in handleOpArgument() local
897 LLVM_DEBUG(llvm::dbgs() << "replace " << patArgName << " with '" << argName in handleOpArgument()
899 return argName; in handleOpArgument()
902 auto repl = tgfmt(leaf.getNativeCodeTemplate(), &fmtCtx.withSelf(argName)); in handleOpArgument()