Searched refs:SectionSuffix (Results 1 – 12 of 12) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.h | 67 const std::string &SectionSuffix, bool IsPIC); 166 const std::string &SectionSuffix, bool IsPIC);
|
D | IceELFObjectWriter.cpp | 320 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()
|
D | IceTargetLowering.cpp | 994 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()
|
D | IceTargetLowering.h | 617 const std::string &SectionSuffix) = 0; 624 const std::string &SectionSuffix);
|
D | IceGlobalContext.cpp | 485 void GlobalContext::lowerGlobals(const std::string &SectionSuffix) { in lowerGlobals() argument 503 DataLowering->lowerGlobals(Globals, SectionSuffix); in lowerGlobals()
|
D | IceGlobalContext.h | 394 void lowerGlobals(const std::string &SectionSuffix);
|
D | IceTargetLoweringMIPS32.h | 934 const std::string &SectionSuffix) override;
|
D | IceTargetLoweringARM32.h | 1392 const std::string &SectionSuffix) override;
|
D | IceTargetLoweringX86Base.h | 1226 const std::string &SectionSuffix) override;
|
D | IceTargetLoweringMIPS32.cpp | 5714 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()
|
D | IceTargetLoweringARM32.cpp | 7205 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()
|
D | IceTargetLoweringX86BaseImpl.h | 8367 const VariableDeclarationList &Vars, const std::string &SectionSuffix) { 8372 Writer->writeDataSection(Vars, Traits::FK_Abs, SectionSuffix, IsPIC); 8379 emitGlobal(*Var, SectionSuffix);
|