Increase ARM64 work registers from 5 to 10.
This commit is contained in:
parent
f27b7f757a
commit
5ca2533f3c
2 changed files with 7 additions and 2 deletions
|
|
@ -30,7 +30,12 @@ int codegen_host_reg_list[CODEGEN_HOST_REGS] =
|
|||
REG_X20,
|
||||
REG_X21,
|
||||
REG_X22,
|
||||
REG_X23
|
||||
REG_X23,
|
||||
REG_X24,
|
||||
REG_X25,
|
||||
REG_X26,
|
||||
REG_X27,
|
||||
REG_X28
|
||||
};
|
||||
|
||||
static void build_load_routine(codeblock_t *block, int size)
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
#define REG_TEMP REG_X7
|
||||
|
||||
#define CODEGEN_HOST_REGS 5
|
||||
#define CODEGEN_HOST_REGS 10
|
||||
|
||||
extern void *codegen_mem_load_byte;
|
||||
extern void *codegen_mem_load_word;
|
||||
|
|
|
|||
Loading…
Reference in a new issue