changeset 6374:9fc86a7159d7

made the name for stub call LIR ops clearer
author Doug Simon <doug.simon@oracle.com>
date Thu, 13 Sep 2012 08:25:28 +0200
parents 12fb1809cedc
children 1d7c73b5d787
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewArrayStubCallOp.java graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64NewInstanceStubCallOp.java graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/amd64/AMD64VerifyOopStubCallOp.java
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 {
 
     /**
--- 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 {
 
     /**
--- 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 {
 
     /**