Lines Matching refs:SectionKind
62 class SectionKind(Enum): class
246 section_kind = SectionKind.for_section_named(section.name)
312 for kind in SectionKind:
319 out = set(SectionKind)
336 kind: SectionKind, argument
355 if region_is_default_ram(memory_type) and kind in (SectionKind.DATA, SectionKind.BSS):
358 if not region_is_default_ram(memory_type) and kind is SectionKind.RODATA:
366 … if region_is_default_ram(memory_type) and kind in (SectionKind.TEXT, SectionKind.LITERAL):
394 …gen_string += string_create_helper(SectionKind.LITERAL, memory_type, full_list_of_sections, 1, is_…
395 …gen_string += string_create_helper(SectionKind.TEXT, memory_type, full_list_of_sections, 1, is_cop…
396 …gen_string += string_create_helper(SectionKind.RODATA, memory_type, full_list_of_sections, 1, is_c…
402 …gen_string_sram_data += string_create_helper(SectionKind.DATA, memory_type, full_list_of_sections,…
403 …gen_string_sram_bss += string_create_helper(SectionKind.BSS, memory_type, full_list_of_sections, 0…
405 …gen_string += string_create_helper(SectionKind.DATA, memory_type, full_list_of_sections, 1, 1, phd…
406 …gen_string += string_create_helper(SectionKind.BSS, memory_type, full_list_of_sections, 0, 1, phdr…
424 for kind in (SectionKind.TEXT, SectionKind.RODATA, SectionKind.DATA):
425 if region_is_default_ram(memory_type) and kind is SectionKind.DATA:
435 if (SectionKind.BSS in generate_sections
436 and full_list_of_sections[SectionKind.BSS]
441 memory_type.lower(), SectionKind.BSS.value)