mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
VarAction2: Handle case where expensive vars are only conditionally read
Within a JZ_LV and in prior DSGAF_SKIP_ON_ZERO op
This commit is contained in:
parent
9a4c31b0da
commit
7af568f0f0
@ -7336,12 +7336,17 @@ static bool OptimiseVarAction2DeterministicSpriteGroupExpensiveVarsInner(Determi
|
|||||||
uint32 and_mask = 0;
|
uint32 and_mask = 0;
|
||||||
uint condition_depth = 0;
|
uint condition_depth = 0;
|
||||||
bool seen_first = false;
|
bool seen_first = false;
|
||||||
|
int last_unused_jump = -1;
|
||||||
for (int j = end; j >= start; j--) {
|
for (int j = end; j >= start; j--) {
|
||||||
DeterministicSpriteGroupAdjust &adjust = group->adjusts[j];
|
DeterministicSpriteGroupAdjust &adjust = group->adjusts[j];
|
||||||
if (seen_first && IsEvalAdjustJumpOperation(adjust.operation) && condition_depth > 0) {
|
if (seen_first && IsEvalAdjustJumpOperation(adjust.operation)) {
|
||||||
/* Do not insert the STO_NC inside a conditional block when it is also needed outside the block */
|
if (condition_depth > 0) {
|
||||||
condition_depth--;
|
/* Do not insert the STO_NC inside a conditional block when it is also needed outside the block */
|
||||||
insert_pos = j;
|
condition_depth--;
|
||||||
|
insert_pos = j;
|
||||||
|
} else {
|
||||||
|
last_unused_jump = j;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (seen_first && adjust.adjust_flags & DSGAF_END_BLOCK) condition_depth += adjust.jump;
|
if (seen_first && adjust.adjust_flags & DSGAF_END_BLOCK) condition_depth += adjust.jump;
|
||||||
if (adjust.variable == target_var && adjust.parameter == target_param) {
|
if (adjust.variable == target_var && adjust.parameter == target_param) {
|
||||||
@ -7360,6 +7365,16 @@ static bool OptimiseVarAction2DeterministicSpriteGroupExpensiveVarsInner(Determi
|
|||||||
load.parameter = target_param;
|
load.parameter = target_param;
|
||||||
load.and_mask = and_mask;
|
load.and_mask = and_mask;
|
||||||
load.divmod_val = bit;
|
load.divmod_val = bit;
|
||||||
|
if (group->adjusts[insert_pos].adjust_flags & DSGAF_SKIP_ON_ZERO) {
|
||||||
|
for (int j = insert_pos + 1; j <= end; j++) {
|
||||||
|
if (group->adjusts[j].adjust_flags & DSGAF_SKIP_ON_ZERO) continue;
|
||||||
|
if (group->adjusts[j].operation == DSGA_OP_JZ_LV && last_unused_jump == j) {
|
||||||
|
/* The variable is never actually read if last_value is 0 at this point */
|
||||||
|
load.adjust_flags |= DSGAF_SKIP_ON_ZERO;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
group->adjusts.insert(group->adjusts.begin() + insert_pos, load);
|
group->adjusts.insert(group->adjusts.begin() + insert_pos, load);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user