Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8293947

upcallLinker code for saving callee saved registers could be more precise

XMLWordPrintable

      When saving callee saved registers while doing an upcall, we have to follow the ABI, through ABIDescriptor, to determine which registers should be saved.

      However, on certain ABIs not the entire register needs to be saved. For instance, on aarch64 only the first 8 bytes of a FloatRegister are saved.

      This is currently hard-coded in the native code.

      Also, whether and how status register such as mxcsr and fpcsr should be be preserved is hard-coded.

      How these register should be saved should really be communicated through ABIDescriptor instead.

      Doing so also allows other ABIs to only save part of a callee-saved register, and possibly save space/time when doing an upcall.

            jvernee Jorn Vernee
            jvernee Jorn Vernee
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: