--- old/agent/src/share/classes/sun/jvm/hotspot/opto/PhaseCFG.java 2015-04-15 11:45:33.854113014 +0200 +++ new/agent/src/share/classes/sun/jvm/hotspot/opto/PhaseCFG.java 2015-04-15 11:45:33.718990422 +0200 @@ -42,10 +42,10 @@ private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { Type type = db.lookupType("PhaseCFG"); - numBlocksField = new CIntField(type.getCIntegerField("_num_blocks"), 0); + numBlocksField = new CIntField(type.getCIntegerField("_number_of_blocks"), 0); blocksField = type.getAddressField("_blocks"); bbsField = type.getAddressField("_node_to_block_mapping"); - brootField = type.getAddressField("_broot"); + brootField = type.getAddressField("_root_block"); } private static CIntField numBlocksField;