Home
last modified time | relevance | path

Searched refs:LocTy (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h74 LLLexer::LocTy Loc;
109 typedef LLLexer::LocTy LocTy; typedef
131 StringMap<std::pair<Type*, LocTy> > NamedTypes;
132 std::map<unsigned, std::pair<Type*, LocTy> > NumberedTypes;
135 std::map<unsigned, std::pair<TempMDTuple, LocTy>> ForwardRefMDNodes;
138 std::map<std::string, std::pair<GlobalValue*, LocTy> > ForwardRefVals;
139 std::map<unsigned, std::pair<GlobalValue*, LocTy> > ForwardRefValIDs;
143 std::map<std::string, LocTy> ForwardRefComdats;
167 std::map<unsigned, std::vector<std::pair<ValueInfo *, LocTy>>>
169 std::map<unsigned, std::vector<std::pair<AliasSummary *, LocTy>>>
[all …]
H A DLLLexer.h69 typedef SMLoc LocTy; typedef
70 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); } in getLoc()
84 bool ParseError(LocTy ErrorLoc, const Twine &Msg) { in ParseError()
90 void Warning(LocTy WarningLoc, const Twine &Msg) const;
122 void Error(LocTy ErrorLoc, const Twine &Msg, ErrorPriority Origin);
124 void LexError(LocTy ErrorLoc, const Twine &Msg) { in LexError()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp145 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy()))); in restoreParsingState()
148 std::make_pair(I.first, std::make_pair(I.second, LocTy()))); in restoreParsingState()
318 for (StringMap<std::pair<Type*, LocTy> >::iterator I = in validateEndOfModule()
492 LocTy DLStrLoc; in parseTargetDefinitions()
625 LocTy &DLStrLoc) { in parseTargetDefinition()
665 LocTy TypeLoc = Lex.getLoc(); in parseUnnamedType()
678 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID]; in parseUnnamedType()
692 LocTy NameLoc = Lex.getLoc(); in parseNamedType()
704 std::pair<Type*, LocTy> &Entry = NamedTypes[Name]; in parseNamedType()
793 LocTy NameLoc = Lex.getLoc(); in parseUnnamedGlobal()
[all …]
H A DLLLexer.cpp37 void LLLexer::Error(LocTy ErrorLoc, const Twine &Msg, in Error()
45 void LLLexer::Warning(LocTy WarningLoc, const Twine &Msg) const { in Warning()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp399 LLT LocTy = MRI.getType(SrcReg); in buildCopyFromRegs() local
402 SrcReg = B.buildAssertSExt(LocTy, SrcReg, LLTy.getScalarSizeInBits()) in buildCopyFromRegs()
405 SrcReg = B.buildAssertZExt(LocTy, SrcReg, LLTy.getScalarSizeInBits()) in buildCopyFromRegs()
783 const LLT LocTy(LocVT); in handleAssignments() local
785 const LLT NewLLT = Handler.isIncomingArgumentHandler() ? LocTy : ValTy; in handleAssignments()
978 LocTy, Args[i].Flags[0]); in handleAssignments()
1294 LLT LocTy{VA.getLocVT()}; in extendRegister() local
1297 if (LocTy.getSizeInBits() == ValTy.getSizeInBits()) in extendRegister()
1300 if (LocTy.isScalar() && MaxSizeBits && MaxSizeBits < LocTy.getSizeInBits()) { in extendRegister()
1303 LocTy = LLT::scalar(MaxSizeBits); in extendRegister()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64CallLowering.cpp180 LLT LocTy(VA.getLocVT()); in assignValueToAddress() local
184 std::swap(ValTy, LocTy); in assignValueToAddress()
188 assert(LocTy.getSizeInBits() == MemTy.getSizeInBits()); in assignValueToAddress()
189 LocTy = MemTy; in assignValueToAddress()
193 MPO, MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant, LocTy, in assignValueToAddress()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/
H A DRISCVCallLowering.cpp249 LLT LocTy(VA.getLocVT()); in assignCustomValue() local
250 auto Copy = MIRBuilder.buildCopy(LocTy, PhysReg); in assignCustomValue()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1227 QualType LocTy = TyR->getLocationType(); in operator <<() local
1228 if (!LocTy.isNull()) { in operator <<()
1229 if (auto *PtrTy = LocTy->getAs<PointerType>()) { in operator <<()