Home
last modified time | relevance | path

Searched refs:UniqueID (Results 1 – 25 of 32) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCContext.h231 unsigned UniqueID; member
234 StringRef LinkedToName, unsigned UniqueID) in ELFSectionKey()
236 LinkedToName(LinkedToName), UniqueID(UniqueID) {} in ELFSectionKey()
245 return UniqueID < Other.UniqueID;
253 unsigned UniqueID; member
256 int SelectionKey, unsigned UniqueID) in COFFSectionKey()
258 SelectionKey(SelectionKey), UniqueID(UniqueID) {} in COFFSectionKey()
267 return UniqueID < Other.UniqueID;
274 unsigned UniqueID; member
277 unsigned UniqueID) in WasmSectionKey()
[all …]
H A DMCSectionELF.h35 unsigned UniqueID; variable
56 unsigned UniqueID, MCSymbol *Begin, in MCSectionELF() argument
59 UniqueID(UniqueID), EntrySize(entrySize), Group(group, IsComdat), in MCSectionELF()
88 bool isUnique() const { return UniqueID != NonUniqueID; } in isUnique()
89 unsigned getUniqueID() const { return UniqueID; } in getUniqueID()
H A DMCSectionWasm.h27 unsigned UniqueID; variable
49 const MCSymbolWasm *Group, unsigned UniqueID, MCSymbol *Begin) in MCSectionWasm() argument
50 : MCSection(SV_Wasm, Name, K, Begin), UniqueID(UniqueID), Group(Group), in MCSectionWasm()
72 bool isUnique() const { return UniqueID != ~0U; } in isUnique()
73 unsigned getUniqueID() const { return UniqueID; } in getUniqueID()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/FileSystem/
H A DUniqueID.h23 class UniqueID {
28 UniqueID() = default;
29 UniqueID(uint64_t Device, uint64_t File) : Device(Device), File(File) {} in UniqueID() function
31 bool operator==(const UniqueID &Other) const {
34 bool operator!=(const UniqueID &Other) const { return !(*this == Other); }
35 bool operator<(const UniqueID &Other) const {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCContext.cpp451 unsigned UniqueID = Section->getUniqueID(); in renameELFSection() local
453 ELFSectionKey{Section->getName(), GroupName, "", UniqueID}); in renameELFSection()
456 ELFSectionKey{Name, GroupName, "", UniqueID}, Section)) in renameELFSection()
466 bool Comdat, unsigned UniqueID, in createELFSectionImpl() argument
487 MCSectionELF(Section, Type, Flags, K, EntrySize, Group, Comdat, UniqueID, in createELFSectionImpl()
523 unsigned UniqueID, in getELFSection() argument
530 UniqueID, LinkedToSym); in getELFSection()
536 bool IsComdat, unsigned UniqueID, in getELFSection() argument
545 LinkedToSym ? LinkedToSym->getName() : "", UniqueID}, in getELFSection()
563 IsComdat, UniqueID, LinkedToSym); in getELFSection()
[all …]
H A DMCSectionWasm.cpp94 OS << ",unique," << UniqueID; in PrintSwitchToSection()
H A DMCSectionELF.cpp188 OS << ",unique," << UniqueID; in PrintSwitchToSection()
H A DMCStreamer.cpp795 unsigned UniqueID = TextSecCOFF->getOrAssignWinCFISectionID(NextWinCFIID); in getWinCFISection() local
817 return Context.getAssociativeCOFFSection(MainCFISecCOFF, KeySym, UniqueID); in getWinCFISection()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DIndexing.cpp71 llvm::sys::fs::UniqueID UniqueID; member in __anon08ff66800111::PPRegion
75 PPRegion() : UniqueID(0, 0), ModTime(), Offset() {} in PPRegion()
76 PPRegion(llvm::sys::fs::UniqueID UniqueID, unsigned offset, time_t modTime) in PPRegion() argument
77 : UniqueID(UniqueID), ModTime(modTime), Offset(offset) {} in PPRegion()
79 const llvm::sys::fs::UniqueID &getUniqueID() const { return UniqueID; } in getUniqueID()
86 return lhs.UniqueID == rhs.UniqueID && lhs.Offset == rhs.Offset && in operator ==()
98 return PPRegion(llvm::sys::fs::UniqueID(0, 0), unsigned(-1), 0); in getEmptyKey()
101 return PPRegion(llvm::sys::fs::UniqueID(0, 0), unsigned(-2), 0); in getTombstoneKey()
106 const llvm::sys::fs::UniqueID &UniqueID = S.getUniqueID(); in getHashValue() local
107 ID.AddInteger(UniqueID.getFile()); in getHashValue()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DFileEntry.h71 inline const llvm::sys::fs::UniqueID &getUniqueID() const;
338 llvm::sys::fs::UniqueID UniqueID;
371 const llvm::sys::fs::UniqueID &getUniqueID() const { return UniqueID; }
377 bool operator<(const FileEntry &RHS) const { return UniqueID < RHS.UniqueID; }
392 const llvm::sys::fs::UniqueID &FileEntryRef::getUniqueID() const {
H A DFileManager.h58 std::map<llvm::sys::fs::UniqueID, DirectoryEntry> UniqueRealDirs;
61 std::map<llvm::sys::fs::UniqueID, FileEntry> UniqueRealFiles;
H A DDiagnosticCrossTUKinds.td15 "error parsing index file: '%0' line: %1 'UniqueID filename' format "
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp699 unsigned UniqueID = MCContext::GenericSectionID; in selectExplicitSectionGlobal() local
703 UniqueID = NextUniqueID++; in selectExplicitSectionGlobal()
719 UniqueID = *maybeID; in selectExplicitSectionGlobal()
729 UniqueID = NextUniqueID++; in selectExplicitSectionGlobal()
738 UniqueID = maybeID ? *maybeID : NextUniqueID++; in selectExplicitSectionGlobal()
756 if (ForceUnique && UniqueID == MCContext::GenericSectionID) in selectExplicitSectionGlobal()
757 UniqueID = NextUniqueID++; in selectExplicitSectionGlobal()
761 Group, IsComdat, UniqueID, LinkedToSym); in selectExplicitSectionGlobal()
811 unsigned UniqueID = MCContext::GenericSectionID; in selectELFSectionForGlobal() local
816 UniqueID = *NextUniqueID; in selectELFSectionForGlobal()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp162 bool maybeParseUniqueID(int64_t &UniqueID);
479 bool ELFAsmParser::maybeParseUniqueID(int64_t &UniqueID) { in maybeParseUniqueID() argument
492 if (getParser().parseAbsoluteExpression(UniqueID)) in maybeParseUniqueID()
494 if (UniqueID < 0) in maybeParseUniqueID()
496 if (!isUInt<32>(UniqueID) || UniqueID == ~0U) in maybeParseUniqueID()
520 int64_t UniqueID = ~0; in ParseSectionArguments() local
592 if (maybeParseUniqueID(UniqueID)) in ParseSectionArguments()
660 IsComdat, UniqueID, LinkedToSym); in ParseSectionArguments()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Ddibuilder.go375 UniqueID string member
382 uniqueID := C.CString(t.UniqueID)
401 C.size_t(len(t.UniqueID)),
417 UniqueID string member
423 uniqueID := C.CString(t.UniqueID)
439 C.size_t(len(t.UniqueID)),
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DFileEntry.cpp20 FileEntry::FileEntry() : UniqueID(0, 0) {} in FileEntry()
H A DFileManager.cpp326 UFE.UniqueID = Status.getUniqueID(); in getFileRef()
422 UFE->UniqueID = Status.getUniqueID(); in getVirtualFileRef()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h49 unsigned UniqueID; variable
115 unsigned getUniqueID() const { return UniqueID; } in getUniqueID()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DVirtualFileSystem.h48 llvm::sys::fs::UniqueID UID;
62 Status(const Twine &Name, llvm::sys::fs::UniqueID UID,
80 llvm::sys::fs::UniqueID getUniqueID() const { return UID; } in getUniqueID()
499 llvm::sys::fs::UniqueID getNextVirtualUniqueID();
H A DFileSystem.h267 UniqueID getUniqueID() const;
1231 std::error_code getUniqueID(const Twine Path, UniqueID &Result);
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwinperf.d155 LONG UniqueID; member
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp523 std::map<llvm::sys::fs::UniqueID, PreambleFileHash> OverriddenFiles; in CanReuse()
575 std::map<llvm::sys::fs::UniqueID, PreambleFileHash>::iterator Overridden = in CanReuse()
H A DASTUnit.cpp171 llvm::sys::fs::UniqueID MainFileID = FileStatus->getUniqueID(); in getBufferForFileHandlingRemapping()
178 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); in getBufferForFileHandlingRemapping()
194 llvm::sys::fs::UniqueID MID = MPathStatus->getUniqueID(); in getBufferForFileHandlingRemapping()
2214 [&FileMgr](StringRef Filename) -> Optional<llvm::sys::fs::UniqueID> { in CodeComplete()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DVirtualFileSystem.cpp64 using llvm::sys::fs::UniqueID;
71 Status::Status(const Twine &Name, UniqueID UID, sys::TimePoint<> MTime, in Status()
2141 UniqueID vfs::getNextVirtualUniqueID() { in getNextVirtualUniqueID()
2146 return UniqueID(std::numeric_limits<uint64_t>::max(), ID); in getNextVirtualUniqueID()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc326 UniqueID file_status::getUniqueID() const {
327 return UniqueID(fs_st_dev, fs_st_ino);

12