1 /*
   2  * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 #include "precompiled.hpp"
  25 #include "asm/register.hpp"
  26 #include "classfile/vmSymbols.hpp"
  27 #include "code/compiledIC.hpp"
  28 #include "code/vmreg.inline.hpp"
  29 #include "compiler/compileBroker.hpp"
  30 #include "compiler/disassembler.hpp"
  31 #include "jvmci/jvmciEnv.hpp"
  32 #include "jvmci/jvmciCompiler.hpp"
  33 #include "jvmci/jvmciCodeInstaller.hpp"
  34 #include "jvmci/jvmciJavaClasses.hpp"
  35 #include "jvmci/jvmciCompilerToVM.hpp"
  36 #include "jvmci/jvmciRuntime.hpp"
  37 #include "oops/oop.inline.hpp"
  38 #include "oops/objArrayOop.inline.hpp"
  39 #include "runtime/javaCalls.hpp"
  40 #include "runtime/safepointMechanism.inline.hpp"
  41 #include "utilities/align.hpp"
  42 
  43 // frequently used constants
  44 // Allocate them with new so they are never destroyed (otherwise, a
  45 // forced exit could destroy these objects while they are still in
  46 // use).
  47 ConstantOopWriteValue* CodeInstaller::_oop_null_scope_value = new (ResourceObj::C_HEAP, mtCompiler) ConstantOopWriteValue(NULL);
  48 ConstantIntValue*      CodeInstaller::_int_m1_scope_value = new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(-1);
  49 ConstantIntValue*      CodeInstaller::_int_0_scope_value =  new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(0);
  50 ConstantIntValue*      CodeInstaller::_int_1_scope_value =  new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(1);
  51 ConstantIntValue*      CodeInstaller::_int_2_scope_value =  new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(2);
  52 LocationValue*         CodeInstaller::_illegal_value = new (ResourceObj::C_HEAP, mtCompiler) LocationValue(Location());
  53 
  54 Method* getMethodFromHotSpotMethod(oop hotspot_method) {
  55   assert(hotspot_method != NULL && hotspot_method->is_a(HotSpotResolvedJavaMethodImpl::klass()), "sanity");
  56   return CompilerToVM::asMethod(hotspot_method);
  57 }
  58 
  59 VMReg getVMRegFromLocation(Handle location, int total_frame_size, TRAPS) {
  60   if (location.is_null()) {
  61     THROW_NULL(vmSymbols::java_lang_NullPointerException());
  62   }
  63 
  64   Handle reg(THREAD, code_Location::reg(location));
  65   jint offset = code_Location::offset(location);
  66 
  67   if (reg.not_null()) {
  68     // register
  69     jint number = code_Register::number(reg);
  70     VMReg vmReg = CodeInstaller::get_hotspot_reg(number, CHECK_NULL);
  71     if (offset % 4 == 0) {
  72       return vmReg->next(offset / 4);
  73     } else {
  74       JVMCI_ERROR_NULL("unaligned subregister offset %d in oop map", offset);
  75     }
  76   } else {
  77     // stack slot
  78     if (offset % 4 == 0) {
  79       VMReg vmReg = VMRegImpl::stack2reg(offset / 4);
  80       if (!OopMapValue::legal_vm_reg_name(vmReg)) {
  81         // This restriction only applies to VMRegs that are used in OopMap but
  82         // since that's the only use of VMRegs it's simplest to put this test
  83         // here.  This test should also be equivalent legal_vm_reg_name but JVMCI
  84         // clients can use max_oop_map_stack_stack_offset to detect this problem
  85         // directly.  The asserts just ensure that the tests are in agreement.
  86         assert(offset > CompilerToVM::Data::max_oop_map_stack_offset(), "illegal VMReg");
  87         JVMCI_ERROR_NULL("stack offset %d is too large to be encoded in OopMap (max %d)",
  88                          offset, CompilerToVM::Data::max_oop_map_stack_offset());
  89       }
  90       assert(OopMapValue::legal_vm_reg_name(vmReg), "illegal VMReg");
  91       return vmReg;
  92     } else {
  93       JVMCI_ERROR_NULL("unaligned stack offset %d in oop map", offset);
  94     }
  95   }
  96 }
  97 
  98 // creates a HotSpot oop map out of the byte arrays provided by DebugInfo
  99 OopMap* CodeInstaller::create_oop_map(Handle debug_info, TRAPS) {
 100   Handle reference_map(THREAD, DebugInfo::referenceMap(debug_info));
 101   if (reference_map.is_null()) {
 102     THROW_NULL(vmSymbols::java_lang_NullPointerException());
 103   }
 104   if (!reference_map->is_a(HotSpotReferenceMap::klass())) {
 105     JVMCI_ERROR_NULL("unknown reference map: %s", reference_map->klass()->signature_name());
 106   }
 107   if (HotSpotReferenceMap::maxRegisterSize(reference_map) > 16) {
 108     _has_wide_vector = true;
 109   }
 110   OopMap* map = new OopMap(_total_frame_size, _parameter_count);
 111   objArrayHandle objects(THREAD, HotSpotReferenceMap::objects(reference_map));
 112   objArrayHandle derivedBase(THREAD, HotSpotReferenceMap::derivedBase(reference_map));
 113   typeArrayHandle sizeInBytes(THREAD, HotSpotReferenceMap::sizeInBytes(reference_map));
 114   if (objects.is_null() || derivedBase.is_null() || sizeInBytes.is_null()) {
 115     THROW_NULL(vmSymbols::java_lang_NullPointerException());
 116   }
 117   if (objects->length() != derivedBase->length() || objects->length() != sizeInBytes->length()) {
 118     JVMCI_ERROR_NULL("arrays in reference map have different sizes: %d %d %d", objects->length(), derivedBase->length(), sizeInBytes->length());
 119   }
 120   for (int i = 0; i < objects->length(); i++) {
 121     Handle location(THREAD, objects->obj_at(i));
 122     Handle baseLocation(THREAD, derivedBase->obj_at(i));
 123     int bytes = sizeInBytes->int_at(i);
 124 
 125     VMReg vmReg = getVMRegFromLocation(location, _total_frame_size, CHECK_NULL);
 126     if (baseLocation.not_null()) {
 127       // derived oop
 128 #ifdef _LP64
 129       if (bytes == 8) {
 130 #else
 131       if (bytes == 4) {
 132 #endif
 133         VMReg baseReg = getVMRegFromLocation(baseLocation, _total_frame_size, CHECK_NULL);
 134         map->set_derived_oop(vmReg, baseReg);
 135       } else {
 136         JVMCI_ERROR_NULL("invalid derived oop size in ReferenceMap: %d", bytes);
 137       }
 138 #ifdef _LP64
 139     } else if (bytes == 8) {
 140       // wide oop
 141       map->set_oop(vmReg);
 142     } else if (bytes == 4) {
 143       // narrow oop
 144       map->set_narrowoop(vmReg);
 145 #else
 146     } else if (bytes == 4) {
 147       map->set_oop(vmReg);
 148 #endif
 149     } else {
 150       JVMCI_ERROR_NULL("invalid oop size in ReferenceMap: %d", bytes);
 151     }
 152   }
 153 
 154   Handle callee_save_info(THREAD, (oop) DebugInfo::calleeSaveInfo(debug_info));
 155   if (callee_save_info.not_null()) {
 156     objArrayHandle registers(THREAD, RegisterSaveLayout::registers(callee_save_info));
 157     typeArrayHandle slots(THREAD, RegisterSaveLayout::slots(callee_save_info));
 158     for (jint i = 0; i < slots->length(); i++) {
 159       Handle jvmci_reg (THREAD, registers->obj_at(i));
 160       jint jvmci_reg_number = code_Register::number(jvmci_reg);
 161       VMReg hotspot_reg = CodeInstaller::get_hotspot_reg(jvmci_reg_number, CHECK_NULL);
 162       // HotSpot stack slots are 4 bytes
 163       jint jvmci_slot = slots->int_at(i);
 164       jint hotspot_slot = jvmci_slot * VMRegImpl::slots_per_word;
 165       VMReg hotspot_slot_as_reg = VMRegImpl::stack2reg(hotspot_slot);
 166       map->set_callee_saved(hotspot_slot_as_reg, hotspot_reg);
 167 #ifdef _LP64
 168       // (copied from generate_oop_map() in c1_Runtime1_x86.cpp)
 169       VMReg hotspot_slot_hi_as_reg = VMRegImpl::stack2reg(hotspot_slot + 1);
 170       map->set_callee_saved(hotspot_slot_hi_as_reg, hotspot_reg->next());
 171 #endif
 172     }
 173   }
 174   return map;
 175 }
 176 
 177 AOTOopRecorder::AOTOopRecorder(Arena* arena, bool deduplicate) : OopRecorder(arena, deduplicate) {
 178   _meta_refs = new GrowableArray<jobject>();
 179 }
 180 
 181 int AOTOopRecorder::nr_meta_refs() const {
 182   return _meta_refs->length();
 183 }
 184 
 185 jobject AOTOopRecorder::meta_element(int pos) const {
 186   return _meta_refs->at(pos);
 187 }
 188 
 189 int AOTOopRecorder::find_index(Metadata* h) {
 190   JavaThread* THREAD = JavaThread::current();
 191   int oldCount = metadata_count();
 192   int index =  this->OopRecorder::find_index(h);
 193   int newCount = metadata_count();
 194 
 195   if (oldCount == newCount) {
 196     // found a match
 197     return index;
 198   }
 199 
 200   vmassert(index + 1 == newCount, "must be last");
 201 
 202   Klass* klass = NULL;
 203   oop result = NULL;
 204   if (h->is_klass()) {
 205     klass = (Klass*) h;
 206     result = CompilerToVM::get_jvmci_type(klass, CATCH);
 207   } else if (h->is_method()) {
 208     Method* method = (Method*) h;
 209     methodHandle mh(method);
 210     result = CompilerToVM::get_jvmci_method(method, CATCH);
 211   }
 212   jobject ref = JNIHandles::make_local(THREAD, result);
 213   record_meta_ref(ref, index);
 214 
 215   return index;
 216 }
 217 
 218 int AOTOopRecorder::find_index(jobject h) {
 219   if (h == NULL) {
 220     return 0;
 221   }
 222   oop javaMirror = JNIHandles::resolve(h);
 223   Klass* klass = java_lang_Class::as_Klass(javaMirror);
 224   return find_index(klass);
 225 }
 226 
 227 void AOTOopRecorder::record_meta_ref(jobject o, int index) {
 228   assert(index > 0, "must be 1..n");
 229   index -= 1; // reduce by one to convert to array index
 230 
 231   assert(index == _meta_refs->length(), "must be last");
 232   _meta_refs->append(o);
 233 }
 234 
 235 void* CodeInstaller::record_metadata_reference(CodeSection* section, address dest, Handle constant, TRAPS) {
 236   /*
 237    * This method needs to return a raw (untyped) pointer, since the value of a pointer to the base
 238    * class is in general not equal to the pointer of the subclass. When patching metaspace pointers,
 239    * the compiler expects a direct pointer to the subclass (Klass* or Method*), not a pointer to the
 240    * base class (Metadata* or MetaspaceObj*).
 241    */
 242   oop obj = HotSpotMetaspaceConstantImpl::metaspaceObject(constant);
 243   if (obj->is_a(HotSpotResolvedObjectTypeImpl::klass())) {
 244     Klass* klass = java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(obj));
 245     assert(!HotSpotMetaspaceConstantImpl::compressed(constant), "unexpected compressed klass pointer %s @ " INTPTR_FORMAT, klass->name()->as_C_string(), p2i(klass));
 246     int index = _oop_recorder->find_index(klass);
 247     section->relocate(dest, metadata_Relocation::spec(index));
 248     TRACE_jvmci_3("metadata[%d of %d] = %s", index, _oop_recorder->metadata_count(), klass->name()->as_C_string());
 249     return klass;
 250   } else if (obj->is_a(HotSpotResolvedJavaMethodImpl::klass())) {
 251     Method* method = (Method*) (address) HotSpotResolvedJavaMethodImpl::metaspaceMethod(obj);
 252     assert(!HotSpotMetaspaceConstantImpl::compressed(constant), "unexpected compressed method pointer %s @ " INTPTR_FORMAT, method->name()->as_C_string(), p2i(method));
 253     int index = _oop_recorder->find_index(method);
 254     section->relocate(dest, metadata_Relocation::spec(index));
 255     TRACE_jvmci_3("metadata[%d of %d] = %s", index, _oop_recorder->metadata_count(), method->name()->as_C_string());
 256     return method;
 257   } else {
 258     JVMCI_ERROR_NULL("unexpected metadata reference for constant of type %s", obj->klass()->signature_name());
 259   }
 260 }
 261 
 262 #ifdef _LP64
 263 narrowKlass CodeInstaller::record_narrow_metadata_reference(CodeSection* section, address dest, Handle constant, TRAPS) {
 264   oop obj = HotSpotMetaspaceConstantImpl::metaspaceObject(constant);
 265   assert(HotSpotMetaspaceConstantImpl::compressed(constant), "unexpected uncompressed pointer");
 266 
 267   if (!obj->is_a(HotSpotResolvedObjectTypeImpl::klass())) {
 268     JVMCI_ERROR_0("unexpected compressed pointer of type %s", obj->klass()->signature_name());
 269   }
 270 
 271   Klass* klass = java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(obj));
 272   int index = _oop_recorder->find_index(klass);
 273   section->relocate(dest, metadata_Relocation::spec(index));
 274   TRACE_jvmci_3("narrowKlass[%d of %d] = %s", index, _oop_recorder->metadata_count(), klass->name()->as_C_string());
 275   return Klass::encode_klass(klass);
 276 }
 277 #endif
 278 
 279 Location::Type CodeInstaller::get_oop_type(Thread* thread, Handle value) {
 280   Handle valueKind(thread, Value::valueKind(value));
 281   Handle platformKind(thread, ValueKind::platformKind(valueKind));
 282 
 283   if (platformKind == word_kind()) {
 284     return Location::oop;
 285   } else {
 286     return Location::narrowoop;
 287   }
 288 }
 289 
 290 ScopeValue* CodeInstaller::get_scope_value(Handle value, BasicType type, GrowableArray<ScopeValue*>* objects, ScopeValue* &second, TRAPS) {
 291   second = NULL;
 292   if (value.is_null()) {
 293     THROW_NULL(vmSymbols::java_lang_NullPointerException());
 294   } else if (value == Value::ILLEGAL()) {
 295     if (type != T_ILLEGAL) {
 296       JVMCI_ERROR_NULL("unexpected illegal value, expected %s", basictype_to_str(type));
 297     }
 298     return _illegal_value;
 299   } else if (value->is_a(RegisterValue::klass())) {
 300     Handle reg(THREAD, RegisterValue::reg(value));
 301     jint number = code_Register::number(reg);
 302     VMReg hotspotRegister = get_hotspot_reg(number, CHECK_NULL);
 303     if (is_general_purpose_reg(hotspotRegister)) {
 304       Location::Type locationType;
 305       if (type == T_OBJECT) {
 306         locationType = get_oop_type(THREAD, value);
 307       } else if (type == T_LONG) {
 308         locationType = Location::lng;
 309       } else if (type == T_INT || type == T_FLOAT || type == T_SHORT || type == T_CHAR || type == T_BYTE || type == T_BOOLEAN) {
 310         locationType = Location::int_in_long;
 311       } else {
 312         JVMCI_ERROR_NULL("unexpected type %s in cpu register", basictype_to_str(type));
 313       }
 314       ScopeValue* value = new LocationValue(Location::new_reg_loc(locationType, hotspotRegister));
 315       if (type == T_LONG) {
 316         second = value;
 317       }
 318       return value;
 319     } else {
 320       Location::Type locationType;
 321       if (type == T_FLOAT) {
 322         // this seems weird, but the same value is used in c1_LinearScan
 323         locationType = Location::normal;
 324       } else if (type == T_DOUBLE) {
 325         locationType = Location::dbl;
 326       } else {
 327         JVMCI_ERROR_NULL("unexpected type %s in floating point register", basictype_to_str(type));
 328       }
 329       ScopeValue* value = new LocationValue(Location::new_reg_loc(locationType, hotspotRegister));
 330       if (type == T_DOUBLE) {
 331         second = value;
 332       }
 333       return value;
 334     }
 335   } else if (value->is_a(StackSlot::klass())) {
 336     jint offset = StackSlot::offset(value);
 337     if (StackSlot::addFrameSize(value)) {
 338       offset += _total_frame_size;
 339     }
 340 
 341     Location::Type locationType;
 342     if (type == T_OBJECT) {
 343       locationType = get_oop_type(THREAD, value);
 344     } else if (type == T_LONG) {
 345       locationType = Location::lng;
 346     } else if (type == T_DOUBLE) {
 347       locationType = Location::dbl;
 348     } else if (type == T_INT || type == T_FLOAT || type == T_SHORT || type == T_CHAR || type == T_BYTE || type == T_BOOLEAN) {
 349       locationType = Location::normal;
 350     } else {
 351       JVMCI_ERROR_NULL("unexpected type %s in stack slot", basictype_to_str(type));
 352     }
 353     ScopeValue* value = new LocationValue(Location::new_stk_loc(locationType, offset));
 354     if (type == T_DOUBLE || type == T_LONG) {
 355       second = value;
 356     }
 357     return value;
 358   } else if (value->is_a(JavaConstant::klass())) {
 359     if (value->is_a(PrimitiveConstant::klass())) {
 360       if (value->is_a(RawConstant::klass())) {
 361         jlong prim = PrimitiveConstant::primitive(value);
 362         return new ConstantLongValue(prim);
 363       } else {
 364         Handle primitive_constant_kind(THREAD, PrimitiveConstant::kind(value));
 365         BasicType constantType = JVMCIRuntime::kindToBasicType(primitive_constant_kind, CHECK_NULL);
 366         if (type != constantType) {
 367           JVMCI_ERROR_NULL("primitive constant type doesn't match, expected %s but got %s", basictype_to_str(type), basictype_to_str(constantType));
 368         }
 369         if (type == T_INT || type == T_FLOAT) {
 370           jint prim = (jint)PrimitiveConstant::primitive(value);
 371           switch (prim) {
 372             case -1: return _int_m1_scope_value;
 373             case  0: return _int_0_scope_value;
 374             case  1: return _int_1_scope_value;
 375             case  2: return _int_2_scope_value;
 376             default: return new ConstantIntValue(prim);
 377           }
 378         } else if (type == T_LONG || type == T_DOUBLE) {
 379           jlong prim = PrimitiveConstant::primitive(value);
 380           second = _int_1_scope_value;
 381           return new ConstantLongValue(prim);
 382         } else {
 383           JVMCI_ERROR_NULL("unexpected primitive constant type %s", basictype_to_str(type));
 384         }
 385       }
 386     } else if (value->is_a(NullConstant::klass()) || value->is_a(HotSpotCompressedNullConstant::klass())) {
 387       if (type == T_OBJECT) {
 388         return _oop_null_scope_value;
 389       } else {
 390         JVMCI_ERROR_NULL("unexpected null constant, expected %s", basictype_to_str(type));
 391       }
 392     } else if (value->is_a(HotSpotObjectConstantImpl::klass())) {
 393       if (type == T_OBJECT) {
 394         oop obj = HotSpotObjectConstantImpl::object(value);
 395         if (obj == NULL) {
 396           JVMCI_ERROR_NULL("null value must be in NullConstant");
 397         }
 398         return new ConstantOopWriteValue(JNIHandles::make_local(obj));
 399       } else {
 400         JVMCI_ERROR_NULL("unexpected object constant, expected %s", basictype_to_str(type));
 401       }
 402     }
 403   } else if (value->is_a(VirtualObject::klass())) {
 404     if (type == T_OBJECT) {
 405       int id = VirtualObject::id(value);
 406       if (0 <= id && id < objects->length()) {
 407         ScopeValue* object = objects->at(id);
 408         if (object != NULL) {
 409           return object;
 410         }
 411       }
 412       JVMCI_ERROR_NULL("unknown virtual object id %d", id);
 413     } else {
 414       JVMCI_ERROR_NULL("unexpected virtual object, expected %s", basictype_to_str(type));
 415     }
 416   }
 417 
 418   JVMCI_ERROR_NULL("unexpected value in scope: %s", value->klass()->signature_name())
 419 }
 420 
 421 void CodeInstaller::record_object_value(ObjectValue* sv, Handle value, GrowableArray<ScopeValue*>* objects, TRAPS) {
 422   // Might want a HandleMark here.
 423   Handle type(THREAD, VirtualObject::type(value));
 424   int id = VirtualObject::id(value);
 425   oop javaMirror = HotSpotResolvedObjectTypeImpl::javaClass(type);
 426   Klass* klass = java_lang_Class::as_Klass(javaMirror);
 427   bool isLongArray = klass == Universe::longArrayKlassObj();
 428 
 429   objArrayHandle values(THREAD, VirtualObject::values(value));
 430   objArrayHandle slotKinds(THREAD, VirtualObject::slotKinds(value));
 431   for (jint i = 0; i < values->length(); i++) {
 432     HandleMark hm(THREAD);
 433     ScopeValue* cur_second = NULL;
 434     Handle object(THREAD, values->obj_at(i));
 435     Handle slot_kind (THREAD, slotKinds->obj_at(i));
 436     BasicType type = JVMCIRuntime::kindToBasicType(slot_kind, CHECK);
 437     ScopeValue* value = get_scope_value(object, type, objects, cur_second, CHECK);
 438 
 439     if (isLongArray && cur_second == NULL) {
 440       // we're trying to put ints into a long array... this isn't really valid, but it's used for some optimizations.
 441       // add an int 0 constant
 442       cur_second = _int_0_scope_value;
 443     }
 444 
 445     if (cur_second != NULL) {
 446       sv->field_values()->append(cur_second);
 447     }
 448     assert(value != NULL, "missing value");
 449     sv->field_values()->append(value);
 450   }
 451 }
 452 
 453 MonitorValue* CodeInstaller::get_monitor_value(Handle value, GrowableArray<ScopeValue*>* objects, TRAPS) {
 454   if (value.is_null()) {
 455     THROW_NULL(vmSymbols::java_lang_NullPointerException());
 456   }
 457   if (!value->is_a(StackLockValue::klass())) {
 458     JVMCI_ERROR_NULL("Monitors must be of type StackLockValue, got %s", value->klass()->signature_name());
 459   }
 460 
 461   ScopeValue* second = NULL;
 462   Handle stack_lock_owner(THREAD, StackLockValue::owner(value));
 463   ScopeValue* owner_value = get_scope_value(stack_lock_owner, T_OBJECT, objects, second, CHECK_NULL);
 464   assert(second == NULL, "monitor cannot occupy two stack slots");
 465 
 466   Handle stack_lock_slot(THREAD, StackLockValue::slot(value));
 467   ScopeValue* lock_data_value = get_scope_value(stack_lock_slot, T_LONG, objects, second, CHECK_NULL);
 468   assert(second == lock_data_value, "monitor is LONG value that occupies two stack slots");
 469   assert(lock_data_value->is_location(), "invalid monitor location");
 470   Location lock_data_loc = ((LocationValue*)lock_data_value)->location();
 471 
 472   bool eliminated = false;
 473   if (StackLockValue::eliminated(value)) {
 474     eliminated = true;
 475   }
 476 
 477   return new MonitorValue(owner_value, lock_data_loc, eliminated);
 478 }
 479 
 480 void CodeInstaller::initialize_dependencies(oop compiled_code, OopRecorder* recorder, TRAPS) {
 481   JavaThread* thread = JavaThread::current();
 482   assert(THREAD == thread, "");
 483   CompilerThread* compilerThread = thread->is_Compiler_thread() ? thread->as_CompilerThread() : NULL;
 484   _oop_recorder = recorder;
 485   _dependencies = new Dependencies(&_arena, _oop_recorder, compilerThread != NULL ? compilerThread->log() : NULL);
 486   objArrayHandle assumptions(THREAD, HotSpotCompiledCode::assumptions(compiled_code));
 487   if (!assumptions.is_null()) {
 488     int length = assumptions->length();
 489     for (int i = 0; i < length; ++i) {
 490       Handle assumption(THREAD, assumptions->obj_at(i));
 491       if (!assumption.is_null()) {
 492         if (assumption->klass() == Assumptions_NoFinalizableSubclass::klass()) {
 493           assumption_NoFinalizableSubclass(THREAD, assumption);
 494         } else if (assumption->klass() == Assumptions_ConcreteSubtype::klass()) {
 495           assumption_ConcreteSubtype(THREAD, assumption);
 496         } else if (assumption->klass() == Assumptions_LeafType::klass()) {
 497           assumption_LeafType(THREAD, assumption);
 498         } else if (assumption->klass() == Assumptions_ConcreteMethod::klass()) {
 499           assumption_ConcreteMethod(THREAD, assumption);
 500         } else if (assumption->klass() == Assumptions_CallSiteTargetValue::klass()) {
 501           assumption_CallSiteTargetValue(THREAD, assumption);
 502         } else {
 503           JVMCI_ERROR("unexpected Assumption subclass %s", assumption->klass()->signature_name());
 504         }
 505       }
 506     }
 507   }
 508   if (JvmtiExport::can_hotswap_or_post_breakpoint()) {
 509     objArrayHandle methods(THREAD, HotSpotCompiledCode::methods(compiled_code));
 510     if (!methods.is_null()) {
 511       int length = methods->length();
 512       for (int i = 0; i < length; ++i) {
 513         Handle method_handle(THREAD, methods->obj_at(i));
 514         methodHandle method = getMethodFromHotSpotMethod(method_handle());
 515         _dependencies->assert_evol_method(method());
 516       }
 517     }
 518   }
 519 }
 520 
 521 RelocBuffer::~RelocBuffer() {
 522   if (_buffer != NULL) {
 523     FREE_C_HEAP_ARRAY(char, _buffer);
 524   }
 525 }
 526 
 527 address RelocBuffer::begin() const {
 528   if (_buffer != NULL) {
 529     return (address) _buffer;
 530   }
 531   return (address) _static_buffer;
 532 }
 533 
 534 void RelocBuffer::set_size(size_t bytes) {
 535   assert(bytes <= _size, "can't grow in size!");
 536   _size = bytes;
 537 }
 538 
 539 void RelocBuffer::ensure_size(size_t bytes) {
 540   assert(_buffer == NULL, "can only be used once");
 541   assert(_size == 0, "can only be used once");
 542   if (bytes >= RelocBuffer::stack_size) {
 543     _buffer = NEW_C_HEAP_ARRAY(char, bytes, mtInternal);
 544   }
 545   _size = bytes;
 546 }
 547 
 548 JVMCIEnv::CodeInstallResult CodeInstaller::gather_metadata(Handle target, Handle compiled_code, CodeMetadata& metadata, TRAPS) {
 549   CodeBuffer buffer("JVMCI Compiler CodeBuffer for Metadata");
 550   jobject compiled_code_obj = JNIHandles::make_local(compiled_code());
 551   AOTOopRecorder* recorder = new AOTOopRecorder(&_arena, true);
 552   initialize_dependencies(JNIHandles::resolve(compiled_code_obj), recorder, CHECK_OK);
 553 
 554   metadata.set_oop_recorder(recorder);
 555 
 556   // Get instructions and constants CodeSections early because we need it.
 557   _instructions = buffer.insts();
 558   _constants = buffer.consts();
 559 
 560   initialize_fields(target(), JNIHandles::resolve(compiled_code_obj), CHECK_OK);
 561   JVMCIEnv::CodeInstallResult result = initialize_buffer(buffer, false, CHECK_OK);
 562   if (result != JVMCIEnv::ok) {
 563     return result;
 564   }
 565 
 566   _debug_recorder->pcs_size(); // create the sentinel record
 567 
 568   assert(_debug_recorder->pcs_length() >= 2, "must be at least 2");
 569 
 570   metadata.set_pc_desc(_debug_recorder->pcs(), _debug_recorder->pcs_length());
 571   metadata.set_scopes(_debug_recorder->stream()->buffer(), _debug_recorder->data_size());
 572   metadata.set_exception_table(&_exception_handler_table);
 573 
 574   RelocBuffer* reloc_buffer = metadata.get_reloc_buffer();
 575 
 576   reloc_buffer->ensure_size(buffer.total_relocation_size());
 577   size_t size = (size_t) buffer.copy_relocations_to(reloc_buffer->begin(), (CodeBuffer::csize_t) reloc_buffer->size(), true);
 578   reloc_buffer->set_size(size);
 579   return JVMCIEnv::ok;
 580 }
 581 
 582 // constructor used to create a method
 583 JVMCIEnv::CodeInstallResult CodeInstaller::install(JVMCICompiler* compiler, Handle target, Handle compiled_code, CodeBlob*& cb, Handle installed_code, Handle speculation_log, TRAPS) {
 584   CodeBuffer buffer("JVMCI Compiler CodeBuffer");
 585   jobject compiled_code_obj = JNIHandles::make_local(compiled_code());
 586   OopRecorder* recorder = new OopRecorder(&_arena, true);
 587   initialize_dependencies(JNIHandles::resolve(compiled_code_obj), recorder, CHECK_OK);
 588 
 589   // Get instructions and constants CodeSections early because we need it.
 590   _instructions = buffer.insts();
 591   _constants = buffer.consts();
 592 
 593   initialize_fields(target(), JNIHandles::resolve(compiled_code_obj), CHECK_OK);
 594   JVMCIEnv::CodeInstallResult result = initialize_buffer(buffer, true, CHECK_OK);
 595   if (result != JVMCIEnv::ok) {
 596     return result;
 597   }
 598 
 599   int stack_slots = _total_frame_size / HeapWordSize; // conversion to words
 600 
 601   if (!compiled_code->is_a(HotSpotCompiledNmethod::klass())) {
 602     oop stubName = HotSpotCompiledCode::name(compiled_code_obj);
 603     char* name = strdup(java_lang_String::as_utf8_string(stubName));
 604     cb = RuntimeStub::new_runtime_stub(name,
 605                                        &buffer,
 606                                        CodeOffsets::frame_never_safe,
 607                                        stack_slots,
 608                                        _debug_recorder->_oopmaps,
 609                                        false);
 610     result = JVMCIEnv::ok;
 611   } else {
 612     nmethod* nm = NULL;
 613     methodHandle method = getMethodFromHotSpotMethod(HotSpotCompiledNmethod::method(compiled_code));
 614     jint entry_bci = HotSpotCompiledNmethod::entryBCI(compiled_code);
 615     jint id = HotSpotCompiledNmethod::id(compiled_code);
 616     bool has_unsafe_access = HotSpotCompiledNmethod::hasUnsafeAccess(compiled_code) == JNI_TRUE;
 617     JVMCIEnv* env = (JVMCIEnv*) (address) HotSpotCompiledNmethod::jvmciEnv(compiled_code);
 618     if (id == -1) {
 619       // Make sure a valid compile_id is associated with every compile
 620       id = CompileBroker::assign_compile_id_unlocked(Thread::current(), method, entry_bci);
 621     }
 622     result = JVMCIEnv::register_method(method, nm, entry_bci, &_offsets, _orig_pc_offset, &buffer,
 623                                        stack_slots, _debug_recorder->_oopmaps, &_exception_handler_table,
 624                                        compiler, _debug_recorder, _dependencies, env, id,
 625                                        has_unsafe_access, _has_wide_vector, installed_code, compiled_code, speculation_log);
 626     cb = nm->as_codeblob_or_null();
 627     if (nm != NULL && env == NULL) {
 628       DirectiveSet* directive = DirectivesStack::getMatchingDirective(method, compiler);
 629       bool printnmethods = directive->PrintAssemblyOption || directive->PrintNMethodsOption;
 630       if (!printnmethods && (PrintDebugInfo || PrintRelocations || PrintDependencies || PrintExceptionHandlers)) {
 631         nm->print_nmethod(printnmethods);
 632       }
 633       DirectivesStack::release(directive);
 634     }
 635   }
 636 
 637   if (cb != NULL) {
 638     // Make sure the pre-calculated constants section size was correct.
 639     guarantee((cb->code_begin() - cb->content_begin()) >= _constants_size, "%d < %d", (int)(cb->code_begin() - cb->content_begin()), _constants_size);
 640   }
 641   return result;
 642 }
 643 
 644 void CodeInstaller::initialize_fields(oop target, oop compiled_code, TRAPS) {
 645   if (compiled_code->is_a(HotSpotCompiledNmethod::klass())) {
 646     Handle hotspotJavaMethod(THREAD, HotSpotCompiledNmethod::method(compiled_code));
 647     methodHandle method = getMethodFromHotSpotMethod(hotspotJavaMethod());
 648     _parameter_count = method->size_of_parameters();
 649     TRACE_jvmci_2("installing code for %s", method->name_and_sig_as_C_string());
 650   } else {
 651     // Must be a HotSpotCompiledRuntimeStub.
 652     // Only used in OopMap constructor for non-product builds
 653     _parameter_count = 0;
 654   }
 655   _sites_handle = JNIHandles::make_local(HotSpotCompiledCode::sites(compiled_code));
 656 
 657   _code_handle = JNIHandles::make_local(HotSpotCompiledCode::targetCode(compiled_code));
 658   _code_size = HotSpotCompiledCode::targetCodeSize(compiled_code);
 659   _total_frame_size = HotSpotCompiledCode::totalFrameSize(compiled_code);
 660 
 661   oop deoptRescueSlot = HotSpotCompiledCode::deoptRescueSlot(compiled_code);
 662   if (deoptRescueSlot == NULL) {
 663     _orig_pc_offset = -1;
 664   } else {
 665     _orig_pc_offset = StackSlot::offset(deoptRescueSlot);
 666     if (StackSlot::addFrameSize(deoptRescueSlot)) {
 667       _orig_pc_offset += _total_frame_size;
 668     }
 669     if (_orig_pc_offset < 0) {
 670       JVMCI_ERROR("invalid deopt rescue slot: %d", _orig_pc_offset);
 671     }
 672   }
 673 
 674   // Pre-calculate the constants section size.  This is required for PC-relative addressing.
 675   _data_section_handle = JNIHandles::make_local(HotSpotCompiledCode::dataSection(compiled_code));
 676   if ((_constants->alignment() % HotSpotCompiledCode::dataSectionAlignment(compiled_code)) != 0) {
 677     JVMCI_ERROR("invalid data section alignment: %d", HotSpotCompiledCode::dataSectionAlignment(compiled_code));
 678   }
 679   _constants_size = data_section()->length();
 680 
 681   _data_section_patches_handle = JNIHandles::make_local(HotSpotCompiledCode::dataSectionPatches(compiled_code));
 682 
 683 #ifndef PRODUCT
 684   _comments_handle = JNIHandles::make_local(HotSpotCompiledCode::comments(compiled_code));
 685 #endif
 686 
 687   _next_call_type = INVOKE_INVALID;
 688 
 689   _has_wide_vector = false;
 690 
 691   oop arch = TargetDescription::arch(target);
 692   _word_kind_handle = JNIHandles::make_local(Architecture::wordKind(arch));
 693 }
 694 
 695 int CodeInstaller::estimate_stubs_size(TRAPS) {
 696   // Estimate the number of static and aot call stubs that might be emitted.
 697   int static_call_stubs = 0;
 698   int aot_call_stubs = 0;
 699   objArrayOop sites = this->sites();
 700   for (int i = 0; i < sites->length(); i++) {
 701     oop site = sites->obj_at(i);
 702     if (site != NULL) {
 703       if (site->is_a(site_Mark::klass())) {
 704         oop id_obj = site_Mark::id(site);
 705         if (id_obj != NULL) {
 706           if (!java_lang_boxing_object::is_instance(id_obj, T_INT)) {
 707             JVMCI_ERROR_0("expected Integer id, got %s", id_obj->klass()->signature_name());
 708           }
 709           jint id = id_obj->int_field(java_lang_boxing_object::value_offset_in_bytes(T_INT));
 710           if (id == INVOKESTATIC || id == INVOKESPECIAL) {
 711             static_call_stubs++;
 712           }
 713         }
 714       }
 715       if (UseAOT && site->is_a(site_Call::klass())) {
 716         oop target = site_Call::target(site);
 717         InstanceKlass* target_klass = InstanceKlass::cast(target->klass());
 718         if (!target_klass->is_subclass_of(SystemDictionary::HotSpotForeignCallTarget_klass())) {
 719           // Add far aot trampolines.
 720           aot_call_stubs++;
 721         }
 722       }
 723     }
 724   }
 725   int size = static_call_stubs * CompiledStaticCall::to_interp_stub_size();
 726 #if INCLUDE_AOT
 727   size += aot_call_stubs * CompiledStaticCall::to_aot_stub_size();
 728 #endif
 729   return size;
 730 }
 731 
 732 // perform data and call relocation on the CodeBuffer
 733 JVMCIEnv::CodeInstallResult CodeInstaller::initialize_buffer(CodeBuffer& buffer, bool check_size, TRAPS) {
 734   HandleMark hm;
 735   objArrayHandle sites(THREAD, this->sites());
 736   int locs_buffer_size = sites->length() * (relocInfo::length_limit + sizeof(relocInfo));
 737 
 738   // Allocate enough space in the stub section for the static call
 739   // stubs.  Stubs have extra relocs but they are managed by the stub
 740   // section itself so they don't need to be accounted for in the
 741   // locs_buffer above.
 742   int stubs_size = estimate_stubs_size(CHECK_OK);
 743   int total_size = align_up(_code_size, buffer.insts()->alignment()) + align_up(_constants_size, buffer.consts()->alignment()) + align_up(stubs_size, buffer.stubs()->alignment());
 744 
 745   if (check_size && total_size > JVMCINMethodSizeLimit) {
 746     return JVMCIEnv::code_too_large;
 747   }
 748 
 749   buffer.initialize(total_size, locs_buffer_size);
 750   if (buffer.blob() == NULL) {
 751     return JVMCIEnv::cache_full;
 752   }
 753   buffer.initialize_stubs_size(stubs_size);
 754   buffer.initialize_consts_size(_constants_size);
 755 
 756   _debug_recorder = new DebugInformationRecorder(_oop_recorder);
 757   _debug_recorder->set_oopmaps(new OopMapSet());
 758 
 759   buffer.initialize_oop_recorder(_oop_recorder);
 760 
 761   // copy the constant data into the newly created CodeBuffer
 762   address end_data = _constants->start() + _constants_size;
 763   memcpy(_constants->start(), data_section()->base(T_BYTE), _constants_size);
 764   _constants->set_end(end_data);
 765 
 766   // copy the code into the newly created CodeBuffer
 767   address end_pc = _instructions->start() + _code_size;
 768   guarantee(_instructions->allocates2(end_pc), "initialize should have reserved enough space for all the code");
 769   memcpy(_instructions->start(), code()->base(T_BYTE), _code_size);
 770   _instructions->set_end(end_pc);
 771 
 772   for (int i = 0; i < data_section_patches()->length(); i++) {
 773     HandleMark hm(THREAD);
 774     Handle patch(THREAD, data_section_patches()->obj_at(i));
 775     if (patch.is_null()) {
 776       THROW_(vmSymbols::java_lang_NullPointerException(), JVMCIEnv::ok);
 777     }
 778     Handle reference(THREAD, site_DataPatch::reference(patch));
 779     if (reference.is_null()) {
 780       THROW_(vmSymbols::java_lang_NullPointerException(), JVMCIEnv::ok);
 781     }
 782     if (!reference->is_a(site_ConstantReference::klass())) {
 783       JVMCI_ERROR_OK("invalid patch in data section: %s", reference->klass()->signature_name());
 784     }
 785     Handle constant(THREAD, site_ConstantReference::constant(reference));
 786     if (constant.is_null()) {
 787       THROW_(vmSymbols::java_lang_NullPointerException(), JVMCIEnv::ok);
 788     }
 789     address dest = _constants->start() + site_Site::pcOffset(patch);
 790     if (constant->is_a(HotSpotMetaspaceConstantImpl::klass())) {
 791       if (HotSpotMetaspaceConstantImpl::compressed(constant)) {
 792 #ifdef _LP64
 793         *((narrowKlass*) dest) = record_narrow_metadata_reference(_constants, dest, constant, CHECK_OK);
 794 #else
 795         JVMCI_ERROR_OK("unexpected compressed Klass* in 32-bit mode");
 796 #endif
 797       } else {
 798         *((void**) dest) = record_metadata_reference(_constants, dest, constant, CHECK_OK);
 799       }
 800     } else if (constant->is_a(HotSpotObjectConstantImpl::klass())) {
 801       Handle obj(THREAD, HotSpotObjectConstantImpl::object(constant));
 802       jobject value = JNIHandles::make_local(obj());
 803       int oop_index = _oop_recorder->find_index(value);
 804 
 805       if (HotSpotObjectConstantImpl::compressed(constant)) {
 806 #ifdef _LP64
 807         _constants->relocate(dest, oop_Relocation::spec(oop_index), relocInfo::narrow_oop_in_const);
 808 #else
 809         JVMCI_ERROR_OK("unexpected compressed oop in 32-bit mode");
 810 #endif
 811       } else {
 812         _constants->relocate(dest, oop_Relocation::spec(oop_index));
 813       }
 814     } else {
 815       JVMCI_ERROR_OK("invalid constant in data section: %s", constant->klass()->signature_name());
 816     }
 817   }
 818   jint last_pc_offset = -1;
 819   for (int i = 0; i < sites->length(); i++) {
 820     HandleMark hm(THREAD);
 821     Handle site(THREAD, sites->obj_at(i));
 822     if (site.is_null()) {
 823       THROW_(vmSymbols::java_lang_NullPointerException(), JVMCIEnv::ok);
 824     }
 825 
 826     jint pc_offset = site_Site::pcOffset(site);
 827 
 828     if (site->is_a(site_Call::klass())) {
 829       TRACE_jvmci_4("call at %i", pc_offset);
 830       site_Call(buffer, pc_offset, site, CHECK_OK);
 831     } else if (site->is_a(site_Infopoint::klass())) {
 832       // three reasons for infopoints denote actual safepoints
 833       oop reason = site_Infopoint::reason(site);
 834       if (site_InfopointReason::SAFEPOINT() == reason || site_InfopointReason::CALL() == reason || site_InfopointReason::IMPLICIT_EXCEPTION() == reason) {
 835         TRACE_jvmci_4("safepoint at %i", pc_offset);
 836         site_Safepoint(buffer, pc_offset, site, CHECK_OK);
 837         if (_orig_pc_offset < 0) {
 838           JVMCI_ERROR_OK("method contains safepoint, but has no deopt rescue slot");
 839         }
 840       } else {
 841         TRACE_jvmci_4("infopoint at %i", pc_offset);
 842         site_Infopoint(buffer, pc_offset, site, CHECK_OK);
 843       }
 844     } else if (site->is_a(site_DataPatch::klass())) {
 845       TRACE_jvmci_4("datapatch at %i", pc_offset);
 846       site_DataPatch(buffer, pc_offset, site, CHECK_OK);
 847     } else if (site->is_a(site_Mark::klass())) {
 848       TRACE_jvmci_4("mark at %i", pc_offset);
 849       site_Mark(buffer, pc_offset, site, CHECK_OK);
 850     } else if (site->is_a(site_ExceptionHandler::klass())) {
 851       TRACE_jvmci_4("exceptionhandler at %i", pc_offset);
 852       site_ExceptionHandler(pc_offset, site);
 853     } else {
 854       JVMCI_ERROR_OK("unexpected site subclass: %s", site->klass()->signature_name());
 855     }
 856     last_pc_offset = pc_offset;
 857 
 858     JavaThread* thread = JavaThread::current();
 859     if (SafepointMechanism::poll(thread)) {
 860       // this is a hacky way to force a safepoint check but nothing else was jumping out at me.
 861       ThreadToNativeFromVM ttnfv(thread);
 862     }
 863   }
 864 
 865 #ifndef PRODUCT
 866   if (comments() != NULL) {
 867     for (int i = 0; i < comments()->length(); i++) {
 868       oop comment = comments()->obj_at(i);
 869       assert(comment->is_a(HotSpotCompiledCode_Comment::klass()), "cce");
 870       jint offset = HotSpotCompiledCode_Comment::pcOffset(comment);
 871       char* text = java_lang_String::as_utf8_string(HotSpotCompiledCode_Comment::text(comment));
 872       buffer.block_comment(offset, text);
 873     }
 874   }
 875 #endif
 876   return JVMCIEnv::ok;
 877 }
 878 
 879 void CodeInstaller::assumption_NoFinalizableSubclass(Thread* thread, Handle assumption) {
 880   Handle receiverType_handle (thread, Assumptions_NoFinalizableSubclass::receiverType(assumption()));
 881   Klass* receiverType = java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(receiverType_handle));
 882   _dependencies->assert_has_no_finalizable_subclasses(receiverType);
 883 }
 884 
 885 void CodeInstaller::assumption_ConcreteSubtype(Thread* thread, Handle assumption) {
 886   Handle context_handle (thread, Assumptions_ConcreteSubtype::context(assumption()));
 887   Handle subtype_handle (thread, Assumptions_ConcreteSubtype::subtype(assumption()));
 888   Klass* context = java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(context_handle));
 889   Klass* subtype = java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(subtype_handle));
 890 
 891   assert(context->is_abstract(), "");
 892   _dependencies->assert_abstract_with_unique_concrete_subtype(context, subtype);
 893 }
 894 
 895 void CodeInstaller::assumption_LeafType(Thread* thread, Handle assumption) {
 896   Handle context_handle (thread, Assumptions_LeafType::context(assumption()));
 897   Klass* context = java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(context_handle));
 898 
 899   _dependencies->assert_leaf_type(context);
 900 }
 901 
 902 void CodeInstaller::assumption_ConcreteMethod(Thread* thread, Handle assumption) {
 903   Handle impl_handle (thread, Assumptions_ConcreteMethod::impl(assumption()));
 904   Handle context_handle (thread, Assumptions_ConcreteMethod::context(assumption()));
 905 
 906   methodHandle impl = getMethodFromHotSpotMethod(impl_handle());
 907   Klass* context = java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(context_handle));
 908 
 909   _dependencies->assert_unique_concrete_method(context, impl());
 910 }
 911 
 912 void CodeInstaller::assumption_CallSiteTargetValue(Thread* thread, Handle assumption) {
 913   Handle callSite(thread, Assumptions_CallSiteTargetValue::callSite(assumption()));
 914   Handle methodHandle(thread, Assumptions_CallSiteTargetValue::methodHandle(assumption()));
 915 
 916   _dependencies->assert_call_site_target_value(callSite(), methodHandle());
 917 }
 918 
 919 void CodeInstaller::site_ExceptionHandler(jint pc_offset, Handle exc) {
 920   jint handler_offset = site_ExceptionHandler::handlerPos(exc);
 921 
 922   // Subtable header
 923   _exception_handler_table.add_entry(HandlerTableEntry(1, pc_offset, 0));
 924 
 925   // Subtable entry
 926   _exception_handler_table.add_entry(HandlerTableEntry(-1, handler_offset, 0));
 927 }
 928 
 929 // If deoptimization happens, the interpreter should reexecute these bytecodes.
 930 // This function mainly helps the compilers to set up the reexecute bit.
 931 static bool bytecode_should_reexecute(Bytecodes::Code code) {
 932   switch (code) {
 933     case Bytecodes::_invokedynamic:
 934     case Bytecodes::_invokevirtual:
 935     case Bytecodes::_invokeinterface:
 936     case Bytecodes::_invokespecial:
 937     case Bytecodes::_invokestatic:
 938       return false;
 939     default:
 940       return true;
 941     }
 942   return true;
 943 }
 944 
 945 GrowableArray<ScopeValue*>* CodeInstaller::record_virtual_objects(Handle debug_info, TRAPS) {
 946   objArrayHandle virtualObjects(THREAD, DebugInfo::virtualObjectMapping(debug_info));
 947   if (virtualObjects.is_null()) {
 948     return NULL;
 949   }
 950   GrowableArray<ScopeValue*>* objects = new GrowableArray<ScopeValue*>(virtualObjects->length(), virtualObjects->length(), NULL);
 951   // Create the unique ObjectValues
 952   for (int i = 0; i < virtualObjects->length(); i++) {
 953     HandleMark hm(THREAD);
 954     Handle value(THREAD, virtualObjects->obj_at(i));
 955     int id = VirtualObject::id(value);
 956     Handle type(THREAD, VirtualObject::type(value));
 957     oop javaMirror = HotSpotResolvedObjectTypeImpl::javaClass(type);
 958     ObjectValue* sv = new ObjectValue(id, new ConstantOopWriteValue(JNIHandles::make_local(Thread::current(), javaMirror)));
 959     if (id < 0 || id >= objects->length()) {
 960       JVMCI_ERROR_NULL("virtual object id %d out of bounds", id);
 961     }
 962     if (objects->at(id) != NULL) {
 963       JVMCI_ERROR_NULL("duplicate virtual object id %d", id);
 964     }
 965     objects->at_put(id, sv);
 966   }
 967   // All the values which could be referenced by the VirtualObjects
 968   // exist, so now describe all the VirtualObjects themselves.
 969   for (int i = 0; i < virtualObjects->length(); i++) {
 970     HandleMark hm(THREAD);
 971     Handle value(THREAD, virtualObjects->obj_at(i));
 972     int id = VirtualObject::id(value);
 973     record_object_value(objects->at(id)->as_ObjectValue(), value, objects, CHECK_NULL);
 974   }
 975   _debug_recorder->dump_object_pool(objects);
 976   return objects;
 977 }
 978 
 979 void CodeInstaller::record_scope(jint pc_offset, Handle debug_info, ScopeMode scope_mode, bool return_oop, TRAPS) {
 980   Handle position(THREAD, DebugInfo::bytecodePosition(debug_info));
 981   if (position.is_null()) {
 982     // Stubs do not record scope info, just oop maps
 983     return;
 984   }
 985 
 986   GrowableArray<ScopeValue*>* objectMapping;
 987   if (scope_mode == CodeInstaller::FullFrame) {
 988     objectMapping = record_virtual_objects(debug_info, CHECK);
 989   } else {
 990     objectMapping = NULL;
 991   }
 992   record_scope(pc_offset, position, scope_mode, objectMapping, return_oop, CHECK);
 993 }
 994 
 995 void CodeInstaller::record_scope(jint pc_offset, Handle position, ScopeMode scope_mode, GrowableArray<ScopeValue*>* objects, bool return_oop, TRAPS) {
 996   Handle frame;
 997   if (scope_mode == CodeInstaller::FullFrame) {
 998     if (!position->is_a(BytecodeFrame::klass())) {
 999       JVMCI_ERROR("Full frame expected for debug info at %i", pc_offset);
1000     }
1001     frame = position;
1002   }
1003   Handle caller_frame (THREAD, BytecodePosition::caller(position));
1004   if (caller_frame.not_null()) {
1005     record_scope(pc_offset, caller_frame, scope_mode, objects, return_oop, CHECK);
1006   }
1007 
1008   Handle hotspot_method (THREAD, BytecodePosition::method(position));
1009   Method* method = getMethodFromHotSpotMethod(hotspot_method());
1010   jint bci = BytecodePosition::bci(position);
1011   if (bci == BytecodeFrame::BEFORE_BCI()) {
1012     bci = SynchronizationEntryBCI;
1013   }
1014 
1015   TRACE_jvmci_2("Recording scope pc_offset=%d bci=%d method=%s", pc_offset, bci, method->name_and_sig_as_C_string());
1016 
1017   bool reexecute = false;
1018   if (frame.not_null()) {
1019     if (bci == SynchronizationEntryBCI){
1020        reexecute = false;
1021     } else {
1022       Bytecodes::Code code = Bytecodes::java_code_at(method, method->bcp_from(bci));
1023       reexecute = bytecode_should_reexecute(code);
1024       if (frame.not_null()) {
1025         reexecute = (BytecodeFrame::duringCall(frame) == JNI_FALSE);
1026       }
1027     }
1028   }
1029 
1030   DebugToken* locals_token = NULL;
1031   DebugToken* expressions_token = NULL;
1032   DebugToken* monitors_token = NULL;
1033   bool throw_exception = false;
1034 
1035   if (frame.not_null()) {
1036     jint local_count = BytecodeFrame::numLocals(frame);
1037     jint expression_count = BytecodeFrame::numStack(frame);
1038     jint monitor_count = BytecodeFrame::numLocks(frame);
1039     objArrayHandle values(THREAD, BytecodeFrame::values(frame));
1040     objArrayHandle slotKinds(THREAD, BytecodeFrame::slotKinds(frame));
1041 
1042     if (values.is_null() || slotKinds.is_null()) {
1043       THROW(vmSymbols::java_lang_NullPointerException());
1044     }
1045     if (local_count + expression_count + monitor_count != values->length()) {
1046       JVMCI_ERROR("unexpected values length %d in scope (%d locals, %d expressions, %d monitors)", values->length(), local_count, expression_count, monitor_count);
1047     }
1048     if (local_count + expression_count != slotKinds->length()) {
1049       JVMCI_ERROR("unexpected slotKinds length %d in scope (%d locals, %d expressions)", slotKinds->length(), local_count, expression_count);
1050     }
1051 
1052     GrowableArray<ScopeValue*>* locals = local_count > 0 ? new GrowableArray<ScopeValue*> (local_count) : NULL;
1053     GrowableArray<ScopeValue*>* expressions = expression_count > 0 ? new GrowableArray<ScopeValue*> (expression_count) : NULL;
1054     GrowableArray<MonitorValue*>* monitors = monitor_count > 0 ? new GrowableArray<MonitorValue*> (monitor_count) : NULL;
1055 
1056     TRACE_jvmci_2("Scope at bci %d with %d values", bci, values->length());
1057     TRACE_jvmci_2("%d locals %d expressions, %d monitors", local_count, expression_count, monitor_count);
1058 
1059     for (jint i = 0; i < values->length(); i++) {
1060       HandleMark hm(THREAD);
1061       ScopeValue* second = NULL;
1062       Handle value(THREAD, values->obj_at(i));
1063       if (i < local_count) {
1064         BasicType type = JVMCIRuntime::kindToBasicType(Handle(THREAD, slotKinds->obj_at(i)), CHECK);
1065         ScopeValue* first = get_scope_value(value, type, objects, second, CHECK);
1066         if (second != NULL) {
1067           locals->append(second);
1068         }
1069         locals->append(first);
1070       } else if (i < local_count + expression_count) {
1071         BasicType type = JVMCIRuntime::kindToBasicType(Handle(THREAD, slotKinds->obj_at(i)), CHECK);
1072         ScopeValue* first = get_scope_value(value, type, objects, second, CHECK);
1073         if (second != NULL) {
1074           expressions->append(second);
1075         }
1076         expressions->append(first);
1077       } else {
1078         MonitorValue *monitor = get_monitor_value(value, objects, CHECK);
1079         monitors->append(monitor);
1080       }
1081       if (second != NULL) {
1082         i++;
1083         if (i >= values->length() || values->obj_at(i) != Value::ILLEGAL()) {
1084           JVMCI_ERROR("double-slot value not followed by Value.ILLEGAL");
1085         }
1086       }
1087     }
1088 
1089     locals_token = _debug_recorder->create_scope_values(locals);
1090     expressions_token = _debug_recorder->create_scope_values(expressions);
1091     monitors_token = _debug_recorder->create_monitor_values(monitors);
1092 
1093     throw_exception = BytecodeFrame::rethrowException(frame) == JNI_TRUE;
1094   }
1095 
1096   _debug_recorder->describe_scope(pc_offset, method, NULL, bci, reexecute, throw_exception, false, return_oop,
1097                                   locals_token, expressions_token, monitors_token);
1098 }
1099 
1100 void CodeInstaller::site_Safepoint(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS) {
1101   Handle debug_info (THREAD, site_Infopoint::debugInfo(site));
1102   if (debug_info.is_null()) {
1103     JVMCI_ERROR("debug info expected at safepoint at %i", pc_offset);
1104   }
1105 
1106   // address instruction = _instructions->start() + pc_offset;
1107   // jint next_pc_offset = Assembler::locate_next_instruction(instruction) - _instructions->start();
1108   OopMap *map = create_oop_map(debug_info, CHECK);
1109   _debug_recorder->add_safepoint(pc_offset, map);
1110   record_scope(pc_offset, debug_info, CodeInstaller::FullFrame, CHECK);
1111   _debug_recorder->end_safepoint(pc_offset);
1112 }
1113 
1114 void CodeInstaller::site_Infopoint(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS) {
1115   Handle debug_info (THREAD, site_Infopoint::debugInfo(site));
1116   if (debug_info.is_null()) {
1117     JVMCI_ERROR("debug info expected at infopoint at %i", pc_offset);
1118   }
1119 
1120   // We'd like to check that pc_offset is greater than the
1121   // last pc recorded with _debug_recorder (raising an exception if not)
1122   // but DebugInformationRecorder doesn't have sufficient public API.
1123 
1124   _debug_recorder->add_non_safepoint(pc_offset);
1125   record_scope(pc_offset, debug_info, CodeInstaller::BytecodePosition, CHECK);
1126   _debug_recorder->end_non_safepoint(pc_offset);
1127 }
1128 
1129 void CodeInstaller::site_Call(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS) {
1130   Handle target(THREAD, site_Call::target(site));
1131   InstanceKlass* target_klass = InstanceKlass::cast(target->klass());
1132 
1133   Handle hotspot_method; // JavaMethod
1134   Handle foreign_call;
1135 
1136   if (target_klass->is_subclass_of(SystemDictionary::HotSpotForeignCallTarget_klass())) {
1137     foreign_call = target;
1138   } else {
1139     hotspot_method = target;
1140   }
1141 
1142   Handle debug_info (THREAD, site_Call::debugInfo(site));
1143 
1144   assert(hotspot_method.not_null() ^ foreign_call.not_null(), "Call site needs exactly one type");
1145 
1146   NativeInstruction* inst = nativeInstruction_at(_instructions->start() + pc_offset);
1147   jint next_pc_offset = CodeInstaller::pd_next_offset(inst, pc_offset, hotspot_method, CHECK);
1148 
1149   if (debug_info.not_null()) {
1150     OopMap *map = create_oop_map(debug_info, CHECK);
1151     _debug_recorder->add_safepoint(next_pc_offset, map);
1152 
1153     bool return_oop = hotspot_method.not_null() && getMethodFromHotSpotMethod(hotspot_method())->is_returning_oop();
1154 
1155     record_scope(next_pc_offset, debug_info, CodeInstaller::FullFrame, return_oop, CHECK);
1156   }
1157 
1158   if (foreign_call.not_null()) {
1159     jlong foreign_call_destination = HotSpotForeignCallTarget::address(foreign_call);
1160     if (_immutable_pic_compilation) {
1161       // Use fake short distance during PIC compilation.
1162       foreign_call_destination = (jlong)(_instructions->start() + pc_offset);
1163     }
1164     CodeInstaller::pd_relocate_ForeignCall(inst, foreign_call_destination, CHECK);
1165   } else { // method != NULL
1166     if (debug_info.is_null()) {
1167       JVMCI_ERROR("debug info expected at call at %i", pc_offset);
1168     }
1169 
1170     TRACE_jvmci_3("method call");
1171     CodeInstaller::pd_relocate_JavaMethod(hotspot_method, pc_offset, CHECK);
1172     if (_next_call_type == INVOKESTATIC || _next_call_type == INVOKESPECIAL) {
1173       // Need a static call stub for transitions from compiled to interpreted.
1174       CompiledStaticCall::emit_to_interp_stub(buffer, _instructions->start() + pc_offset);
1175     }
1176 #if INCLUDE_AOT
1177     // Trampoline to far aot code.
1178     CompiledStaticCall::emit_to_aot_stub(buffer, _instructions->start() + pc_offset);
1179 #endif
1180   }
1181 
1182   _next_call_type = INVOKE_INVALID;
1183 
1184   if (debug_info.not_null()) {
1185     _debug_recorder->end_safepoint(next_pc_offset);
1186   }
1187 }
1188 
1189 void CodeInstaller::site_DataPatch(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS) {
1190   Handle reference(THREAD, site_DataPatch::reference(site));
1191   if (reference.is_null()) {
1192     THROW(vmSymbols::java_lang_NullPointerException());
1193   } else if (reference->is_a(site_ConstantReference::klass())) {
1194     Handle constant(THREAD, site_ConstantReference::constant(reference));
1195     if (constant.is_null()) {
1196       THROW(vmSymbols::java_lang_NullPointerException());
1197     } else if (constant->is_a(HotSpotObjectConstantImpl::klass())) {
1198       if (!_immutable_pic_compilation) {
1199         // Do not patch during PIC compilation.
1200         pd_patch_OopConstant(pc_offset, constant, CHECK);
1201       }
1202     } else if (constant->is_a(HotSpotMetaspaceConstantImpl::klass())) {
1203       if (!_immutable_pic_compilation) {
1204         pd_patch_MetaspaceConstant(pc_offset, constant, CHECK);
1205       }
1206     } else if (constant->is_a(HotSpotSentinelConstant::klass())) {
1207       if (!_immutable_pic_compilation) {
1208         JVMCI_ERROR("sentinel constant not supported for normal compiles: %s", constant->klass()->signature_name());
1209       }
1210     } else {
1211       JVMCI_ERROR("unknown constant type in data patch: %s", constant->klass()->signature_name());
1212     }
1213   } else if (reference->is_a(site_DataSectionReference::klass())) {
1214     int data_offset = site_DataSectionReference::offset(reference);
1215     if (0 <= data_offset && data_offset < _constants_size) {
1216       pd_patch_DataSectionReference(pc_offset, data_offset, CHECK);
1217     } else {
1218       JVMCI_ERROR("data offset 0x%X points outside data section (size 0x%X)", data_offset, _constants_size);
1219     }
1220   } else {
1221     JVMCI_ERROR("unknown data patch type: %s", reference->klass()->signature_name());
1222   }
1223 }
1224 
1225 void CodeInstaller::site_Mark(CodeBuffer& buffer, jint pc_offset, Handle site, TRAPS) {
1226   Handle id_obj (THREAD, site_Mark::id(site));
1227 
1228   if (id_obj.not_null()) {
1229     if (!java_lang_boxing_object::is_instance(id_obj(), T_INT)) {
1230       JVMCI_ERROR("expected Integer id, got %s", id_obj->klass()->signature_name());
1231     }
1232     jint id = id_obj->int_field(java_lang_boxing_object::value_offset_in_bytes(T_INT));
1233 
1234     address pc = _instructions->start() + pc_offset;
1235 
1236     switch (id) {
1237       case UNVERIFIED_ENTRY:
1238         _offsets.set_value(CodeOffsets::Entry, pc_offset);
1239         break;
1240       case VERIFIED_ENTRY:
1241         _offsets.set_value(CodeOffsets::Verified_Entry, pc_offset);
1242         break;
1243       case OSR_ENTRY:
1244         _offsets.set_value(CodeOffsets::OSR_Entry, pc_offset);
1245         break;
1246       case EXCEPTION_HANDLER_ENTRY:
1247         _offsets.set_value(CodeOffsets::Exceptions, pc_offset);
1248         break;
1249       case DEOPT_HANDLER_ENTRY:
1250         _offsets.set_value(CodeOffsets::Deopt, pc_offset);
1251         break;
1252       case INVOKEVIRTUAL:
1253       case INVOKEINTERFACE:
1254       case INLINE_INVOKE:
1255       case INVOKESTATIC:
1256       case INVOKESPECIAL:
1257         _next_call_type = (MarkId) id;
1258         _invoke_mark_pc = pc;
1259         break;
1260       case POLL_NEAR:
1261       case POLL_FAR:
1262       case POLL_RETURN_NEAR:
1263       case POLL_RETURN_FAR:
1264         pd_relocate_poll(pc, id, CHECK);
1265         break;
1266       case CARD_TABLE_SHIFT:
1267       case CARD_TABLE_ADDRESS:
1268       case HEAP_TOP_ADDRESS:
1269       case HEAP_END_ADDRESS:
1270       case NARROW_KLASS_BASE_ADDRESS:
1271       case NARROW_OOP_BASE_ADDRESS:
1272       case CRC_TABLE_ADDRESS:
1273       case LOG_OF_HEAP_REGION_GRAIN_BYTES:
1274       case INLINE_CONTIGUOUS_ALLOCATION_SUPPORTED:
1275         break;
1276       default:
1277         JVMCI_ERROR("invalid mark id: %d", id);
1278         break;
1279     }
1280   }
1281 }
1282