| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCContext.h | 723 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 D | MCStreamer.h | 918 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 D | MCStreamer.cpp | 235 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 D | MCAsmStreamer.cpp | 279 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 D | MCContext.cpp | 984 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 D | DwarfCompileUnit.cpp | 123 unsigned CUID = Asm->OutStreamer->hasRawTextSupport() ? 0 : getUniqueID(); in getOrCreateSourceID() local 126 std::nullopt, CUID); in getOrCreateSourceID() 132 File->getSource(), CUID); in getOrCreateSourceID()
|
| H A D | DwarfDebug.h | 725 DebugLoc emitInitialLocDirective(const MachineFunction &MF, unsigned CUID);
|
| H A D | DwarfDebug.cpp | 2170 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 D | LangOptions.h | 502 std::string CUID; variable
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Driver.cpp | 2997 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 D | Clang.cpp | 7457 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 D | ASTContext.cpp | 13607 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 D | CodeGenModule.cpp | 7596 if (getLangOpts().CUID.empty()) { in printPostfixForExternalizedDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Options.td | 1214 MarshallingInfoString<LangOpts<"CUID">>;
|