Lines Matching refs:OpName
238 StringRef OpName = Op.substr(1); in ParseOperandName() local
242 StringRef::size_type DotIdx = OpName.find_first_of('.'); in ParseOperandName()
244 SubOpName = OpName.substr(DotIdx + 1); in ParseOperandName()
249 OpName = OpName.substr(0, DotIdx); in ParseOperandName()
254 if (std::pair<unsigned, unsigned> SubOp; hasSubOperandAlias(OpName, SubOp)) { in ParseOperandName()
261 OpName + "'"); in ParseOperandName()
266 OpIdx = getOperandNamed(OpName); in ParseOperandName()
414 StringRef OpName; in ProcessDisableEncoding() local
415 std::tie(OpName, DisableEncoding) = getToken(DisableEncoding, " ,\t"); in ProcessDisableEncoding()
416 if (OpName.empty()) in ProcessDisableEncoding()
420 std::pair<unsigned, unsigned> Op = ParseOperandName(OpName, false); in ProcessDisableEncoding()