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

  /device/linaro/bootloader/edk2/BaseTools/Source/C/Makefiles/
ms.app 20 $(LD) /nologo /debug /OPT:REF /OPT:ICF=10 /incremental:no /nodefaultlib:libc.lib /out:$@ $(LIBS) $**
  /frameworks/compile/mclinker/include/mcld/
GeneralOptions.h 44 enum class ICF {
266 ICF getICFMode() const { return m_ICF; }
268 void setICFMode(ICF pMode) { m_ICF = pMode; }
383 bool m_bPrintICFSections : 1; // --print-icf-sections
384 ICF m_ICF;
  /frameworks/compile/mclinker/lib/Core/
GeneralOptions.cpp 62 m_ICF(ICF::None),
  /external/lzma/CPP/
Build.mak 67 LFLAGS = $(LFLAGS) -nologo -OPT:REF -OPT:ICF
  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 778 // --icf=mode
780 mcld::GeneralOptions::ICF mode =
781 llvm::StringSwitch<mcld::GeneralOptions::ICF>(arg->getValue())
782 .Case("none", mcld::GeneralOptions::ICF::None)
783 .Case("all", mcld::GeneralOptions::ICF::All)
784 .Case("safe", mcld::GeneralOptions::ICF::Safe)
785 .Default(mcld::GeneralOptions::ICF::Unknown);
786 if (mode == mcld::GeneralOptions::ICF::Unknown) {
794 // --icf-iterations
806 // --[no-]print-icf-section
    [all...]
  /frameworks/compile/mclinker/lib/LD/
IdenticalCodeFolding.cpp 139 // Safe icf
140 if (m_Config.options().getICFMode() == GeneralOptions::ICF::Safe) {
169 if ((m_Config.options().getICFMode() == GeneralOptions::ICF::All) ||
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 276 if (m_Config.options().getICFMode() != GeneralOptions::ICF::None) {
277 IdenticalCodeFolding icf(m_Config, m_LDBackend, *m_pModule);
278 icf.foldIdenticalCode();
    [all...]

Completed in 1189 milliseconds