< prev index next >

src/hotspot/share/aot/aotCompiledMethod.cpp

Print this page




  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 
  26 #include "aot/aotCodeHeap.hpp"
  27 #include "aot/aotLoader.hpp"
  28 #include "aot/compiledIC_aot.hpp"
  29 #include "code/codeCache.hpp"
  30 #include "code/compiledIC.hpp"
  31 #include "code/nativeInst.hpp"
  32 #include "compiler/compilerOracle.hpp"
  33 #include "gc/shared/cardTableBarrierSet.hpp"
  34 #include "gc/shared/collectedHeap.hpp"
  35 #include "gc/shared/gcLocker.hpp"
  36 #include "jvmci/compilerRuntime.hpp"
  37 #include "jvmci/jvmciRuntime.hpp"
  38 #include "oops/method.inline.hpp"
  39 #include "runtime/frame.inline.hpp"
  40 #include "runtime/handles.inline.hpp"
  41 #include "runtime/java.hpp"
  42 #include "runtime/os.hpp"

  43 #include "runtime/sharedRuntime.hpp"
  44 #include "utilities/xmlstream.hpp"
  45 
  46 #include <stdio.h>
  47 
  48 #if 0
  49 static void metadata_oops_do(Metadata** metadata_begin, Metadata **metadata_end, OopClosure* f) {
  50   // Visit the metadata/oops section
  51   for (Metadata** p = metadata_begin; p < metadata_end; p++) {
  52     Metadata* m = *p;
  53 
  54     intptr_t meta = (intptr_t)m;
  55     if ((meta & 1) == 1) {
  56       // already resolved
  57       m = (Metadata*)(meta & ~1);
  58     } else {
  59       continue;
  60     }
  61     assert(Metaspace::contains(m), "");
  62     if (m->is_method()) {




  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 
  26 #include "aot/aotCodeHeap.hpp"
  27 #include "aot/aotLoader.hpp"
  28 #include "aot/compiledIC_aot.hpp"
  29 #include "code/codeCache.hpp"
  30 #include "code/compiledIC.hpp"
  31 #include "code/nativeInst.hpp"
  32 #include "compiler/compilerOracle.hpp"
  33 #include "gc/shared/cardTableBarrierSet.hpp"
  34 #include "gc/shared/collectedHeap.hpp"

  35 #include "jvmci/compilerRuntime.hpp"
  36 #include "jvmci/jvmciRuntime.hpp"
  37 #include "oops/method.inline.hpp"
  38 #include "runtime/frame.inline.hpp"
  39 #include "runtime/handles.inline.hpp"
  40 #include "runtime/java.hpp"
  41 #include "runtime/os.hpp"
  42 #include "runtime/safepointVerifiers.hpp"
  43 #include "runtime/sharedRuntime.hpp"
  44 #include "utilities/xmlstream.hpp"
  45 
  46 #include <stdio.h>
  47 
  48 #if 0
  49 static void metadata_oops_do(Metadata** metadata_begin, Metadata **metadata_end, OopClosure* f) {
  50   // Visit the metadata/oops section
  51   for (Metadata** p = metadata_begin; p < metadata_end; p++) {
  52     Metadata* m = *p;
  53 
  54     intptr_t meta = (intptr_t)m;
  55     if ((meta & 1) == 1) {
  56       // already resolved
  57       m = (Metadata*)(meta & ~1);
  58     } else {
  59       continue;
  60     }
  61     assert(Metaspace::contains(m), "");
  62     if (m->is_method()) {


< prev index next >