Home
last modified time | relevance | path

Searched refs:SharedKind (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbols.h77 SharedKind, enumerator
188 bool isShared() const { return symbolKind == SharedKind; } in isShared()
454 static bool classof(const Symbol *s) { return s->kind() == SharedKind; } in classof()
459 : Symbol(SharedKind, &file, name, binding, stOther, type), value(value), in SharedSymbol()
483 Symbol::overwrite(sym, SharedKind); in overwrite()
H A DInputFiles.h63 SharedKind, enumerator
74 return k == ObjKind || k == SharedKind; in isElf()
361 static bool classof(const InputFile *f) { return f->kind() == SharedKind; } in classof()
H A DSymbols.cpp146 case Symbol::SharedKind: in getSymVA()
H A DInputFiles.cpp564 findSection(sections, k == SharedKind ? SHT_DYNSYM : SHT_SYMTAB); in init()
1363 : ELFFileBase(SharedKind, getELFKind(m, ""), m), soName(defaultSoName), in SharedFile()