Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:NameLoc

383   LocTy NameLoc = Lex.getLoc();
391 if (ParseStructDefinition(NameLoc, Name,
397 return Error(NameLoc, "non-struct types may not be recursive");
451 LocTy NameLoc = Lex.getLoc();
471 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
472 return ParseAlias(Name, NameLoc, Visibility);
480 LocTy NameLoc = Lex.getLoc();
492 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
493 return ParseAlias(Name, NameLoc, Visibility);
622 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
671 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
676 return Error(NameLoc,
703 bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
744 return Error(NameLoc, "redefinition of global '@" + Name + "'");
2074 LocTy NameLoc, Instruction *Inst) {
2078 return P.Error(NameLoc, "instructions returning void cannot have a name");
2090 return P.Error(NameLoc, "instruction expected to be numbered '%" +
2097 return P.Error(NameLoc, "instruction forward referenced with type '" +
2113 return P.Error(NameLoc, "instruction forward referenced with type '" +
2124 return P.Error(NameLoc, "multiple definition of local value named '" +
2929 LocTy NameLoc = Lex.getLoc();
3031 return Error(NameLoc, "invalid redefinition of function '" +
3034 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
3045 return Error(NameLoc, "type of definition and forward reference of '@" +
3119 LocTy NameLoc = Lex.getLoc();
3125 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3136 LocTy NameLoc = Lex.getLoc();
3175 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;