remove char[] allocation in new String(char[] buf) if buf does not escape

XMLWordPrintable

    • Type: Enhancement
    • Resolution: Won't Fix
    • Priority: P2
    • 10
    • Affects Version/s: hs19
    • Component/s: hotspot
    • sparc
    • solaris_10

      For example, the char[] allocation you want to make sure is removed is the copying happening in new String(char[]):

          public static String _printBase64Binary(byte[] input, int offset, int len) {
              char[] buf = new char[((len + 2) / 3) * 4];
              int ptr = _printBase64Binary(input, offset, len, buf, 0);
              assert ptr == buf.length;
              return new String(buf);
          }

            Assignee:
            Tobias Hartmann
            Reporter:
            Vladimir Kozlov
            Votes:
            1 Vote for this issue
            Watchers:
            6 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: