hotspot/src/share/vm/c1/c1_GraphBuilder.cpp
changeset 7427 d7b79a367474
parent 7397 5b173b4ca846
child 7432 f06f1253c317
equal deleted inserted replaced
7397:5b173b4ca846 7427:d7b79a367474
  2793       get = append(new Constant(objectNull));
  2793       get = append(new Constant(objectNull));
  2794     } else {
  2794     } else {
  2795       get = append(new UnsafeGetRaw(as_BasicType(local->type()), e,
  2795       get = append(new UnsafeGetRaw(as_BasicType(local->type()), e,
  2796                                     append(new Constant(new IntConstant(offset))),
  2796                                     append(new Constant(new IntConstant(offset))),
  2797                                     0,
  2797                                     0,
  2798                                     true));
  2798                                     true /*unaligned*/, true /*wide*/));
  2799     }
  2799     }
  2800     _state->store_local(index, get);
  2800     _state->store_local(index, get);
  2801   }
  2801   }
  2802 
  2802 
  2803   // the storage for the OSR buffer is freed manually in the LIRGenerator.
  2803   // the storage for the OSR buffer is freed manually in the LIRGenerator.