summaryrefslogtreecommitdiffstats
path: root/docs/specs/MESA_window_pos.spec
diff options
context:
space:
mode:
authorConnor Abbott <[email protected]>2018-11-23 17:34:19 +0100
committerConnor Abbott <[email protected]>2018-12-05 17:57:40 +0100
commit29a1450e288c57727a5cfe22fa4463a53f9cc8bf (patch)
treeb04dfdcd888f0f6ee7d73422049135db818e08d0 /docs/specs/MESA_window_pos.spec
parent49ef89073337ad3c3aefd47592148e6bef0b5ae3 (diff)
nir/algebraic: Rewrite bit-size inference
Before this commit, there were two copies of the algorithm: one in C, that we would use to figure out what bit-size to give the replacement expression, and one in Python, that emulated the C one and tried to prove that the C algorithm would never fail to correctly assign bit-sizes. That seemed pretty fragile, and likely to fall over if we make any changes. Furthermore, the C code was really just recomputing more-or-less the same thing as the Python code every time. Instead, we can just store the results of the Python algorithm in the C datastructure, and consult it to compute the bitsize of each value, moving the "brains" entirely into Python. Since the Python algorithm no longer has to match C, it's also a lot easier to change it to something more closely approximating an actual type-inference algorithm. The algorithm used is based on Hindley-Milner, although deliberately weakened a little. It's a few more lines than the old one, judging by the diffstat, but I think it's easier to verify that it's correct while being as general as possible. We could split this up into two changes, first making the C code use the results of the Python code and then rewriting the Python algorithm, but since the old algorithm never tracked which variable each equivalence class, it would mean we'd have to add some non-trivial code which would then get thrown away. I think it's better to see the final state all at once, although I could also try splitting it up. v2: - Replace instances of "== None" and "!= None" with "is None" and "is not None". - Rename first_src to first_unsized_src - Only merge the destination with the first unsized source, since the sources have already been merged. - Add a comment explaining what nir_search_value::bit_size now means. v3: - Fix one last instance to use "is not" instead of != - Don't try to be so clever when choosing which error message to print based on whether we're in the search or replace expression. - Fix trailing whitespace. Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'docs/specs/MESA_window_pos.spec')
0 files changed, 0 insertions, 0 deletions