Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h694 unsigned CUID);
696 bool isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID = 0);
702 MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) { in getMCDwarfLineTable() argument
703 return MCDwarfLineTablesCUMap[CUID]; in getMCDwarfLineTable()
706 const MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) const { in getMCDwarfLineTable() argument
707 auto I = MCDwarfLineTablesCUMap.find(CUID); in getMCDwarfLineTable()
712 const SmallVectorImpl<MCDwarfFile> &getMCDwarfFiles(unsigned CUID = 0) {
713 return getMCDwarfLineTable(CUID).getMCDwarfFiles();
716 const SmallVectorImpl<std::string> &getMCDwarfDirs(unsigned CUID = 0) {
717 return getMCDwarfLineTable(CUID).getMCDwarfDirs();
[all …]
H A DMCStreamer.h883 std::optional<StringRef> Source = std::nullopt, unsigned CUID = 0) {
886 Source, CUID));
897 std::optional<StringRef> Source = std::nullopt, unsigned CUID = 0);
903 unsigned CUID = 0);
995 virtual MCSymbol *getDwarfLineTableSymbol(unsigned CUID);
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp234 unsigned CUID) { in tryEmitDwarfFileDirective() argument
236 Source, CUID); in tryEmitDwarfFileDirective()
243 unsigned CUID) { in emitDwarfFile0Directive() argument
244 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive()
270 MCSymbol *MCStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
271 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in getDwarfLineTableSymbol()
275 Context.getOrCreateSymbol(Prefix + "line_table_start" + Twine(CUID))); in getDwarfLineTableSymbol()
H A DMCAsmStreamer.cpp295 unsigned CUID = 0) override;
299 unsigned CUID = 0) override;
304 MCSymbol *getDwarfLineTableSymbol(unsigned CUID) override;
1662 unsigned CUID) { in tryEmitDwarfFileDirective() argument
1663 assert(CUID == 0 && "multiple CUs not supported by MCAsmStreamer"); in tryEmitDwarfFileDirective()
1665 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in tryEmitDwarfFileDirective()
1696 unsigned CUID) { in emitDwarfFile0Directive() argument
1697 assert(CUID == 0); in emitDwarfFile0Directive()
1702 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive()
1770 MCSymbol *MCAsmStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
H A DMCContext.cpp987 std::optional<StringRef> Source, unsigned CUID) { in getDwarfFile() argument
988 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID]; in getDwarfFile()
995 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) { in isValidDwarfFileNumber() argument
996 const MCDwarfLineTable &LineTable = getMCDwarfLineTable(CUID); in isValidDwarfFileNumber()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h725 DebugLoc emitInitialLocDirective(const MachineFunction &MF, unsigned CUID); in getAccelTableKind()
H A DDwarfCompileUnit.cpp138 unsigned CUID = Asm->OutStreamer->hasRawTextSupport() ? 0 : getUniqueID(); in getOrCreateSourceID() local
141 std::nullopt, CUID); in getOrCreateSourceID()
147 File->getSource(), CUID); in getOrCreateSourceID()
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/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h545 std::string CUID; variable
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp3034 std::string CUID = FixedCUID.str(); in addDeviceDependences() local
3035 if (CUID.empty()) { in addDeviceDependences()
3037 CUID = llvm::utohexstr(llvm::sys::Process::GetRandomNumber(), in addDeviceDependences()
3052 CUID = llvm::utohexstr(Hash.low(), /*LowerCase=*/true); in addDeviceDependences()
3055 IA->setId(CUID); in addDeviceDependences()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp7690 auto CUID = cast<InputAction>(SourceAction)->getId(); in ConstructJob() local
7691 if (!CUID.empty()) in ConstructJob()
7692 CmdArgs.push_back(Args.MakeArgString(Twine("-cuid=") + Twine(CUID))); in ConstructJob()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp14180 if (LangOpts.CUID.empty()) in getCUIDHash()
14182 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); in getCUIDHash()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp7745 if (getLangOpts().CUID.empty()) { in printPostfixForExternalizedDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1283 MarshallingInfoString<LangOpts<"CUID">>;