Searched refs:SectionSuffix (Results 1 – 14 of 14) sorted by relevance
/third_party/skia/third_party/externals/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 | 314 const std::string &SectionSuffix, in writeDataSection() argument 325 SectionSuffix, IsPIC); in writeDataSection() 341 const std::string &SectionSuffix, in writeDataOfType() argument 357 MangleSectionName(IsPIC ? ".data.rel.ro" : ".rodata", SectionSuffix); in writeDataOfType() 368 const std::string SectionName = MangleSectionName(".data", SectionSuffix); in writeDataOfType() 379 const std::string SectionName = MangleSectionName(".bss", SectionSuffix); in writeDataOfType()
|
D | IceTargetLowering.cpp | 963 std::string dataSectionSuffix(const std::string &SectionSuffix, in dataSectionSuffix() argument 966 if (SectionSuffix.empty() && !DataSections) { in dataSectionSuffix() 975 assert(!SectionSuffix.empty()); in dataSectionSuffix() 976 return "." + SectionSuffix; in dataSectionSuffix() 982 const std::string &SectionSuffix) { in emitGlobal() argument 1002 dataSectionSuffix(SectionSuffix, Name, UseDataSections); in emitGlobal()
|
D | IceTargetLowering.h | 570 const std::string &SectionSuffix) = 0; 577 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 | 902 const std::string &SectionSuffix) override;
|
D | IceTargetLoweringX8632.h | 1036 const std::string &SectionSuffix) override;
|
D | IceTargetLoweringX8664.h | 1019 const std::string &SectionSuffix) override;
|
D | IceTargetLoweringARM32.h | 1230 const std::string &SectionSuffix) override;
|
D | IceTargetLoweringMIPS32.cpp | 5667 const std::string &SectionSuffix) { in lowerGlobals() argument 5672 Writer->writeDataSection(Vars, llvm::ELF::R_MIPS_32, SectionSuffix, IsPIC); in lowerGlobals() 5679 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
|
D | IceTargetLoweringARM32.cpp | 6790 const std::string &SectionSuffix) { in lowerGlobals() argument 6795 Writer->writeDataSection(Vars, llvm::ELF::R_ARM_ABS32, SectionSuffix, in lowerGlobals() 6803 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
|
D | IceTargetLoweringX8664.cpp | 7027 const std::string &SectionSuffix) { in lowerGlobals() argument 7032 Writer->writeDataSection(Vars, FK_Abs, SectionSuffix, IsPIC); in lowerGlobals() 7039 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
|
D | IceTargetLoweringX8632.cpp | 7761 const std::string &SectionSuffix) { in lowerGlobals() argument 7766 Writer->writeDataSection(Vars, FK_Abs, SectionSuffix, IsPIC); in lowerGlobals() 7773 emitGlobal(*Var, SectionSuffix); in lowerGlobals()
|