Searched refs:region (Results 1 – 25 of 115) sorted by relevance
12345
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
D | orphan-region.ld | 3 region : ORIGIN = 0x40000000, LENGTH = 8M 8 .text : ALIGN (4) { *(.text) } > region 9 .rodata : ALIGN (4) { *(.rodata) } > region
|
D | orphan-region.d | 1 #source: orphan-region.s 2 #ld: -T orphan-region.ld -N -z stack-size=0
|
/toolchain/binutils/binutils-2.25/ld/emultempl/ |
D | m68hc1xelf.em | 64 lang_memory_region_type* region; 97 /* The 'bank_window_name' memory region is a special region that describes 104 memory region allows to control how this paged memory is accessed. */ 105 region = lang_memory_region_lookup (bank_window_name, FALSE); 108 if (region->length != 0) 117 /* And override them with the region definition. */ 118 pinfo->bank_size = region->length; 125 pinfo->bank_physical = region->origin; 126 pinfo->bank_physical_end = region->origin + pinfo->bank_size; 128 if (pinfo->bank_size != region->length) [all …]
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
D | region-alias-4.d | 2 #ld: -T region-alias-4.t 3 #error: .*:[0-9]+: error: alias for default memory region
|
D | region-alias-3.d | 2 #ld: -T region-alias-3.t 3 #error: .*:[0-9]+: error: alias for default memory region
|
D | region-alias-1.d | 2 #ld: -T region-alias-1.t 3 #error: .*:[0-9]+: error: redefinition of memory region alias `MY_ALIAS'
|
D | region-alias-2.d | 2 #ld: -T region-alias-2.t 3 #error: .*:[0-9]+: error: memory region `NIL' for alias `MY_ALIAS' does not exist
|
D | rgn-over1.t | 1 /* Memory region overflow tests: one region, first output sect doesn't fit. */
|
D | rgn-over2.t | 1 /* Memory region overflow tests: one region, first output sect fits,
|
D | rgn-at6.d | 5 # Test that lma is aligned as for vma when lma_region==region.
|
D | rgn-at7.d | 5 # Test that lma is only aligned by script when lma_region!=region.
|
D | rgn-at8.d | 5 # Test that lma is aligned when lma_region!=region and requested by script.
|
D | rgn-over2.d | 4 …[^\n]*?section `\.data' will not fit in region `r1'\n[^ \n]*?ld[^:\n]*?: region `r1' overflowed by…
|
D | rgn-over4.d | 4 …^:\n]*?section `\.text' will not fit in region `r1'\n[^ \n]*?ld[^:\n]*?: region `r1' overflowed by…
|
D | rgn-over5.d | 4 …[^\n]*?section `\.text' will not fit in region `v1'\n[^ \n]*?ld[^:\n]*?: region `v1' overflowed by…
|
D | rgn-over1.d | 4 …[^\n]*?section \`.text' will not fit in region `r1'\n[^ \n]*?ld[^:\n]*?: region `r1' overflowed by…
|
D | rgn-at9.d | 6 # lma_region != region if requested by script.
|
D | rgn-at11.d | 6 # lma_region != region if not requested by script.
|
D | rgn-at1.t | 1 /* Memory region at test, >AT should propagate by default */
|
D | rgn-over7.t | 1 /* Memory region overflow tests: overflow r1 plus text/data collision. */
|
D | rgn-at4.t | 1 /* Memory region at test, >AT should propagate by default */
|
D | rgn-over6.t | 1 /* Memory region overflow tests: overflow LMA and VMA. */
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
D | unwind-err.l | 17 .*:24: Error: .label_state outside of body region 18 .*:25: Error: .copy_state outside of body region 23 .*:30: Error: .restore outside of body region
|
/toolchain/binutils/binutils-2.25/ld/ |
D | ldlang.c | 1339 lang_memory_region_type * region; in lang_memory_region_alias() local 1350 region = NULL; in lang_memory_region_alias() 1354 if (region == NULL && strcmp (n->name, region_name) == 0) in lang_memory_region_alias() 1355 region = r; in lang_memory_region_alias() 1363 if (region == NULL) in lang_memory_region_alias() 1371 n->next = region->name_list.next; in lang_memory_region_alias() 1372 region->name_list.next = n; in lang_memory_region_alias() 1864 const char *region = (after->region in lang_insert_orphan() local 1865 ? after->region->name_list.name in lang_insert_orphan() 1870 lang_leave_output_section_statement (NULL, region, after->phdrs, in lang_insert_orphan() [all …]
|
D | ldgram.y | 49 static lang_memory_region_type *region; variable 807 { region = lang_memory_region_lookup ($1, TRUE); } 820 region->origin = exp_get_vma ($3, 0, "origin"); 821 region->current = region->origin; 828 region->length = exp_get_vma ($3, -1, "length"); 845 { lang_set_flags (region, $1, 0); } 847 { lang_set_flags (region, $2, 1); }
|
12345