Home
last modified time | relevance | path

Searched refs:CUID (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h723 unsigned CUID);
725 bool isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID = 0);
731 MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) { in getMCDwarfLineTable() argument
732 return MCDwarfLineTablesCUMap[CUID]; in getMCDwarfLineTable()
735 const MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) const { in getMCDwarfLineTable() argument
736 auto I = MCDwarfLineTablesCUMap.find(CUID); in getMCDwarfLineTable()
742 return getMCDwarfLineTable(CUID).getMCDwarfFiles();
746 return getMCDwarfLineTable(CUID).getMCDwarfDirs();
755 void setMCLineTableRootFile(unsigned CUID, StringRef CompilationDir, in setMCLineTableRootFile() argument
764 bool isDwarfMD5UsageConsistent(unsigned CUID) const { in isDwarfMD5UsageConsistent() argument
[all …]
H A DMCStreamer.h918 std::optional<StringRef> Source = std::nullopt, unsigned CUID = 0) {
921 Source, CUID));
932 std::optional<StringRef> Source = std::nullopt, unsigned CUID = 0);
938 unsigned CUID = 0);
1030 virtual MCSymbol *getDwarfLineTableSymbol(unsigned CUID);
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp235 unsigned CUID) { in tryEmitDwarfFileDirective() argument
237 Source, CUID); in tryEmitDwarfFileDirective()
244 unsigned CUID) { in emitDwarfFile0Directive() argument
245 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive()
271 MCSymbol *MCStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
272 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in getDwarfLineTableSymbol()
276 Context.getOrCreateSymbol(Prefix + "line_table_start" + Twine(CUID))); in getDwarfLineTableSymbol()
H A DMCAsmStreamer.cpp279 unsigned CUID = 0) override;
283 unsigned CUID = 0) override;
288 MCSymbol *getDwarfLineTableSymbol(unsigned CUID) override;
1642 unsigned CUID) { in tryEmitDwarfFileDirective() argument
1643 assert(CUID == 0 && "multiple CUs not supported by MCAsmStreamer"); in tryEmitDwarfFileDirective()
1645 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in tryEmitDwarfFileDirective()
1676 unsigned CUID) { in emitDwarfFile0Directive() argument
1677 assert(CUID == 0); in emitDwarfFile0Directive()
1682 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive()
1750 MCSymbol *MCAsmStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
H A DMCContext.cpp984 std::optional<StringRef> Source, unsigned CUID) { in getDwarfFile() argument
985 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID]; in getDwarfFile()
992 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) { in isValidDwarfFileNumber() argument
993 const MCDwarfLineTable &LineTable = getMCDwarfLineTable(CUID); in isValidDwarfFileNumber()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp123 unsigned CUID = Asm->OutStreamer->hasRawTextSupport() ? 0 : getUniqueID(); in getOrCreateSourceID() local
126 std::nullopt, CUID); in getOrCreateSourceID()
132 File->getSource(), CUID); in getOrCreateSourceID()
H A DDwarfDebug.h725 DebugLoc emitInitialLocDirective(const MachineFunction &MF, unsigned CUID);
H A DDwarfDebug.cpp2170 const MDNode *S, unsigned Flags, unsigned CUID, in recordSourceLine() argument
2182 FileNo = static_cast<DwarfCompileUnit &>(*DCUs[CUID]) in recordSourceLine()
2190 unsigned CUID) { in emitInitialLocDirective() argument
2209 CUID, getDwarfVersion(), getUnits()); in emitInitialLocDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h502 std::string CUID; variable
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp2997 std::string CUID = FixedCUID.str(); in addDeviceDependences() local
2998 if (CUID.empty()) { in addDeviceDependences()
3000 CUID = llvm::utohexstr(llvm::sys::Process::GetRandomNumber(), in addDeviceDependences()
3015 CUID = llvm::utohexstr(Hash.low(), /*LowerCase=*/true); in addDeviceDependences()
3018 IA->setId(CUID); in addDeviceDependences()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp7457 auto CUID = cast<InputAction>(SourceAction)->getId(); in ConstructJob() local
7458 if (!CUID.empty()) in ConstructJob()
7459 CmdArgs.push_back(Args.MakeArgString(Twine("-cuid=") + Twine(CUID))); in ConstructJob()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13607 if (LangOpts.CUID.empty()) in getCUIDHash()
13609 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); in getCUIDHash()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp7596 if (getLangOpts().CUID.empty()) { in printPostfixForExternalizedDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1214 MarshallingInfoString<LangOpts<"CUID">>;