Skip to content

Commit 92c12d1

Browse files
dcpleungnashif
authored andcommitted
toolchain: add GEN_ABSOLUTE_SYM_KCONFIG()
This adds a new GEN_ABSOLUTE_SYM_KCONFIG() specifically for generating absolute symbols in assembly for kconfig values. This is needed as the existing GEN_ABSOLUTE_SYM() with constraints in extended assembly parses the "value" as signed 32-bit integers. An unsigned 32-bit integer with MSB set results in a negative number in the final binary. This also prevents integers larger than 32-bit. So this new macro simply puts the value inline within the assembly instrcution instead of having it as parameter. Fixes zephyrproject-rtos#31562 Signed-off-by: Daniel Leung <daniel.leung@intel.com>
1 parent 72191f3 commit 92c12d1

File tree

3 files changed

+49
-3
lines changed

3 files changed

+49
-3
lines changed

arch/x86/gen_mmu.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -457,8 +457,7 @@ def main():
457457
debug("building %s" % pclass.__name__)
458458

459459
vm_base = syms["CONFIG_KERNEL_VM_BASE"]
460-
# Work around #31562
461-
vm_size = syms["CONFIG_KERNEL_VM_SIZE"] & 0xFFFFFFFF
460+
vm_size = syms["CONFIG_KERNEL_VM_SIZE"]
462461

463462
if isdef("CONFIG_ARCH_MAPS_ALL_RAM"):
464463
image_base = syms["CONFIG_SRAM_BASE_ADDRESS"]

include/toolchain/gcc.h

+47
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,23 @@ do { \
396396

397397
#define GEN_ABS_SYM_END }
398398

399+
/*
400+
* Note that GEN_ABSOLUTE_SYM(), depending on the architecture
401+
* and toolchain, may restrict the range of values permitted
402+
* for assignment to the named symbol.
403+
*
404+
* For example, on x86, "value" is interpreated as signed
405+
* 32-bit integer. Passing in an unsigned 32-bit integer
406+
* with MSB set would result in a negative integer.
407+
* Moreover, GCC would error out if an integer larger
408+
* than 2^32-1 is passed as "value".
409+
*/
410+
411+
/*
412+
* GEN_ABSOLUTE_SYM_KCONFIG() is outputted by the build system
413+
* to generate named symbol/value pairs for kconfigs.
414+
*/
415+
399416
#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
400417

401418
/*
@@ -411,20 +428,35 @@ do { \
411428
",%B0" \
412429
"\n\t.type\t" #name ",%%object" : : "n"(~(value)))
413430

431+
#define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
432+
__asm__(".globl\t" #name \
433+
"\n\t.equ\t" #name "," #value \
434+
"\n\t.type\t" #name ",%object")
435+
414436
#elif defined(CONFIG_X86)
415437

416438
#define GEN_ABSOLUTE_SYM(name, value) \
417439
__asm__(".globl\t" #name "\n\t.equ\t" #name \
418440
",%c0" \
419441
"\n\t.type\t" #name ",@object" : : "n"(value))
420442

443+
#define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
444+
__asm__(".globl\t" #name \
445+
"\n\t.equ\t" #name "," #value \
446+
"\n\t.type\t" #name ",@object")
447+
421448
#elif defined(CONFIG_ARC) || defined(CONFIG_ARM64)
422449

423450
#define GEN_ABSOLUTE_SYM(name, value) \
424451
__asm__(".globl\t" #name "\n\t.equ\t" #name \
425452
",%c0" \
426453
"\n\t.type\t" #name ",@object" : : "n"(value))
427454

455+
#define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
456+
__asm__(".globl\t" #name \
457+
"\n\t.equ\t" #name "," #value \
458+
"\n\t.type\t" #name ",@object")
459+
428460
#elif defined(CONFIG_NIOS2) || defined(CONFIG_RISCV) || defined(CONFIG_XTENSA)
429461

430462
/* No special prefixes necessary for constants in this arch AFAICT */
@@ -433,18 +465,33 @@ do { \
433465
",%0" \
434466
"\n\t.type\t" #name ",%%object" : : "n"(value))
435467

468+
#define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
469+
__asm__(".globl\t" #name \
470+
"\n\t.equ\t" #name "," #value \
471+
"\n\t.type\t" #name ",%object")
472+
436473
#elif defined(CONFIG_ARCH_POSIX)
437474
#define GEN_ABSOLUTE_SYM(name, value) \
438475
__asm__(".globl\t" #name "\n\t.equ\t" #name \
439476
",%c0" \
440477
"\n\t.type\t" #name ",@object" : : "n"(value))
441478

479+
#define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
480+
__asm__(".globl\t" #name \
481+
"\n\t.equ\t" #name "," #value \
482+
"\n\t.type\t" #name ",@object")
442483

443484
#elif defined(CONFIG_SPARC)
444485
#define GEN_ABSOLUTE_SYM(name, value) \
445486
__asm__(".global\t" #name "\n\t.equ\t" #name \
446487
",%0" \
447488
"\n\t.type\t" #name ",#object" : : "n"(value))
489+
490+
#define GEN_ABSOLUTE_SYM_KCONFIG(name, value) \
491+
__asm__(".globl\t" #name \
492+
"\n\t.equ\t" #name "," #value \
493+
"\n\t.type\t" #name ",#object")
494+
448495
#else
449496
#error processor architecture not supported
450497
#endif

misc/generated/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ file(STRINGS
99
ENCODING "UTF-8"
1010
)
1111
foreach (CONFIG ${LIST_OF_CONFIGS})
12-
string(REGEX REPLACE "#define (CONFIG_[A-Z|_|0-9]*) (.*)" "GEN_ABSOLUTE_SYM(\\1, \\2)" CONFIG ${CONFIG})
12+
string(REGEX REPLACE "#define (CONFIG_[A-Z|_|0-9]*) (.*)" "GEN_ABSOLUTE_SYM_KCONFIG(\\1, \\2)" CONFIG ${CONFIG})
1313
string(REGEX REPLACE "\"(.*)\"" "1" CONFIG ${CONFIG})
1414
set(GEN_ABS_SYM_LIST "${GEN_ABS_SYM_LIST}${CONFIG};\n")
1515
endforeach()

0 commit comments

Comments
 (0)