Displaying 1 result from an estimated 1 matches for "vl00002".
Did you mean:
vl00001
2019 Aug 09
5
llvm-canon
...0000Calle(1, 2) -> vl00000(1, 2)
Folding regular instructions:
op00000Calle(op00001Calle(...), vl00000Calle(1, 2), ...) -> op00000(op00001, vl00000, ...)
Therefore naming and folding give us this kind of effect:
Folded (no changes): vl00001(1, 2) = ...
Folded (removed callee name): vl00002(6, 5) = call ...
Folded (kept only hash): op10001(vl00001, vl00002) = ...
Unfolded (output): op10002(op10001(vl00001(1, 2), vl00002Foo(6, 5)), vl00001(1, 2)) = ...
4. Other
We have been looking for various ways to canonicalize the names of function arguments. But because of their marginal imp...