Lines Matching refs:LinkerConfig
44 const LinkerConfig& pConfig) in ELFObjectWriter()
121 bool is_dynobj = m_Config.codeGenType() == LinkerConfig::DynObj; in writeObject()
122 bool is_exec = m_Config.codeGenType() == LinkerConfig::Exec; in writeObject()
123 bool is_binary = m_Config.codeGenType() == LinkerConfig::Binary; in writeObject()
124 bool is_object = m_Config.codeGenType() == LinkerConfig::Object; in writeObject()
203 void ELFObjectWriter::writeELFHeader(const LinkerConfig& pConfig, in writeELFHeader()
227 case LinkerConfig::Object: in writeELFHeader()
230 case LinkerConfig::DynObj: in writeELFHeader()
233 case LinkerConfig::Exec: in writeELFHeader()
245 if (LinkerConfig::Object != pConfig.codeGenType()) in writeELFHeader()
261 uint64_t ELFObjectWriter::getEntryPoint(const LinkerConfig& pConfig, in getEntryPoint()
267 LinkerConfig::Object != pConfig.codeGenType() && in getEntryPoint()
268 LinkerConfig::DynObj != pConfig.codeGenType()); in getEntryPoint()
299 const LinkerConfig& pConfig, in emitSectionHeader()
448 void ELFObjectWriter::emitRelocation(const LinkerConfig& pConfig, in emitRelocation()
478 void ELFObjectWriter::emitRel(const LinkerConfig& pConfig, in emitRel()
499 if (LinkerConfig::DynObj == pConfig.codeGenType() || in emitRel()
500 LinkerConfig::Exec == pConfig.codeGenType()) { in emitRel()
520 void ELFObjectWriter::emitRela(const LinkerConfig& pConfig, in emitRela()
541 if (LinkerConfig::DynObj == pConfig.codeGenType() || in emitRela()
542 LinkerConfig::Exec == pConfig.codeGenType()) { in emitRela()
593 const LinkerConfig& pConfig) const { in getSectLink()
605 if (LinkerConfig::Object == pConfig.codeGenType()) in getSectLink()