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:
SarahW 2019-01-13 12:58:07 +00:00
commit ac886c420f
2 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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