Home | History | Annotate | Download | only in llvm-mc

Lines Matching refs:token

108     // Get the current token.
117 "invalid input token", "error");
257 EDToken *token;
259 if (inst->getToken(token, tokenIndex)) {
260 errs() << "error: Couldn't get token\n";
265 if (token->getString(buf)) {
266 errs() << "error: Couldn't get string for token\n";
271 int operandIndex = token->operandID();
276 switch (token->type()) {
287 if (token->type() == EDToken::kTokenLiteral) {
289 if (token->literalSign())
292 if (token->literalAbsoluteValue(absoluteValue)) {
293 errs() << "error: Couldn't get the value of a literal token\n";
297 } else if (token->type() == EDToken::kTokenRegister) {
300 if (token->registerID(regID)) {
301 errs() << "error: Couldn't get the ID of a register token\n";