You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This pass is responsible for moving stackmap calls at the machine IR level
before register spill reloads inserted by the register allocator. Doing so
requires the reloaded registers tracked by stackmaps to be replaced with the
spill location on the stack. In rare cases it can happen that an implicit
register in the stackmap (which is not written into the stackmap record) is
being replaced with a spill location, which forces it to be written to the
stackmap. This can lead to bugs during deoptimisation (e.g. the number of LLVM
IR variables inside the stackmap call doesn't match the amount of locations
in the stackmap record). Omitting implicit registers during this pass, fixes
this problem.
0 commit comments