changeset 9823:9e6b6d5d6465

rename: getKilledLocationIdentities -> getKilledLocations
author Doug Simon <doug.simon@oracle.com>
date Sun, 26 May 2013 13:09:27 +0200
parents e210293dca77
children 6fa4b4933892
files graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/MetaAccessProvider.java graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotRuntime.java graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/ForeignCallNode.java
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/MetaAccessProvider.java	Sat May 25 16:31:05 2013 -0700
+++ b/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/MetaAccessProvider.java	Sun May 26 13:09:27 2013 +0200
@@ -106,7 +106,7 @@
      * {@link LocationIdentity#ANY_LOCATION} denotes that the call kills all memory locations.
      * Returning any empty array denotes that the call does not kill any memory locations.
      */
-    LocationIdentity[] getKilledLocationIdentities(ForeignCallDescriptor descriptor);
+    LocationIdentity[] getKilledLocations(ForeignCallDescriptor descriptor);
 
     /**
      * Determines if deoptimization can occur during a given foreign call.
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotRuntime.java	Sat May 25 16:31:05 2013 -0700
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotRuntime.java	Sun May 26 13:09:27 2013 +0200
@@ -1002,7 +1002,7 @@
         return !foreignCalls.get(descriptor).isLeaf();
     }
 
-    public LocationIdentity[] getKilledLocationIdentities(ForeignCallDescriptor descriptor) {
+    public LocationIdentity[] getKilledLocations(ForeignCallDescriptor descriptor) {
         return foreignCalls.get(descriptor).getKilledLocations();
     }
 
--- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/ForeignCallNode.java	Sat May 25 16:31:05 2013 -0700
+++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/ForeignCallNode.java	Sun May 26 13:09:27 2013 +0200
@@ -66,7 +66,7 @@
 
     @Override
     public LocationIdentity[] getLocationIdentities() {
-        return runtime.getKilledLocationIdentities(descriptor);
+        return runtime.getKilledLocations(descriptor);
     }
 
     protected Value[] operands(LIRGeneratorTool gen) {