Home
last modified time | relevance | path

Searched refs:vdb_update_vars (Results 1 – 1 of 1) sorted by relevance

/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/compiler/src/
H A Dv3_codegen.erl2725 new_vars(Vs, I, Vdb) -> vdb_update_vars(Vs, Vdb, I).
2735 use_vars(Vs, I, Vdb) -> vdb_update_vars(Vs, Vdb, I).
2767 [Vd|vdb_update_vars(Vs, Vdb, I)];
2768 vdb_update_vars([V|Vs], [{V1,_,_}|_]=Vdb, I) when V < V1 -> function
2770 [{V,I,I}|vdb_update_vars(Vs, Vdb, I)];
2771 vdb_update_vars([V|Vs], [{_,F,L}=Vd|Vdb], I) -> function
2774 I > L -> [{V,F,I}|vdb_update_vars(Vs, Vdb, I)];
2775 true -> [Vd|vdb_update_vars(Vs, Vdb, I)]
2777 vdb_update_vars([V|Vs], [], I) -> function
2779 [{V,I,I}|vdb_update_vars(Vs, [], I)];
[all …]