Home
last modified time | relevance | path

Searched refs:StripPolicy (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DConfig.h103 enum class StripPolicy { None, All, Debug }; enum
432 StripPolicy strip;
H A DDriver.cpp452 if (ctx.arg.strip == StripPolicy::All && ctx.arg.emitRelocs) in checkOptions()
899 static StripPolicy getStrip(Ctx &ctx, opt::InputArgList &args) { in getStrip()
901 return StripPolicy::None; in getStrip()
903 return StripPolicy::All; in getStrip()
907 return StripPolicy::None; in getStrip()
909 return StripPolicy::All; in getStrip()
910 return StripPolicy::Debug; in getStrip()
3373 if (ctx.arg.strip != StripPolicy::None) { in link()
H A DSyntheticSections.cpp4744 if (ctx.arg.strip != StripPolicy::All) { in createSyntheticSections()