Lines Matching defs:sectionName
178 uint8_t *CodeInfo::AllocaCodeSectionImp(uintptr_t size, const char *sectionName,
182 auto curSec = ElfSection(sectionName);
200 uint8_t *CodeInfo::AllocaCodeSection(uintptr_t size, const char *sectionName)
202 return AllocaCodeSectionImp(size, sectionName, &CodeInfo::AllocaInReqSecBuffer);
205 uint8_t *CodeInfo::AllocaCodeSectionOnDemand(uintptr_t size, const char *sectionName)
207 return AllocaCodeSectionImp(size, sectionName, &CodeInfo::AllocaOnDemand);
210 uint8_t *CodeInfo::AllocaDataSectionImp(uintptr_t size, const char *sectionName,
215 auto curSec = ElfSection(sectionName);
238 uint8_t *CodeInfo::AllocaDataSection(uintptr_t size, const char *sectionName)
240 return AllocaDataSectionImp(size, sectionName, &CodeInfo::AllocaInReqSecBuffer, &CodeInfo::AllocaInNotReqSecBuffer);
243 uint8_t *CodeInfo::AllocaDataSectionOnDemand(uintptr_t size, const char *sectionName)
245 return AllocaDataSectionImp(size, sectionName, &CodeInfo::AllocaOnDemand, &CodeInfo::AllocaOnDemand);
359 [[maybe_unused]] unsigned sectionID, const char *sectionName)
362 return state.AllocaCodeSection(size, sectionName);
366 [[maybe_unused]] unsigned sectionID, const char *sectionName)
369 return state.AllocaCodeSectionOnDemand(size, sectionName);
373 [[maybe_unused]] unsigned sectionID, const char *sectionName,
377 return state.AllocaDataSection(size, sectionName);
381 [[maybe_unused]] unsigned sectionID, const char *sectionName,
385 return state.AllocaDataSectionOnDemand(size, sectionName);