Lines Matching refs:Index
78 /// Maps from target index names to target indices.
211 /// Check if the given identifier is a name of a subregister index.
213 /// Return 0 if the name isn't a subregister index class.
223 /// Try to convert a name of target index to the corresponding target index.
225 /// Return true if the name isn't a name of a target index.
226 bool getTargetIndex(StringRef Name, int &Index);
857 return error("expected a subregister index after ':'");
861 return error(Twine("use of unknown subregister index '") + Name + "'");
890 Twine("use of invalid tied-def operand index '" +
897 Twine("use of invalid tied-def operand index '") +
1327 return error("expected the name of the target index");
1328 int Index = 0;
1329 if (getTargetIndex(Token.stringValue(), Index))
1330 return error("use of undefined target index '" + Token.stringValue() + "'");
1334 Dest = MachineOperand::CreateTargetIndex(unsigned(Index), /*Offset=*/0);
1901 bool MIParser::getTargetIndex(StringRef Name, int &Index) {
1906 Index = IndexInfo->second;