OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UniqueID
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCSectionWasm.cpp
94
OS << ",unique," <<
UniqueID
;
MCSectionELF.cpp
188
OS << ",unique," <<
UniqueID
;
MCContext.cpp
451
unsigned
UniqueID
= Section->getUniqueID();
453
ELFSectionKey{Section->getName(), GroupName, "",
UniqueID
});
456
ELFSectionKey{Name, GroupName, "",
UniqueID
}, Section))
466
bool Comdat, unsigned
UniqueID
,
487
MCSectionELF(Section, Type, Flags, K, EntrySize, Group, Comdat,
UniqueID
,
523
unsigned
UniqueID
,
530
UniqueID
, LinkedToSym);
536
bool IsComdat, unsigned
UniqueID
,
545
LinkedToSym ? LinkedToSym->getName() : "",
UniqueID
},
563
IsComdat,
UniqueID
, LinkedToSym)
[
all
...]
MCStreamer.cpp
795
unsigned
UniqueID
= TextSecCOFF->getOrAssignWinCFISectionID(NextWinCFIID);
817
return Context.getAssociativeCOFFSection(MainCFISecCOFF, KeySym,
UniqueID
);
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/FileSystem/
UniqueID.h
1
//===- llvm/Support/FileSystem/
UniqueID
.h -
UniqueID
for files --*- C++ -*-===//
9
// This file is cut out of llvm/Support/FileSystem.h to allow
UniqueID
to be
23
class
UniqueID
{
28
UniqueID
() = default;
29
UniqueID
(uint64_t Device, uint64_t File) : Device(Device), File(File) {}
31
bool operator==(const
UniqueID
&Other) const {
34
bool operator!=(const
UniqueID
&Other) const { return !(*this == Other); }
35
bool operator<(const
UniqueID
&Other) const {
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionELF.h
35
unsigned
UniqueID
;
56
unsigned
UniqueID
, MCSymbol *Begin,
59
UniqueID
(
UniqueID
), EntrySize(entrySize), Group(group, IsComdat),
88
bool isUnique() const { return
UniqueID
!= NonUniqueID; }
89
unsigned getUniqueID() const { return
UniqueID
; }
MCSectionWasm.h
27
unsigned
UniqueID
;
49
const MCSymbolWasm *Group, unsigned
UniqueID
, MCSymbol *Begin)
50
: MCSection(SV_Wasm, Name, K, Begin),
UniqueID
(
UniqueID
), Group(Group),
72
bool isUnique() const { return
UniqueID
!= ~0U; }
73
unsigned getUniqueID() const { return
UniqueID
; }
MCContext.h
231
unsigned
UniqueID
;
234
StringRef LinkedToName, unsigned
UniqueID
)
236
LinkedToName(LinkedToName),
UniqueID
(
UniqueID
) {}
245
return
UniqueID
< Other.
UniqueID
;
253
unsigned
UniqueID
;
256
int SelectionKey, unsigned
UniqueID
)
258
SelectionKey(SelectionKey),
UniqueID
(
UniqueID
) {}
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
FileEntry.h
25
#include "llvm/Support/FileSystem/
UniqueID
.h"
71
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 {
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h
49
unsigned
UniqueID
;
115
unsigned getUniqueID() const { return
UniqueID
; }
AsmPrinter.cpp
1905
unsigned
UniqueID
= 0;
1913
"", false, ++
UniqueID
, nullptr));
/src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
ELFAsmParser.cpp
162
bool maybeParseUniqueID(int64_t &
UniqueID
);
479
bool ELFAsmParser::maybeParseUniqueID(int64_t &
UniqueID
) {
492
if (getParser().parseAbsoluteExpression(
UniqueID
))
494
if (
UniqueID
< 0)
496
if (!isUInt<32>(
UniqueID
) ||
UniqueID
== ~0U)
520
int64_t
UniqueID
= ~0;
592
if (maybeParseUniqueID(
UniqueID
))
660
IsComdat,
UniqueID
, LinkedToSym);
/src/external/apache2/llvm/dist/clang/tools/libclang/
Indexing.cpp
71
llvm::sys::fs::
UniqueID
UniqueID
;
75
PPRegion() :
UniqueID
(0, 0), ModTime(), Offset() {}
76
PPRegion(llvm::sys::fs::
UniqueID
UniqueID
, unsigned offset, time_t modTime)
77
:
UniqueID
(
UniqueID
), ModTime(modTime), Offset(offset) {}
79
const llvm::sys::fs::
UniqueID
&getUniqueID() const { return
UniqueID
; }
86
return lhs.
UniqueID
== rhs.UniqueID && lhs.Offset == rhs.Offset &
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp
699
unsigned
UniqueID
= MCContext::GenericSectionID;
703
UniqueID
= NextUniqueID++;
719
UniqueID
= *maybeID;
729
UniqueID
= NextUniqueID++;
738
UniqueID
= maybeID ? *maybeID : NextUniqueID++;
753
// Increment
uniqueID
if we are forced to emit a unique section.
756
if (ForceUnique &&
UniqueID
== MCContext::GenericSectionID)
757
UniqueID
= NextUniqueID++;
761
Group, IsComdat,
UniqueID
, LinkedToSym);
763
// This should not be possible due to
UniqueID
code above
[
all
...]
Completed in 46 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026