HomeSort by relevance Sort by last modified time
    Searched refs:GeneralOptions (Results 1 - 15 of 15) sorted by null

  /frameworks/compile/mclinker/lib/Core/
GeneralOptions.cpp 1 //===- GeneralOptions.cpp -------------------------------------------------===//
9 #include <mcld/GeneralOptions.h>
17 // GeneralOptions
19 GeneralOptions::GeneralOptions()
68 GeneralOptions::~GeneralOptions()
72 void GeneralOptions::setSOName(const std::string& pName)
81 void GeneralOptions::addZOption(const ZOption& pOption)
154 bool GeneralOptions::isInExcludeLIBS(const Input& pInput) cons
    [all...]
Android.mk 7 GeneralOptions.cpp \
  /frameworks/compile/mclinker/tools/mcld/include/mcld/
OptimizationOptions.h 11 #include <mcld/GeneralOptions.h>
30 llvm::cl::opt<mcld::GeneralOptions::ICF>& m_ICF;
OutputFormatOptions.h 14 #include <mcld/GeneralOptions.h>
49 llvm::cl::opt<mcld::GeneralOptions::HashStyle>& m_HashStyle;
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 14 #include <mcld/GeneralOptions.h>
72 const GeneralOptions& options() const { return m_Options; }
73 GeneralOptions& options() { return m_Options; }
99 GeneralOptions m_Options;
GeneralOptions.h 1 //===- GeneralOptions.h ---------------------------------------------------===//
22 /** \class GeneralOptions
23 * \brief GeneralOptions collects the options that not be one of the
27 class GeneralOptions
68 GeneralOptions();
69 ~GeneralOptions();
  /frameworks/compile/mclinker/tools/mcld/lib/
OptimizationOptions.cpp 63 llvm::cl::opt<mcld::GeneralOptions::ICF> ArgICF("icf",
66 llvm::cl::init(mcld::GeneralOptions::ICF_None),
68 clEnumValN(mcld::GeneralOptions::ICF_None, "none",
70 clEnumValN(mcld::GeneralOptions::ICF_All, "all",
72 clEnumValN(mcld::GeneralOptions::ICF_Safe, "safe",
OutputFormatOptions.cpp 139 llvm::cl::opt<mcld::GeneralOptions::HashStyle> ArgHashStyle("hash-style",
140 llvm::cl::init(mcld::GeneralOptions::SystemV),
143 clEnumValN(mcld::GeneralOptions::SystemV, "sysv",
145 clEnumValN(mcld::GeneralOptions::GNU, "gnu",
147 clEnumValN(mcld::GeneralOptions::Both, "both",
217 pConfig.options().setStripSymbols(mcld::GeneralOptions::StripAllSymbols);
219 pConfig.options().setStripSymbols(mcld::GeneralOptions::StripLocals);
221 pConfig.options().setStripSymbols(mcld::GeneralOptions::StripTemporaries);
223 pConfig.options().setStripSymbols(mcld::GeneralOptions::KeepAllSymbols);
  /frameworks/compile/mclinker/unittests/
ELFBinaryReaderTest.cpp 14 #include <mcld/GeneralOptions.h>
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 277 GeneralOptions::const_undef_sym_iterator usym;
278 GeneralOptions::const_undef_sym_iterator usymEnd =
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 787 case GeneralOptions::StripAllSymbols: {
825 if (GeneralOptions::GNU == config().options().getHashStyle() ||
826 GeneralOptions::Both == config().options().getHashStyle()) {
845 if (GeneralOptions::SystemV == config().options().getHashStyle() ||
846 GeneralOptions::Both == config().options().getHashStyle()) {
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 119 GeneralOptions::const_undef_sym_iterator usym;
120 GeneralOptions::const_undef_sym_iterator usymEnd =
277 if (m_Config.options().getICFMode() != GeneralOptions::ICF_None) {
    [all...]
  /frameworks/compile/mclinker/lib/CodeGen/
MCLinker.cpp 278 GeneralOptions::const_script_iterator ii, ie = m_Config.options().script_end();
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp 656 case GeneralOptions::StripAllSymbols:
657 case GeneralOptions::StripLocals:
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 312 if (GeneralOptions::GNU == config().options().getHashStyle() ||
313 GeneralOptions::Both == config().options().getHashStyle()) {

Completed in 603 milliseconds