Increase ARMv7 and v8 code block count to the normal default of 16384, now that this no longer leads to a massive increase in memory usage.
This commit is contained in:
parent
8998024225
commit
ac886c420f
2 changed files with 6 additions and 6 deletions
|
|
@ -1,8 +1,8 @@
|
|||
#include "codegen_backend_arm_defs.h"
|
||||
|
||||
#define BLOCK_SIZE 0x1000
|
||||
#define BLOCK_MASK 0x0fff
|
||||
#define BLOCK_START 64
|
||||
#define BLOCK_SIZE 0x4000
|
||||
#define BLOCK_MASK 0x3fff
|
||||
#define BLOCK_START 0
|
||||
|
||||
#define HASH_SIZE 0x20000
|
||||
#define HASH_MASK 0x1ffff
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
#include "codegen_backend_arm64_defs.h"
|
||||
|
||||
#define BLOCK_SIZE 0x1000
|
||||
#define BLOCK_MASK 0x0fff
|
||||
#define BLOCK_START 64
|
||||
#define BLOCK_SIZE 0x4000
|
||||
#define BLOCK_MASK 0x3fff
|
||||
#define BLOCK_START 0
|
||||
|
||||
#define HASH_SIZE 0x20000
|
||||
#define HASH_MASK 0x1ffff
|
||||
|
|
|
|||
Loading…
Reference in a new issue