Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCContext.h678 Optional<StringRef> Source, unsigned CUID);
680 bool isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID = 0);
686 MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) { in getMCDwarfLineTable() argument
687 return MCDwarfLineTablesCUMap[CUID]; in getMCDwarfLineTable()
690 const MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) const { in getMCDwarfLineTable() argument
691 auto I = MCDwarfLineTablesCUMap.find(CUID); in getMCDwarfLineTable()
696 const SmallVectorImpl<MCDwarfFile> &getMCDwarfFiles(unsigned CUID = 0) {
697 return getMCDwarfLineTable(CUID).getMCDwarfFiles();
700 const SmallVectorImpl<std::string> &getMCDwarfDirs(unsigned CUID = 0) {
701 return getMCDwarfLineTable(CUID).getMCDwarfDirs();
[all …]
H A DMCStreamer.h864 unsigned CUID = 0) {
867 Source, CUID));
878 unsigned CUID = 0);
884 unsigned CUID = 0);
975 virtual MCSymbol *getDwarfLineTableSymbol(unsigned CUID);
/netbsd-src/external/apache2/llvm/dist/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.cpp259 unsigned CUID = 0) override;
263 unsigned CUID = 0) override;
268 MCSymbol *getDwarfLineTableSymbol(unsigned CUID) override;
1478 Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, unsigned CUID) { in tryEmitDwarfFileDirective() argument
1479 assert(CUID == 0 && "multiple CUs not supported by MCAsmStreamer"); in tryEmitDwarfFileDirective()
1481 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in tryEmitDwarfFileDirective()
1513 unsigned CUID) { in emitDwarfFile0Directive() argument
1514 assert(CUID == 0); in emitDwarfFile0Directive()
1519 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive()
1587 MCSymbol *MCAsmStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
H A DMCContext.cpp868 unsigned CUID) { in getDwarfFile() argument
869 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID]; in getDwarfFile()
876 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) { in isValidDwarfFileNumber() argument
877 const MCDwarfLineTable &LineTable = getMCDwarfLineTable(CUID); in isValidDwarfFileNumber()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DLangOptions.h355 std::string CUID; variable
/netbsd-src/external/apache2/llvm/dist/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.h656 DebugLoc emitInitialLocDirective(const MachineFunction &MF, unsigned CUID);
H A DDwarfDebug.cpp2051 const MDNode *S, unsigned Flags, unsigned CUID, in recordSourceLine() argument
2063 FileNo = static_cast<DwarfCompileUnit &>(*DCUs[CUID]) in recordSourceLine()
2071 unsigned CUID) { in emitInitialLocDirective() argument
2082 CUID, getDwarfVersion(), getUnits()); in emitInitialLocDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DDriver.cpp2557 std::string CUID = FixedCUID.str(); in addDeviceDepences() local
2558 if (CUID.empty()) { in addDeviceDepences()
2560 CUID = llvm::utohexstr(llvm::sys::Process::GetRandomNumber(), in addDeviceDepences()
2575 CUID = llvm::utohexstr(Hash.low(), /*LowerCase=*/true); in addDeviceDepences()
2578 IA->setId(CUID); in addDeviceDepences()
/netbsd-src/external/ibm-public/postfix/dist/proto/
H A Dstop.spell-cc225 CUID
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCUDANV.cpp280 !CGM.getLangOpts().CUID.empty()) { in getDeviceSideName()
H A DCodeGenModule.cpp1269 CGM.getLangOpts().CUDAIsDevice && !CGM.getLangOpts().CUID.empty()) in getMangledNameImpl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DClang.cpp6561 auto CUID = cast<InputAction>(SourceAction)->getId(); in ConstructJob() local
6562 if (!CUID.empty()) in ConstructJob()
6563 CmdArgs.push_back(Args.MakeArgString(Twine("-cuid=") + Twine(CUID))); in ConstructJob()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp11646 if (LangOpts.CUID.empty()) in getCUIDHash()
11648 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); in getCUIDHash()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td997 MarshallingInfoString<LangOpts<"CUID">>;
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-19985871 mem_first_set, mem_last_set; because 0 can be a CUID.
H A DChangeLog-200510348 * postreload-gcse.c (alloc_mem): Start CUID numbering at 1.