Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h685 bool isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID = 0);
691 MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) { in getMCDwarfLineTable() argument
692 return MCDwarfLineTablesCUMap[CUID]; in getMCDwarfLineTable()
695 const MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) const { in getMCDwarfLineTable() argument
696 auto I = MCDwarfLineTablesCUMap.find(CUID); in getMCDwarfLineTable()
702 return getMCDwarfLineTable(CUID).getMCDwarfFiles();
705 const SmallVectorImpl<std::string> &getMCDwarfDirs(unsigned CUID = 0) {
706 return getMCDwarfLineTable(CUID).getMCDwarfDirs();
717 void setMCLineTableRootFile(unsigned CUID, StringRef CompilationDir, in setMCLineTableRootFile() argument
726 bool isDwarfMD5UsageConsistent(unsigned CUID) const { in isDwarfMD5UsageConsistent() argument
[all …]
H A DMCStreamer.h871 unsigned CUID = 0) {
874 Source, CUID));
885 unsigned CUID = 0);
891 unsigned CUID = 0);
982 virtual MCSymbol *getDwarfLineTableSymbol(unsigned CUID);
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp231 unsigned CUID) { in tryEmitDwarfFileDirective() argument
233 Source, CUID); in tryEmitDwarfFileDirective()
240 unsigned CUID) { in emitDwarfFile0Directive() argument
241 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive()
260 MCSymbol *MCStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
261 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in getDwarfLineTableSymbol()
265 Context.getOrCreateSymbol(Prefix + "line_table_start" + Twine(CUID))); in getDwarfLineTableSymbol()
H A DMCAsmStreamer.cpp263 unsigned CUID = 0) override;
267 unsigned CUID = 0) override;
272 MCSymbol *getDwarfLineTableSymbol(unsigned CUID) override;
1510 Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, unsigned CUID) { in tryEmitDwarfFileDirective() argument
1511 assert(CUID == 0 && "multiple CUs not supported by MCAsmStreamer"); in tryEmitDwarfFileDirective()
1513 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in tryEmitDwarfFileDirective()
1545 unsigned CUID) { in emitDwarfFile0Directive() argument
1546 assert(CUID == 0); in emitDwarfFile0Directive()
1551 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive()
1619 MCSymbol *MCAsmStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
H A DMCContext.cpp883 unsigned CUID) { in getDwarfFile() argument
884 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID]; in getDwarfFile()
891 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) { in isValidDwarfFileNumber() argument
892 const MCDwarfLineTable &LineTable = getMCDwarfLineTable(CUID); in isValidDwarfFileNumber()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h372 std::string CUID; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp126 unsigned CUID = Asm->OutStreamer->hasRawTextSupport() ? 0 : getUniqueID(); in getOrCreateSourceID() local
129 CUID); in getOrCreateSourceID()
132 File->getSource(), CUID); in getOrCreateSourceID()
H A DDwarfDebug.h653 DebugLoc emitInitialLocDirective(const MachineFunction &MF, unsigned CUID);
H A DDwarfDebug.cpp2101 const MDNode *S, unsigned Flags, unsigned CUID, in recordSourceLine() argument
2113 FileNo = static_cast<DwarfCompileUnit &>(*DCUs[CUID]) in recordSourceLine()
2121 unsigned CUID) { in emitInitialLocDirective() argument
2132 CUID, getDwarfVersion(), getUnits()); in emitInitialLocDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp2549 std::string CUID = FixedCUID.str(); in addDeviceDepences() local
2550 if (CUID.empty()) { in addDeviceDepences()
2552 CUID = llvm::utohexstr(llvm::sys::Process::GetRandomNumber(), in addDeviceDepences()
2567 CUID = llvm::utohexstr(Hash.low(), /*LowerCase=*/true); in addDeviceDepences()
2570 IA->setId(CUID); in addDeviceDepences()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDANV.cpp287 !CGM.getLangOpts().CUID.empty()) { in getDeviceSideName()
H A DCodeGenModule.cpp1299 CGM.getLangOpts().CUDAIsDevice && !CGM.getLangOpts().CUID.empty()) in getMangledNameImpl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp6612 auto CUID = cast<InputAction>(SourceAction)->getId(); in ConstructJob() local
6613 if (!CUID.empty()) in ConstructJob()
6614 CmdArgs.push_back(Args.MakeArgString(Twine("-cuid=") + Twine(CUID))); in ConstructJob()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp11720 if (LangOpts.CUID.empty()) in getCUIDHash()
11722 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); in getCUIDHash()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1001 MarshallingInfoString<LangOpts<"CUID">>;