hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/ciEnv.java
author kvn
Wed, 08 Jan 2014 10:25:50 -0800
changeset 22243 91944eab7b92
parent 22234 da823d78ad65
child 24476 912595db2e75
permissions -rw-r--r--
8028468: Add inlining information into ciReplay Summary: Allow dump and replay inlining for specified method during a program execution. Reviewed-by: roland, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     1
/*
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 17123
diff changeset
     2
 * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     4
 *
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     7
 * published by the Free Software Foundation.
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     8
 *
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    13
 * accompanied this code).
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    14
 *
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    18
 *
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    21
 * questions.
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    22
 *
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    23
 */
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    24
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    25
package sun.jvm.hotspot.ci;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    26
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    27
import java.io.PrintStream;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    28
import java.util.*;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    29
import sun.jvm.hotspot.debugger.*;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    30
import sun.jvm.hotspot.runtime.*;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    31
import sun.jvm.hotspot.oops.*;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    32
import sun.jvm.hotspot.opto.*;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    33
import sun.jvm.hotspot.compiler.CompileTask;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    34
import sun.jvm.hotspot.prims.JvmtiExport;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    35
import sun.jvm.hotspot.types.*;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    36
import sun.jvm.hotspot.utilities.GrowableArray;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    37
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    38
public class ciEnv extends VMObject {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    39
  static {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    40
    VM.registerVMInitializedObserver(new Observer() {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    41
        public void update(Observable o, Object data) {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    42
          initialize(VM.getVM().getTypeDataBase());
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    43
        }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    44
      });
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    45
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    46
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    47
  private static synchronized void initialize(TypeDataBase db) throws WrongTypeException {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    48
    Type type      = db.lookupType("ciEnv");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    49
    dependenciesField = type.getAddressField("_dependencies");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    50
    factoryField = type.getAddressField("_factory");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    51
    compilerDataField = type.getAddressField("_compiler_data");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    52
    taskField = type.getAddressField("_task");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    53
    systemDictionaryModificationCounterField = new CIntField(type.getCIntegerField("_system_dictionary_modification_counter"), 0);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    54
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    55
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    56
  private static AddressField dependenciesField;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    57
  private static AddressField factoryField;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    58
  private static AddressField compilerDataField;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    59
  private static AddressField taskField;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    60
  private static CIntField systemDictionaryModificationCounterField;
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    61
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    62
  public ciEnv(Address addr) {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    63
    super(addr);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    64
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    65
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    66
  public Compile compilerData() {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    67
    return new Compile(compilerDataField.getValue(this.getAddress()));
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    68
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    69
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    70
  public ciObjectFactory factory() {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    71
    return new ciObjectFactory(factoryField.getValue(this.getAddress()));
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    72
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    73
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    74
  public CompileTask task() {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    75
    return new CompileTask(taskField.getValue(this.getAddress()));
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
    76
  }
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    77
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    78
  public void dumpReplayData(PrintStream out) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    79
    out.println("JvmtiExport can_access_local_variables " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    80
                (JvmtiExport.canAccessLocalVariables() ? '1' : '0'));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    81
    out.println("JvmtiExport can_hotswap_or_post_breakpoint " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    82
                (JvmtiExport.canHotswapOrPostBreakpoint() ? '1' : '0'));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    83
    out.println("JvmtiExport can_post_on_exceptions " +
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    84
                (JvmtiExport.canPostOnExceptions() ? '1' : '0'));
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    85
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    86
    GrowableArray<ciMetadata> objects = factory().objects();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    87
    out.println("# " + objects.length() + " ciObject found");
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    88
    for (int i = 0; i < objects.length(); i++) {
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    89
      ciMetadata o = objects.at(i);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    90
      out.println("# ciMetadata" + i + " @ " + o);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    91
      o.dumpReplayData(out);
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    92
    }
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    93
    CompileTask task = task();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    94
    Method method = task.method();
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    95
    int entryBci = task.osrBci();
17123
a8e62eed2e3e 8011675: adding compilation level to replay data
iignatyev
parents: 14477
diff changeset
    96
    int compLevel = task.compLevel();
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
    97
    Klass holder = method.getMethodHolder();
22243
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
    98
    out.print("compile " + holder.getName().asString() + " " +
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
    99
              OopUtilities.escapeString(method.getName().asString()) + " " +
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   100
              method.getSignature().asString() + " " +
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   101
              entryBci + " " + compLevel);
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   102
    Compile compiler = compilerData();
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   103
    if (compiler != null) {
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   104
      // Dump inlining data.
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   105
      compiler.dumpInlineData(out);
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   106
    }
91944eab7b92 8028468: Add inlining information into ciReplay
kvn
parents: 22234
diff changeset
   107
    out.println();
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 10547
diff changeset
   108
  }
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents:
diff changeset
   109
}