Home
last modified time | relevance | path

Searched refs:SectionSuffix (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceELFObjectWriter.h67 const std::string &SectionSuffix, bool IsPIC);
166 const std::string &SectionSuffix, bool IsPIC);
DIceELFObjectWriter.cpp320 const std::string &SectionSuffix, in writeDataSection() argument
331 SectionSuffix, IsPIC); in writeDataSection()
347 const std::string &SectionSuffix, in writeDataOfType() argument
363 MangleSectionName(IsPIC ? ".data.rel.ro" : ".rodata", SectionSuffix); in writeDataOfType()
374 const std::string SectionName = MangleSectionName(".data", SectionSuffix); in writeDataOfType()
385 const std::string SectionName = MangleSectionName(".bss", SectionSuffix); in writeDataOfType()
DIceTargetLowering.cpp994 std::string dataSectionSuffix(const std::string &SectionSuffix, in dataSectionSuffix() argument
997 if (SectionSuffix.empty() && !DataSections) { in dataSectionSuffix()
1006 assert(!SectionSuffix.empty()); in dataSectionSuffix()
1007 return "." + SectionSuffix; in dataSectionSuffix()
1013 const std::string &SectionSuffix) { in emitGlobal() argument
1034 dataSectionSuffix(SectionSuffix, Name, UseDataSections); in emitGlobal()
DIceTargetLowering.h617 const std::string &SectionSuffix) = 0;
624 const std::string &SectionSuffix);
DIceGlobalContext.cpp485 void GlobalContext::lowerGlobals(const std::string &SectionSuffix) { in lowerGlobals() argument
503 DataLowering->lowerGlobals(Globals, SectionSuffix); in lowerGlobals()
DIceGlobalContext.h394 void lowerGlobals(const std::string &SectionSuffix);
DIceTargetLoweringMIPS32.h934 const std::string &SectionSuffix) override;
DIceTargetLoweringARM32.h1392 const std::string &SectionSuffix) override;
DIceTargetLoweringX86Base.h1226 const std::string &SectionSuffix) override;
DIceTargetLoweringMIPS32.cpp5714 const std::string &SectionSuffix) { in lowerGlobals() argument
5719 Writer->writeDataSection(Vars, llvm::ELF::R_MIPS_32, SectionSuffix, IsPIC); in lowerGlobals()
5726 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
DIceTargetLoweringARM32.cpp7205 const std::string &SectionSuffix) { in lowerGlobals() argument
7210 Writer->writeDataSection(Vars, llvm::ELF::R_ARM_ABS32, SectionSuffix, in lowerGlobals()
7218 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
DIceTargetLoweringX86BaseImpl.h8367 const VariableDeclarationList &Vars, const std::string &SectionSuffix) {
8372 Writer->writeDataSection(Vars, Traits::FK_Abs, SectionSuffix, IsPIC);
8379 emitGlobal(*Var, SectionSuffix);