Searched refs:LocTy (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 59 LLLexer::LocTy Loc; 85 typedef LLLexer::LocTy LocTy; typedef 110 StringMap<std::pair<Type*, LocTy> > NamedTypes; 111 std::map<unsigned, std::pair<Type*, LocTy> > NumberedTypes; 114 std::map<unsigned, std::pair<TempMDTuple, LocTy>> ForwardRefMDNodes; 117 std::map<std::string, std::pair<GlobalValue*, LocTy> > ForwardRefVals; 118 std::map<unsigned, std::pair<GlobalValue*, LocTy> > ForwardRefValIDs; 122 std::map<std::string, LocTy> ForwardRefComdats; 147 bool Error(LocTy L, const Twine &Msg) const { in Error() 157 GlobalValue *GetGlobalVal(const std::string &N, Type *Ty, LocTy Loc); [all …]
|
D | LLParser.cpp | 126 for (StringMap<std::pair<Type*, LocTy> >::iterator I = in ValidateEndOfModule() 301 LocTy TypeLoc = Lex.getLoc(); in ParseUnnamedType() 314 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID]; in ParseUnnamedType() 329 LocTy NameLoc = Lex.getLoc(); in ParseNamedType() 341 std::pair<Type*, LocTy> &Entry = NamedTypes[Name]; in ParseNamedType() 399 LocTy NameLoc = Lex.getLoc(); in ParseUnnamedGlobal() 436 LocTy NameLoc = Lex.getLoc(); in ParseNamedGlobal() 463 LocTy NameLoc = Lex.getLoc(); in parseComdat() 627 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L, in ParseAlias() 644 LocTy AliaseeLoc = Lex.getLoc(); in ParseAlias() [all …]
|
D | LLLexer.h | 53 typedef SMLoc LocTy; typedef 54 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); } in getLoc() 63 bool Error(LocTy L, const Twine &Msg) const; 66 void Warning(LocTy WarningLoc, const Twine &Msg) const;
|
D | LLLexer.cpp | 32 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const { in Error() 37 void LLLexer::Warning(LocTy WarningLoc, const Twine &Msg) const { in Warning()
|