Lines Matching defs:Defined
165 class Defined : public Symbol {
167 Defined(Kind k, StringRef n) : Symbol(k, n) {}
184 class DefinedCOFF : public Defined {
189 : Defined(k, n), file(f), sym(s) {}
253 class DefinedAbsolute : public Defined {
256 : Defined(DefinedAbsoluteKind, n), va(s.getValue()), ctx(c) {
261 : Defined(DefinedAbsoluteKind, n), va(v), ctx(c) {}
278 class DefinedSynthetic : public Defined {
281 : Defined(DefinedSyntheticKind, name), c(c), offset(offset) {}
352 Defined *getDefinedWeakAlias() {
353 return dyn_cast_or_null<Defined>(getWeakAlias());
375 class DefinedImportData : public Defined {
378 : Defined(DefinedImportDataKind, n), file(file), location(location) {}
408 class DefinedImportThunk : public Defined {
431 class DefinedLocalImport : public Defined {
433 DefinedLocalImport(COFFLinkerContext &ctx, StringRef n, Defined *s)
434 : Defined(DefinedLocalImportKind, n),
448 inline uint64_t Defined::getRVA() {
473 inline Chunk *Defined::getChunk() {