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.cpp321 const std::string &SectionSuffix, in writeDataSection() argument
332 SectionSuffix, IsPIC); in writeDataSection()
348 const std::string &SectionSuffix, in writeDataOfType() argument
364 MangleSectionName(IsPIC ? ".data.rel.ro" : ".rodata", SectionSuffix); in writeDataOfType()
375 const std::string SectionName = MangleSectionName(".data", SectionSuffix); in writeDataOfType()
386 const std::string SectionName = MangleSectionName(".bss", SectionSuffix); in writeDataOfType()
DIceTargetLowering.cpp1005 std::string dataSectionSuffix(const std::string &SectionSuffix, in dataSectionSuffix() argument
1008 if (SectionSuffix.empty() && !DataSections) { in dataSectionSuffix()
1017 assert(!SectionSuffix.empty()); in dataSectionSuffix()
1018 return "." + SectionSuffix; in dataSectionSuffix()
1024 const std::string &SectionSuffix) { in emitGlobal() argument
1045 dataSectionSuffix(SectionSuffix, Name, UseDataSections); in emitGlobal()
DIceTargetLowering.h625 const std::string &SectionSuffix) = 0;
632 const std::string &SectionSuffix);
DIceGlobalContext.cpp494 void GlobalContext::lowerGlobals(const std::string &SectionSuffix) { in lowerGlobals() argument
522 DataLowering->lowerGlobals(Globals, SectionSuffix); in lowerGlobals()
DIceGlobalContext.h397 void lowerGlobals(const std::string &SectionSuffix);
DIceTargetLoweringMIPS32.h940 const std::string &SectionSuffix) override;
DIceTargetLoweringARM32.h1399 const std::string &SectionSuffix) override;
DIceTargetLoweringX86Base.h1230 const std::string &SectionSuffix) override;
DIceTargetLoweringMIPS32.cpp5746 const std::string &SectionSuffix) { in lowerGlobals() argument
5751 Writer->writeDataSection(Vars, llvm::ELF::R_MIPS_32, SectionSuffix, IsPIC); in lowerGlobals()
5758 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
DIceTargetLoweringARM32.cpp7225 const std::string &SectionSuffix) { in lowerGlobals() argument
7230 Writer->writeDataSection(Vars, llvm::ELF::R_ARM_ABS32, SectionSuffix, in lowerGlobals()
7238 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
DIceTargetLoweringX86BaseImpl.h8544 const VariableDeclarationList &Vars, const std::string &SectionSuffix) {
8549 Writer->writeDataSection(Vars, Traits::FK_Abs, SectionSuffix, IsPIC);
8556 emitGlobal(*Var, SectionSuffix);