@@ -989,9 +989,10 @@ function lift_keyvalue_get!(compact::IncrementalCompact, idx::Int, stmt::Expr,
989
989
lifted_leaves === nothing && return
990
990
991
991
result_t = Union{}
992
+ ⊔ = join (𝕃ₒ)
992
993
for v in values (lifted_leaves)
993
994
v === nothing && return
994
- result_t = tmerge (𝕃ₒ, result_t, argextype (v. val, compact) )
995
+ result_t = result_t ⊔ argextype (v. val, compact)
995
996
end
996
997
997
998
(lifted_val, nest) = perform_lifting! (compact,
@@ -1001,8 +1002,12 @@ function lift_keyvalue_get!(compact::IncrementalCompact, idx::Int, stmt::Expr,
1001
1002
compact[idx] = lifted_val === nothing ? nothing : Expr (:call , GlobalRef (Core, :tuple ), lifted_val. val)
1002
1003
finish_phi_nest! (compact, nest)
1003
1004
if lifted_val != = nothing
1004
- if ! ⊑ (𝕃ₒ, compact[SSAValue (idx)][:type ], tuple_tfunc (𝕃ₒ, Any[result_t]))
1005
- add_flag! (compact[SSAValue (idx)], IR_FLAG_REFINED)
1005
+ stmttype = tuple_tfunc (𝕃ₒ, Any[result_t])
1006
+ inst = compact[SSAValue (idx)]
1007
+ ⋤ = strictneqpartialorder (𝕃ₒ)
1008
+ if stmttype ⋤ inst[:type ]
1009
+ inst[:type ] = stmttype
1010
+ add_flag! (inst, IR_FLAG_REFINED)
1006
1011
end
1007
1012
end
1008
1013
@@ -1440,19 +1445,23 @@ function sroa_pass!(ir::IRCode, inlining::Union{Nothing,InliningState}=nothing)
1440
1445
lifted_leaves, any_undef = lifted_result
1441
1446
1442
1447
result_t = Union{}
1448
+ ⊔ = join (𝕃ₒ)
1443
1449
for v in values (lifted_leaves)
1444
1450
v === nothing && continue
1445
- result_t = tmerge (𝕃ₒ, result_t, argextype (v. val, compact) )
1451
+ result_t = result_t ⊔ argextype (v. val, compact)
1446
1452
end
1447
1453
1448
1454
(lifted_val, nest) = perform_lifting! (compact,
1449
1455
visited_philikes, field, result_t, lifted_leaves, val, lazydomtree)
1450
1456
1451
1457
should_delete_node = false
1452
- line = compact[SSAValue (idx)][:line ]
1453
- if lifted_val != = nothing && ! ⊑ (𝕃ₒ, compact[SSAValue (idx)][:type ], result_t)
1458
+ inst = compact[SSAValue (idx)]
1459
+ line = inst[:line ]
1460
+ ⋤ = strictneqpartialorder (𝕃ₒ)
1461
+ if lifted_val != = nothing && result_t ⋤ inst[:type ]
1454
1462
compact[idx] = lifted_val === nothing ? nothing : lifted_val. val
1455
- add_flag! (compact[SSAValue (idx)], IR_FLAG_REFINED)
1463
+ inst[:type ] = result_t
1464
+ add_flag! (inst, IR_FLAG_REFINED)
1456
1465
elseif lifted_val === nothing || isa (lifted_val. val, AnySSAValue)
1457
1466
# Save some work in a later compaction, by inserting this into the renamer now,
1458
1467
# but only do this if we didn't set the REFINED flag, to save work for irinterp
@@ -1855,9 +1864,15 @@ function sroa_mutables!(ir::IRCode, defuses::IdDict{Int,Tuple{SPCSet,SSADefUse}}
1855
1864
for use in du. uses
1856
1865
if use. kind === :getfield
1857
1866
inst = ir[SSAValue (use. idx)]
1858
- inst[ :stmt ] = compute_value_for_use (ir, domtree, allblocks,
1867
+ newvalue = compute_value_for_use (ir, domtree, allblocks,
1859
1868
du, phinodes, fidx, use. idx)
1860
- add_flag! (inst, IR_FLAG_REFINED)
1869
+ inst[:stmt ] = newvalue
1870
+ newvaluetyp = argextype (newvalue, ir)
1871
+ ⋤ = strictneqpartialorder (𝕃ₒ)
1872
+ if newvaluetyp ⋤ inst[:type ]
1873
+ inst[:type ] = newvaluetyp
1874
+ add_flag! (inst, IR_FLAG_REFINED)
1875
+ end
1861
1876
elseif use. kind === :isdefined
1862
1877
continue # already rewritten if possible
1863
1878
elseif use. kind === :nopreserve
@@ -1878,11 +1893,12 @@ function sroa_mutables!(ir::IRCode, defuses::IdDict{Int,Tuple{SPCSet,SSADefUse}}
1878
1893
for b in phiblocks
1879
1894
n = ir[phinodes[b]][:stmt ]:: PhiNode
1880
1895
result_t = Bottom
1896
+ ⊔ = join (𝕃ₒ)
1881
1897
for p in ir. cfg. blocks[b]. preds
1882
1898
push! (n. edges, p)
1883
1899
v = compute_value_for_block (ir, domtree, allblocks, du, phinodes, fidx, p)
1884
1900
push! (n. values, v)
1885
- result_t = tmerge (𝕃ₒ, result_t, argextype (v, ir) )
1901
+ result_t = result_t ⊔ argextype (v, ir)
1886
1902
end
1887
1903
ir[phinodes[b]][:type ] = result_t
1888
1904
end
0 commit comments