mirror of
https://github.com/captain-amygdala/pistorm.git
synced 2026-04-13 07:24:17 +00:00
optimise away an unnecessary subtract on the instruction fetch fast path
This commit is contained in:
@@ -1265,7 +1265,7 @@ uint m68ki_read_imm6_addr_slowpath(uint32_t pc, address_translation_cache *cache
|
||||
if(address >= read_addr[i] && address < read_upper[i]) {
|
||||
cache->lower = read_addr[i] + pc_address_diff;
|
||||
cache->upper = read_upper[i] + pc_address_diff;
|
||||
cache->data = read_data[i];
|
||||
cache->offset = read_data[i] - cache->lower;
|
||||
REG_PC += 2;
|
||||
return be16toh(((unsigned short *)(read_data[i] + (address - read_addr[i])))[0]);
|
||||
}
|
||||
|
||||
@@ -1079,7 +1079,7 @@ typedef struct
|
||||
{
|
||||
unsigned int lower;
|
||||
unsigned int upper;
|
||||
unsigned char *data;
|
||||
unsigned char *offset;
|
||||
} address_translation_cache;
|
||||
|
||||
|
||||
@@ -1173,7 +1173,7 @@ static inline uint m68ki_read_imm_16(void)
|
||||
if(pc >= cache->lower && pc < cache->upper)
|
||||
{
|
||||
REG_PC += 2;
|
||||
return be16toh(((unsigned short *)(cache->data + (pc - cache->lower)))[0]);
|
||||
return be16toh(((unsigned short *)(cache->offset + pc))[0]);
|
||||
}
|
||||
return m68ki_read_imm6_addr_slowpath(pc, cache);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user