# HG changeset patch # User Christos Kotselidis # Date 1371742239 -7200 # Node ID 89c15a40ef35f6c72b17ab7a76328e3e62866290 # Parent 8b22524df53bee5a80f62ba97751ac24179f19e9 Align foreign call descriptors diff -r 8b22524df53b -r 89c15a40ef35 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrierStubCall.java --- 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()); diff -r 8b22524df53b -r 89c15a40ef35 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PreWriteBarrierStubCall.java --- 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());