test/hotspot/jtreg/testlibrary/jvmti/TransformUtil.java
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 47216 71c04702a3d5
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41182
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     1
/*
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     4
 *
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     7
 * published by the Free Software Foundation.
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     8
 *
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    13
 * accompanied this code).
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    14
 *
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    18
 *
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    21
 * questions.
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    22
 */
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    23
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    24
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    25
public class TransformUtil {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    26
    public static final String BeforePattern = "this-should-be-transformed";
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    27
    public static final String AfterPattern  = "this-has-been--transformed";
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    28
    public static final String ParentCheckPattern = "parent-transform-check: ";
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    29
    public static final String ChildCheckPattern = "child-transform-check: ";
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    30
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    31
    /**
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    32
     * @return the number of occurrences of the <code>from</code> string that
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    33
     * have been replaced.
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    34
     */
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    35
    public static int replace(byte buff[], String from, String to) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    36
        if (to.length() != from.length()) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    37
            throw new RuntimeException("bad strings");
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    38
        }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    39
        byte f[] = asciibytes(from);
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    40
        byte t[] = asciibytes(to);
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    41
        byte f0 = f[0];
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    42
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    43
        int numReplaced = 0;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    44
        int max = buff.length - f.length;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    45
        for (int i = 0; i < max; ) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    46
            if (buff[i] == f0 && replace(buff, f, t, i)) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    47
                i += f.length;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    48
                numReplaced++;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    49
            } else {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    50
                i++;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    51
            }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    52
        }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    53
        return numReplaced;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    54
    }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    55
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    56
    public static boolean replace(byte buff[], byte f[], byte t[], int i) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    57
        for (int x = 0; x < f.length; x++) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    58
            if (buff[x+i] != f[x]) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    59
                return false;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    60
            }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    61
        }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    62
        for (int x = 0; x < f.length; x++) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    63
            buff[x+i] = t[x];
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    64
        }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    65
        return true;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    66
    }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    67
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    68
    static byte[] asciibytes(String s) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    69
        byte b[] = new byte[s.length()];
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    70
        for (int i = 0; i < b.length; i++) {
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    71
            b[i] = (byte)s.charAt(i);
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    72
        }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    73
        return b;
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    74
    }
dbd59c1da636 8078644: CDS needs to support JVMTI CFLH
jiangli
parents:
diff changeset
    75
}