diff src/share/vm/code/scopeDesc.cpp @ 6948:e522a00b91aa

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/ after NPG - C++ build works
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 Nov 2012 23:14:12 +0100
parents 5857923e563c da91efe96a93
children b6a8f2d23057
line wrap: on
line diff
--- a/src/share/vm/code/scopeDesc.cpp	Mon Nov 12 18:11:17 2012 +0100
+++ b/src/share/vm/code/scopeDesc.cpp	Mon Nov 12 23:14:12 2012 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -68,7 +68,7 @@
     // This is a sentinel record, which is only relevant to
     // approximate queries.  Decode a reasonable frame.
     _sender_decode_offset = DebugInformationRecorder::serialized_null;
-    _method = methodHandle(_code->method());
+    _method = _code->method();
     _bci = InvocationEntryBci;
     _locals_decode_offset = DebugInformationRecorder::serialized_null;
     _expressions_decode_offset = DebugInformationRecorder::serialized_null;
@@ -78,7 +78,7 @@
     DebugInfoReadStream* stream  = stream_at(decode_offset());
 
     _sender_decode_offset = stream->read_int();
-    _method = methodHandle((methodOop) stream->read_oop());
+    _method = stream->read_method();
     _bci    = stream->read_bci();
 
     // decode offsets for body and sender
@@ -160,7 +160,7 @@
 
 void ScopeDesc::print_value_on(outputStream* st) const {
   tty->print("   ");
-  method()()->print_short_name(st);
+  method()->print_short_name(st);
   int lineno = method()->line_number_from_bci(bci());
   if (lineno != -1) {
     st->print_cr("@%d (line %d)", bci(), lineno);