Searched refs:_stext (Results 1 - 25 of 91) sorted by relevance

1234

/linux-master/arch/x86/include/asm/
H A Dorc_lookup.h29 #define LOOKUP_START_IP (unsigned long)_stext
/linux-master/arch/loongarch/include/asm/
H A Dorc_lookup.h26 #define LOOKUP_START_IP (unsigned long)_stext
/linux-master/arch/powerpc/include/asm/
H A Dsections.h65 real_start = __start_interrupts - _stext;
66 real_end = __end_interrupts - _stext;
75 (unsigned long)_stext < end;
/linux-master/include/trace/events/
H A Dpreemptirq.h26 __entry->caller_offs = (s32)(ip - (unsigned long)_stext);
27 __entry->parent_offs = (s32)(parent_ip - (unsigned long)_stext);
31 (void *)((unsigned long)(_stext) + __entry->caller_offs),
32 (void *)((unsigned long)(_stext) + __entry->parent_offs))
/linux-master/include/asm-generic/
H A Dsections.h13 * [_stext, _etext]: contains .text.* sections, may also contain .rodata.*
35 extern char _text[], _stext[], _etext[];
209 * Note: an internal helper, only check the range of _stext to _etext.
213 return addr >= (unsigned long)_stext &&
223 * Note: an internal helper, check the range of _stext to _end,
225 * of the _stext to _end range.
229 return ((addr >= (unsigned long)_stext &&
/linux-master/arch/nios2/kernel/
H A Dsetup.c152 setup_initial_init_mm(_stext, _etext, _edata, _end);
161 memblock_reserve(__pa_symbol(_stext), _end - _stext);
H A Dvmlinux.lds.S22 _stext = .; define
/linux-master/arch/openrisc/kernel/
H A Dvmlinux.lds.S52 _stext = .; define
H A Dsetup.c76 memblock_reserve(__pa(_stext), _end - _stext);
270 setup_initial_init_mm(_stext, _etext, _edata, _end);
/linux-master/arch/hexagon/kernel/
H A Dvmlinux.lds.S37 _stext = .; define
/linux-master/arch/alpha/kernel/
H A Dhead.S17 .globl _stext
21 _stext: label
/linux-master/arch/powerpc/mm/
H A Dpgtable_32.c166 if (v_block_mapped((unsigned long)_stext + 1))
175 PFN_DOWN((unsigned long)_stext);
177 return set_memory_ro((unsigned long)_stext, numpages);
/linux-master/arch/arm64/kernel/pi/
H A Dmap_range.c99 map_range(&ptep, (u64)_stext, (u64)__initdata_begin, (u64)_stext,
H A Dmap_kernel.c81 map_segment(init_pg_dir, &pgdp, va_offset, _stext, _etext, prot,
112 unmap_segment(init_pg_dir, va_offset, _stext, _etext,
123 map_segment(init_pg_dir, NULL, va_offset, _stext, _etext,
/linux-master/arch/m68k/kernel/
H A Dsetup_no.c88 setup_initial_init_mm(_stext, _etext, _edata, NULL);
140 _stext, _etext, _sdata, _edata, __bss_start, __bss_stop);
H A Dsun3-head.S35 ENTRY(_stext)
/linux-master/arch/s390/kernel/
H A Dos_info.c86 os_info_entry_add_val(OS_INFO_IMAGE_START, (unsigned long)_stext);
88 os_info_entry_add_val(OS_INFO_IMAGE_PHYS, __pa_symbol(_stext));
H A Dvmlinux.lds.S44 _stext = .; /* Start of text section */ define
209 QUAD(__bss_start - _stext) /* image_size */
/linux-master/arch/csky/kernel/
H A Dvmlinux.lds.S31 _stext = .; define
/linux-master/arch/um/kernel/
H A Duml.lds.S35 _stext = .; define
/linux-master/arch/arm/kernel/
H A Dvmlinux.lds.S63 _stext = .; /* Text and read-only data */ define
/linux-master/arch/riscv/kernel/
H A Dvmlinux-xip.lds.S41 _stext = .; define
/linux-master/arch/arc/kernel/
H A Dvmlinux.lds.S85 _stext = .; define
/linux-master/kernel/
H A Dprofile.c107 prof_len = (_etext - _stext) >> prof_shift;
222 pc = min((pc - (unsigned long)_stext) >> prof_shift, prof_len - 1);
320 pc = ((unsigned long)__pc - (unsigned long)_stext) >> prof_shift;
/linux-master/arch/powerpc/mm/nohash/
H A Dkaslr_booke.c156 if (regions_overlap(start, end, __pa(_stext), __pa(_end)))
360 kernel_sz = (unsigned long)_end - (unsigned long)_stext;
380 memcpy((void *)kernstart_virt_addr, (void *)_stext, kernel_sz);

Completed in 332 milliseconds

1234