# HG changeset patch # User Doug Simon # Date 1347517528 -7200 # Node ID 9fc86a7159d71cdead59998476b0fc1836134ae9 # Parent 12fb1809cedcfee7f0e064fa77e03906e02eddd4 made the name for stub call LIR ops clearer diff -r 12fb1809cedc -r 9fc86a7159d7 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewArrayStubCallOp.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewArrayStubCallOp.java Thu Sep 13 08:18:36 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewArrayStubCallOp.java Thu Sep 13 08:25:28 2012 +0200 @@ -37,7 +37,7 @@ * LIR instruction for calling HotSpot's {@code new_[object|type]_array} stub. This stub is declared in c1_Runtime1.hpp * and implemented in Runtime1::generate_code_for() which is located in c1_Runtime1_x86.cpp. */ -@Opcode("NEW_ARRAY") +@Opcode("NEW_ARRAY_STUB") public class AMD64NewArrayStubCallOp extends AMD64LIRInstruction { /** diff -r 12fb1809cedc -r 9fc86a7159d7 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewInstanceStubCallOp.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewInstanceStubCallOp.java Thu Sep 13 08:18:36 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewInstanceStubCallOp.java Thu Sep 13 08:25:28 2012 +0200 @@ -37,7 +37,7 @@ * LIR instruction for calling HotSpot's {@code new_instance} stub. This stub is declared in c1_Runtime1.hpp * and implemented in Runtime1::generate_code_for() which is located in c1_Runtime1_x86.cpp. */ -@Opcode("NEW_INSTANCE") +@Opcode("NEW_INSTANCE_STUB") public class AMD64NewInstanceStubCallOp extends AMD64LIRInstruction { /** diff -r 12fb1809cedc -r 9fc86a7159d7 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64VerifyOopStubCallOp.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64VerifyOopStubCallOp.java Thu Sep 13 08:18:36 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64VerifyOopStubCallOp.java Thu Sep 13 08:25:28 2012 +0200 @@ -36,7 +36,7 @@ /** * A call to HotSpot's object pointer verification stub. */ -@Opcode("VERIFY_OOP") +@Opcode("VERIFY_OOP_STUB") public class AMD64VerifyOopStubCallOp extends AMD64LIRInstruction { /**