agent/src/share/classes/sun/jvm/hotspot/opto/PhaseCFG.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff agent/src/share/classes/sun/jvm/hotspot/opto/PhaseCFG.java

agent/src/share/classes/sun/jvm/hotspot/opto/PhaseCFG.java

Print this page
rev 8167 : 8077832: SA's dumpreplaydata, dumpcfg and buildreplayjars are broken
Summary: SA code out of sync with hotspot code
Reviewed-by:

*** 40,53 **** }); } private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { Type type = db.lookupType("PhaseCFG"); ! numBlocksField = new CIntField(type.getCIntegerField("_num_blocks"), 0); blocksField = type.getAddressField("_blocks"); bbsField = type.getAddressField("_node_to_block_mapping"); ! brootField = type.getAddressField("_broot"); } private static CIntField numBlocksField; private static AddressField blocksField; private static AddressField bbsField; --- 40,53 ---- }); } private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { Type type = db.lookupType("PhaseCFG"); ! numBlocksField = new CIntField(type.getCIntegerField("_number_of_blocks"), 0); blocksField = type.getAddressField("_blocks"); bbsField = type.getAddressField("_node_to_block_mapping"); ! brootField = type.getAddressField("_root_block"); } private static CIntField numBlocksField; private static AddressField blocksField; private static AddressField bbsField;
agent/src/share/classes/sun/jvm/hotspot/opto/PhaseCFG.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File