ConstProp: Bandage fix for instcountci

Fixed offset x86 code doesn't quite solve the issue, so adjust this
heuristic just to get instcounci to stop flaking.

This code is going to heavily change soon anyway so +50 doesn't change
much.
This commit is contained in:
Ryan Houdek 2024-05-18 17:18:47 -07:00
parent ac1a096bae
commit b83cbcb33c
No known key found for this signature in database

View File

@ -287,7 +287,7 @@ private:
// If the range is unbounded then RA interference pressure seems to increase to the point
// that long blocks of constant usage can slow to a crawl.
// See https://github.com/FEX-Emu/FEX/issues/2688 for more information.
constexpr static uint32_t CONSTANT_POOL_RANGE_LIMIT = 200;
constexpr static uint32_t CONSTANT_POOL_RANGE_LIMIT = 500;
};
bool ConstProp::HandleConstantPools(IREmitter* IREmit, const IRListView& CurrentIR) {