forked from len0rd/rockbox
Lower IRAM footprint on ARM.
Move a few functions to .text that probably don't see a huge benefit from being .icode. Will scrutinize later. Change-Id: I7bdffc326076c5cd7e6a1c57d25d31e653920327
This commit is contained in:
parent
4b256de1ec
commit
230f6f4326
1 changed files with 4 additions and 4 deletions
|
|
@ -24,7 +24,7 @@
|
||||||
* void channel_mode_proc_mono(struct dsp_proc_entry *this,
|
* void channel_mode_proc_mono(struct dsp_proc_entry *this,
|
||||||
* struct dsp_buffer **buf_p)
|
* struct dsp_buffer **buf_p)
|
||||||
*/
|
*/
|
||||||
.section .icode
|
.section .text
|
||||||
.global channel_mode_proc_mono
|
.global channel_mode_proc_mono
|
||||||
.type channel_mode_proc_mono, %function
|
.type channel_mode_proc_mono, %function
|
||||||
channel_mode_proc_mono:
|
channel_mode_proc_mono:
|
||||||
|
|
@ -66,7 +66,7 @@ channel_mode_proc_mono:
|
||||||
* void channel_mode_proc_custom(struct dsp_proc_entry *this,
|
* void channel_mode_proc_custom(struct dsp_proc_entry *this,
|
||||||
* struct dsp_buffer **buf_p)
|
* struct dsp_buffer **buf_p)
|
||||||
*/
|
*/
|
||||||
.section .icode
|
.section .text
|
||||||
.global channel_mode_proc_custom
|
.global channel_mode_proc_custom
|
||||||
.type channel_mode_proc_custom, %function
|
.type channel_mode_proc_custom, %function
|
||||||
channel_mode_proc_custom:
|
channel_mode_proc_custom:
|
||||||
|
|
@ -141,7 +141,7 @@ channel_mode_proc_custom:
|
||||||
* void channel_mode_proc_karaoke(struct dsp_proc_entry *this,
|
* void channel_mode_proc_karaoke(struct dsp_proc_entry *this,
|
||||||
* struct dsp_buffer **buf_p)
|
* struct dsp_buffer **buf_p)
|
||||||
*/
|
*/
|
||||||
.section .icode
|
.section .text
|
||||||
.global channel_mode_proc_karaoke
|
.global channel_mode_proc_karaoke
|
||||||
.type channel_mode_proc_karaoke, %function
|
.type channel_mode_proc_karaoke, %function
|
||||||
channel_mode_proc_karaoke:
|
channel_mode_proc_karaoke:
|
||||||
|
|
@ -358,7 +358,7 @@ lin_resample_resample:
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* void pga_process(struct dsp_proc_entry *this, struct dsp_buffer **buf_p)
|
* void pga_process(struct dsp_proc_entry *this, struct dsp_buffer **buf_p)
|
||||||
*/
|
*/
|
||||||
.section .icode
|
.section .text
|
||||||
.global pga_process
|
.global pga_process
|
||||||
.type pga_process, %function
|
.type pga_process, %function
|
||||||
pga_process:
|
pga_process:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue