|
|
|
|
|
by abainbridge
2321 days ago
|
|
I think the exception code _is_ loaded. It is only a theoretical possibility that loading it could be avoided. I just built the following code with g++ v7.4 (from MSYS64 on Windows): #include <math.h>
#include <stdexcept>
void exitWithMessageException() {
if (random() == 4321)
throw std::runtime_error("Halt! Who goes there?");
}
int main() {
exitWithMessageException();
return 1234;
}
The generated code mixed the exception handlers with the hot-path code. Here are the address ranges of relevant chunks: 100401080 - Hot path of exitWithMessageException
100401099
10040109a - Cold path of exitWithMessageException
10040113f
100401140 - Start of main
|
|
GCC 9 [1] instead moves the exception throwing branch into a cold clone of exitWithMessageException function. The behaviour seems to have changed on starting from GCC 8.x.
[1] https://godbolt.org/z/PKKZ8m