diff src/share/vm/graal/graalCodeInstaller.cpp @ 8589:ec06c7e67698

renamed MonitorValue to HotSpotMonitorValue and moved it to com.oracle.graal.hotspot project
author Doug Simon <doug.simon@oracle.com>
date Fri, 29 Mar 2013 14:19:04 +0100
parents 8a526d8b4604
children 707b20dd9512 a8fea2979e63
line wrap: on
line diff
--- a/src/share/vm/graal/graalCodeInstaller.cpp	Fri Mar 29 12:54:56 2013 +0100
+++ b/src/share/vm/graal/graalCodeInstaller.cpp	Fri Mar 29 14:19:04 2013 +0100
@@ -263,19 +263,19 @@
 }
 
 static MonitorValue* get_monitor_value(oop value, int total_frame_size, GrowableArray<ScopeValue*>* objects, OopRecorder* oop_recorder) {
-  guarantee(value->is_a(code_MonitorValue::klass()), "Monitors must be of type MonitorValue");
+  guarantee(value->is_a(HotSpotMonitorValue::klass()), "Monitors must be of type MonitorValue");
 
   ScopeValue* second = NULL;
-  ScopeValue* owner_value = get_hotspot_value(code_MonitorValue::owner(value), total_frame_size, objects, second, oop_recorder);
+  ScopeValue* owner_value = get_hotspot_value(HotSpotMonitorValue::owner(value), total_frame_size, objects, second, oop_recorder);
   assert(second == NULL, "monitor cannot occupy two stack slots");
 
-  ScopeValue* lock_data_value = get_hotspot_value(code_MonitorValue::lockData(value), total_frame_size, objects, second, oop_recorder);
+  ScopeValue* lock_data_value = get_hotspot_value(HotSpotMonitorValue::slot(value), total_frame_size, objects, second, oop_recorder);
   assert(second == lock_data_value, "monitor is LONG value that occupies two stack slots");
   assert(lock_data_value->is_location(), "invalid monitor location");
   Location lock_data_loc = ((LocationValue*)lock_data_value)->location();
 
   bool eliminated = false;
-  if (code_MonitorValue::eliminated(value)) {
+  if (HotSpotMonitorValue::eliminated(value)) {
     eliminated = true;
   }