Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

Why FreeRTOS defines heapSTRUCT_SIZE as a const variable rather than a macro?

Posted by realsil on April 13, 2015

I find headSTRUCTSIZE is defined as a const variable, but my compiler always optimizate it. I have check the disassemble file os heap5.o, and I found the code "puc -= heapSTRUCT_SIZE;" is translated into "SUBS r4,r4,#8" automatically.

Is there any difference between "define heapSTRUCT_SIZE as a const variable" and "define heapSTRUCT_SIZE as a macro"?

static const uint16t heapSTRUCTSIZE = ( ( sizeof ( BlockLinkt ) + ( portBYTEALIGNMENT - 1 ) ) & ~portBYTEALIGNMENTMASK );

void vPortFree( void *pv , RAMTYPE ramType) { uint8t *puc = ( uint8t * ) pv; BlockLinkt *pxLink;

 if( pv != NULL )
 {
            /* The memory being freed will have an BlockLink_t structure immediately
            before it. */
            puc -= heapSTRUCT_SIZE;

            /* This casting is to keep the compiler from issuing warnings. */
            pxLink = ( void * ) puc;

/* ignore some lines */ }

vPortFree PROC PUSH {r4-r6,lr} MOV r5,r1 MOV r4,r0 CMP r0,#0 BEQ |L1.720| SUBS r4,r4,#8


Why FreeRTOS defines heapSTRUCT_SIZE as a const variable rather than a macro?

Posted by davedoors on April 13, 2015

If you use a macro with low or no compiler optimization it will be calculated each time it is used. If you use a const then it is calculated when you compile the program.


Why FreeRTOS defines heapSTRUCT_SIZE as a const variable rather than a macro?

Posted by realsil on April 13, 2015

Dear Dave,

I think the fact is always the opposite. If we use a const and close the compiler's optimization, some variable reference this const may calculated everytime when program run.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner