Skip to content

Commit 3e4d7c7

Browse files
authored
Allow non-aligned PSTR() (#7275)
* Allow non-aligned PSTR() * Add PSTR4() macro to first 4-bytes aligned PSTR
1 parent 1b20cd6 commit 3e4d7c7

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

cores/esp8266/umm_malloc/umm_local.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ void ICACHE_FLASH_ATTR print_stats(int force);
4848

4949

5050
int ICACHE_FLASH_ATTR umm_info_safe_printf_P(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
51-
#define UMM_INFO_PRINTF(fmt, ...) umm_info_safe_printf_P(PSTR(fmt), ##__VA_ARGS__)
51+
#define UMM_INFO_PRINTF(fmt, ...) umm_info_safe_printf_P(PSTR4(fmt), ##__VA_ARGS__)
52+
// use PSTR4() instead of PSTR() to ensure 4-bytes alignment in Flash, whatever the default alignment of PSTR_ALIGN
5253

5354

5455
#endif

tools/sdk/libc/xtensa-lx106-elf/include/sys/pgmspace.h

+18-4
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,26 @@ extern "C" {
3131
#define PGM_VOID_P const void *
3232
#endif
3333

34-
// PSTR() macro modified to start on a 32-bit boundary. This adds on average
35-
// 1.5 bytes/string, but in return memcpy_P and strcpy_P will work 4~8x faster
36-
#ifndef PSTR
34+
#ifndef PSTR_ALIGN
35+
// PSTR() macro starts by default on a 32-bit boundary. This adds on average
36+
// 1.5 bytes/string, but in return memcpy_P and strcpy_P will work 4~8x faster
37+
// Allow users to override the alignment with PSTR_ALIGN
38+
#define PSTR_ALIGN 4
39+
#endif
40+
#ifndef PSTRN
41+
// Multi-alignment variant of PSTR, n controls the alignment and should typically be 1 or 4
3742
// Adapted from AVR-specific code at https://forum.arduino.cc/index.php?topic=194603.0
3843
// Uses C attribute section instead of ASM block to allow for C language string concatenation ("x" "y" === "xy")
39-
#define PSTR(s) (__extension__({static const char __c[] __attribute__((__aligned__(4))) __attribute__((section( "\".irom0.pstr." __FILE__ "." __STRINGIZE(__LINE__) "." __STRINGIZE(__COUNTER__) "\", \"aSM\", @progbits, 1 #"))) = (s); &__c[0];}))
44+
#define PSTRN(s,n) (__extension__({static const char __c[] __attribute__((__aligned__(n))) __attribute__((section( "\".irom0.pstr." __FILE__ "." __STRINGIZE(__LINE__) "." __STRINGIZE(__COUNTER__) "\", \"aSM\", @progbits, 1 #"))) = (s); &__c[0];}))
45+
#endif
46+
#ifndef PSTR
47+
// PSTR() uses the default alignment defined by PSTR_ALIGN
48+
#define PSTR(s) PSTRN(s,PSTR_ALIGN)
49+
#endif
50+
#ifndef PSTR4
51+
// PSTR4() enforces 4-bytes alignment whatever the value of PSTR_ALIGN
52+
// as required by functions like ets_strlen() or ets_memcpy()
53+
#define PSTR4(s) PSTRN(s,4)
4054
#endif
4155

4256
// Flash memory must be read using 32 bit aligned addresses else a processor

0 commit comments

Comments
 (0)