Searched refs:LocTy (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 61 LLLexer::LocTy Loc; 89 typedef LLLexer::LocTy LocTy; typedef 115 StringMap<std::pair<Type*, LocTy> > NamedTypes; 116 std::vector<std::pair<Type*, LocTy> > NumberedTypes; 119 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> > ForwardRefMDNodes; 122 std::map<std::string, std::pair<GlobalValue*, LocTy> > ForwardRefVals; 123 std::map<unsigned, std::pair<GlobalValue*, LocTy> > ForwardRefValIDs; 127 std::map<std::string, LocTy> ForwardRefComdats; 148 bool Error(LocTy L, const Twine &Msg) const { in Error() 158 GlobalValue *GetGlobalVal(const std::string &N, Type *Ty, LocTy Loc); [all …]
|
D | LLParser.cpp | 160 for (StringMap<std::pair<Type*, LocTy> >::iterator I = in ValidateEndOfModule() 361 LocTy TypeLoc = Lex.getLoc(); in ParseUnnamedType() 377 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID]; in ParseUnnamedType() 392 LocTy NameLoc = Lex.getLoc(); in ParseNamedType() 404 std::pair<Type*, LocTy> &Entry = NamedTypes[Name]; in ParseNamedType() 462 LocTy NameLoc = Lex.getLoc(); in ParseUnnamedGlobal() 499 LocTy NameLoc = Lex.getLoc(); in ParseNamedGlobal() 525 LocTy NameLoc = Lex.getLoc(); in parseComdat() 654 LocTy TyLoc; in ParseStandaloneMetadata() 669 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator in ParseStandaloneMetadata() [all …]
|
D | LLLexer.h | 54 typedef SMLoc LocTy; typedef 55 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); } in getLoc() 64 bool Error(LocTy L, const Twine &Msg) const; 67 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()
|