AK+LibX86: Generalize u128/256 to AK::UFixedBigInt

Doing these as custom classes might be faster, especially when writing
them in SSE, but this would cause a lot of Code duplication and due to
the nature of constexprs and the intelligence of the compiler they might
be using SSE/MMX either way
This commit is contained in:
Hendiadyoin1 2021-05-19 23:04:48 +02:00 committed by Ali Mohammad Pur
commit 5ffe23e4f3
Notes: sideshowbarker 2024-07-18 12:25:47 +09:00
11 changed files with 905 additions and 665 deletions

View file

@ -10,7 +10,7 @@
#include "ValueWithShadow.h"
#include <AK/TypeCasts.h>
#include <AK/Types.h>
#include <LibX86/Types.h>
#include <AK/UFixedBigInt.h>
namespace UserspaceEmulator {