diff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotRuntimeCallTarget.java @ 9452:c1ba734c1ea0

more extensive checking of compiled stub invariants
author Doug Simon <doug.simon@oracle.com>
date Tue, 30 Apr 2013 19:11:46 +0200
parents 8d3a7fb9eb5f
children 85a836bcd796
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotRuntimeCallTarget.java	Tue Apr 30 19:11:14 2013 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotRuntimeCallTarget.java	Tue Apr 30 19:11:46 2013 +0200
@@ -111,6 +111,11 @@
         }
     }
 
+    public long getAddress() {
+        assert address != 0L : "address not yet finalized: " + this;
+        return address;
+    }
+
     @Override
     public boolean preservesRegisters() {
         assert address != 0;