Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/
DGeneralOptions.h37 enum class HashStyle : uint8_t { enum
254 HashStyle getHashStyle() const { return m_HashStyle; } in getHashStyle()
257 return m_HashStyle == HashStyle::GNU || m_HashStyle == HashStyle::Both; in hasGNUHash()
261 return m_HashStyle == HashStyle::SystemV || m_HashStyle == HashStyle::Both; in hasSysVHash()
264 void setHashStyle(HashStyle pStyle) { m_HashStyle = pStyle; } in setHashStyle()
390 HashStyle m_HashStyle;
/frameworks/compile/mclinker/tools/mcld/
DMain.cpp555 mcld::GeneralOptions::HashStyle style = in TranslateArguments()
556 llvm::StringSwitch<mcld::GeneralOptions::HashStyle>(arg->getValue()) in TranslateArguments()
557 .Case("sysv", mcld::GeneralOptions::HashStyle::SystemV) in TranslateArguments()
558 .Case("gnu", mcld::GeneralOptions::HashStyle::GNU) in TranslateArguments()
559 .Case("both", mcld::GeneralOptions::HashStyle::Both) in TranslateArguments()
560 .Default(mcld::GeneralOptions::HashStyle::Unknown); in TranslateArguments()
561 if (style != mcld::GeneralOptions::HashStyle::Unknown) { in TranslateArguments()
DOptions.td225 def HashStyle : Joined<["--"], "hash-style=">,
/frameworks/compile/mclinker/lib/Core/
DGeneralOptions.cpp65 m_HashStyle(HashStyle::SystemV) { in GeneralOptions()