hotspot/src/share/vm/oops/constMethodOop.cpp
changeset 12937 0032fb2caff6
parent 7397 5b173b4ca846
child 13282 9872915dd78d
--- a/hotspot/src/share/vm/oops/constMethodOop.cpp	Fri Jun 01 15:30:44 2012 -0700
+++ b/hotspot/src/share/vm/oops/constMethodOop.cpp	Wed Jun 06 14:33:43 2012 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 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
@@ -53,6 +53,10 @@
   return align_object_size(header_size() + extra_words);
 }
 
+methodOop constMethodOopDesc::method() const {
+    return instanceKlass::cast(_constants->pool_holder())->method_with_idnum(
+                               _method_idnum);
+  }
 
 // linenumber table - note that length is unknown until decompression,
 // see class CompressedLineNumberReadStream.