ladybird/Userland/Libraries/LibX86
Lenny Maiorani f912a48315 Userland: Change static const variables to static constexpr
`static const` variables can be computed and initialized at run-time
during initialization or the first time a function is called. Change
them to `static constexpr` to ensure they are computed at
compile-time.

This allows some removal of `strlen` because the length of the
`StringView` can be used which is pre-computed at compile-time.
2022-03-18 19:58:57 +01:00
..
CMakeLists.txt
Disassembler.h
ELFSymbolProvider.h LibX86: Take load base address into consideration during disassembly 2021-10-25 12:14:26 +02:00
Instruction.cpp Everywhere: Fix spelling mistakes 2022-01-07 15:44:42 +01:00
Instruction.h Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
Interpreter.h LibX86: Add SSE support 2021-10-17 13:06:23 -07:00