changeset 10435:89c15a40ef35

Align foreign call descriptors
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Thu, 20 Jun 2013 17:30:39 +0200
parents 8b22524df53b
children 8c8285e345cc 8bb13e6ada94 fb95519008d6 e98e021d1e7e
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrierStubCall.java graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PreWriteBarrierStubCall.java
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrierStubCall.java	Thu Jun 20 16:10:14 2013 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrierStubCall.java	Thu Jun 20 17:30:39 2013 +0200
@@ -33,7 +33,7 @@
 public class G1PostWriteBarrierStubCall extends DeoptimizingStubCall implements LIRGenLowerable {
 
     @Input private ValueNode cardAddress;
-    public static final ForeignCallDescriptor G1WBPOSTCALL = new ForeignCallDescriptor("g1WBPostCall", void.class, Word.class);
+    public static final ForeignCallDescriptor G1WBPOSTCALL = new ForeignCallDescriptor("write_barrier_post", void.class, Word.class);
 
     public G1PostWriteBarrierStubCall(ValueNode cardAddress) {
         super(StampFactory.forVoid());
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PreWriteBarrierStubCall.java	Thu Jun 20 16:10:14 2013 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PreWriteBarrierStubCall.java	Thu Jun 20 17:30:39 2013 +0200
@@ -32,7 +32,7 @@
 public class G1PreWriteBarrierStubCall extends DeoptimizingStubCall implements LIRGenLowerable {
 
     @Input private ValueNode object;
-    public static final ForeignCallDescriptor G1WBPRECALL = new ForeignCallDescriptor("g1WBPreCall", void.class, Object.class);
+    public static final ForeignCallDescriptor G1WBPRECALL = new ForeignCallDescriptor("write_barrier_pre", void.class, Object.class);
 
     public G1PreWriteBarrierStubCall(ValueNode object) {
         super(StampFactory.forVoid());