Searched refs:LocTy (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.h57 LLLexer::LocTy Loc;
86 typedef LLLexer::LocTy LocTy; typedef in class:llvm::LLParser
115 StringMap<std::pair<Type*, LocTy> > NamedTypes;
116 std::map<unsigned, std::pair<Type*, LocTy> > NumberedTypes;
119 std::map<unsigned, std::pair<TempMDTuple, 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;
143 std::map<unsigned, std::vector<std::pair<ValueInfo *, LocTy>>>
[all...]
H A DLLLexer.h56 typedef SMLoc LocTy; typedef in class:llvm::LLLexer
57 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); }
69 bool Error(LocTy ErrorLoc, const Twine &Msg) const;
72 void Warning(LocTy WarningLoc, const Twine &Msg) const;
H A DLLParser.cpp120 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
123 std::make_pair(I.first, std::make_pair(I.second, LocTy())));
201 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
448 LocTy TypeLoc = Lex.getLoc();
461 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
475 LocTy NameLoc = Lex.getLoc();
487 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
571 LocTy NameLoc = Lex.getLoc();
609 LocTy NameLoc = Lex.getLoc();
635 LocTy NameLo
[all...]
H A DLLLexer.cpp28 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const {
33 void LLLexer::Warning(LocTy WarningLoc, const Twine &Msg) const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp473 LLT LocTy{VA.getLocVT()};
475 if (LocTy.getSizeInBits() == ValTy.getSizeInBits())
478 if (LocTy.isScalar() && MaxSizeBits && MaxSizeBits < LocTy.getSizeInBits()) {
481 LocTy = LLT::scalar(MaxSizeBits);
492 auto MIB = MIRBuilder.buildAnyExt(LocTy, ValReg);
496 Register NewReg = MRI.createGenericVirtualRegister(LocTy);
501 Register NewReg = MRI.createGenericVirtualRegister(LocTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCallLowering.cpp291 LLT LocTy{VA.getLocVT()};
294 return MIRBuilder.buildSExt(LocTy, ValReg).getReg(0);
297 return MIRBuilder.buildZExt(LocTy, ValReg).getReg(0);
300 return MIRBuilder.buildAnyExt(LocTy, ValReg).getReg(0);

Completed in 108 milliseconds