|
| 1 | +/* |
| 2 | + * Linker wrap stubs for std::__throw_* functions. |
| 3 | + * |
| 4 | + * ESP-IDF compiles with -fno-exceptions, so C++ exceptions always abort. |
| 5 | + * However, ESP-IDF only wraps low-level functions (__cxa_throw, etc.), |
| 6 | + * not the std::__throw_* functions that construct exception objects first. |
| 7 | + * This pulls in ~2KB of dead exception class code that can never run. |
| 8 | + * |
| 9 | + * These stubs abort immediately with a descriptive message, allowing |
| 10 | + * the linker to dead-code eliminate the exception class infrastructure. |
| 11 | + * |
| 12 | + * Wrapped functions and their callers: |
| 13 | + * - std::__throw_length_error: std::string::reserve, std::vector::reserve |
| 14 | + * - std::__throw_logic_error: std::promise, std::packaged_task |
| 15 | + * - std::__throw_out_of_range: std::string::at, std::vector::at |
| 16 | + * - std::__throw_out_of_range_fmt: std::bitset::to_ulong |
| 17 | + * - std::__throw_bad_alloc: operator new |
| 18 | + * - std::__throw_bad_function_call: std::function::operator() |
| 19 | + * |
| 20 | + * Source: https://github.com/esphome/esphome/blob/dev/esphome/components/esp32/throw_stubs.cpp |
| 21 | + */ |
| 22 | + |
| 23 | +#include "esp_system.h" |
| 24 | + |
| 25 | +// Linker wraps for std::__throw_* - must be extern "C" at global scope. |
| 26 | +// Names must be __wrap_ + mangled name for the linker's --wrap option. |
| 27 | + |
| 28 | +// NOLINTBEGIN(bugprone-reserved-identifier,cert-dcl37-c,cert-dcl51-cpp,readability-identifier-naming) |
| 29 | +extern "C" { |
| 30 | + |
| 31 | +// std::__throw_length_error(char const*) - called when container size exceeds max_size() |
| 32 | +void __wrap__ZSt20__throw_length_errorPKc(const char *) { esp_system_abort("std::length_error"); } |
| 33 | + |
| 34 | +// std::__throw_logic_error(char const*) - called for logic errors (e.g., promise already satisfied) |
| 35 | +void __wrap__ZSt19__throw_logic_errorPKc(const char *) { esp_system_abort("std::logic_error"); } |
| 36 | + |
| 37 | +// std::__throw_out_of_range(char const*) - called by at() when index is out of bounds |
| 38 | +void __wrap__ZSt20__throw_out_of_rangePKc(const char *) { esp_system_abort("std::out_of_range"); } |
| 39 | + |
| 40 | +// std::__throw_out_of_range_fmt(char const*, ...) - variadic form called by container at() with formatted messages |
| 41 | +void __wrap__ZSt24__throw_out_of_range_fmtPKcz(const char *, ...) { esp_system_abort("std::out_of_range"); } |
| 42 | + |
| 43 | +// std::__throw_bad_alloc() - called when operator new fails |
| 44 | +void __wrap__ZSt17__throw_bad_allocv() { esp_system_abort("std::bad_alloc"); } |
| 45 | + |
| 46 | +// std::__throw_bad_function_call() - called when invoking empty std::function |
| 47 | +void __wrap__ZSt25__throw_bad_function_callv() { esp_system_abort("std::bad_function_call"); } |
| 48 | + |
| 49 | +} // extern "C" |
| 50 | +// NOLINTEND(bugprone-reserved-identifier,cert-dcl37-c,cert-dcl51-cpp,readability-identifier-naming) |
0 commit comments