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

Remove support for unbound sequence layouts

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • None
    • repo-panama
    • tools

      Unbound sequence layouts seem to be a corner of the layout API. It is mostly used in code like this:

      VarHandle v = MemoryLayout.sequenceLayout(0, JAVA_INT).varHandle(sequenceElement());

      Where it looks more like boilerplate than an useful feature - e.g. it could be replaced with:

      VarHandle v = JAVA_INT.arrayElementVarHandle();

      Without loss of functionality. The other, dubious use case, is to model arrays with unspecified size in jextract - but, since in that case we end up generating a layout that has no size, jextract has to carefully avoid touching that layout too much.

      In short, all existing use cases of unbounded sequences could be replaced with sequence layouts whose element size is 0 (which is supported by the API).

            mcimadamore Maurizio Cimadamore
            mcimadamore Maurizio Cimadamore
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: