hotspot/src/share/vm/prims/whitebox.cpp
author zgu
Fri, 08 Feb 2013 16:31:48 -0500
changeset 15598 8f4707a58a53
parent 15452 3bfde2dea09d
child 15484 7395ace8a11a
permissions -rw-r--r--
8006691: Remove jvm_version_info.is_kernel_jvm field Summary: Removed is_kernel_jvm from jvm_version_info as Kernel VM has been deprecated Reviewed-by: mchung, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     1
/*
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     2
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     4
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     8
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    13
 * accompanied this code).
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    14
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    18
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    21
 * questions.
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    22
 *
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    23
 */
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    24
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    25
#include "precompiled.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    26
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    27
#include "memory/universe.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    28
#include "oops/oop.inline.hpp"
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
    29
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
    30
#include "classfile/symbolTable.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    31
#include "classfile/classLoaderData.hpp"
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
    32
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    33
#include "prims/whitebox.hpp"
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
    34
#include "prims/wbtestmethods/parserTests.hpp"
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
    35
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    36
#include "runtime/interfaceSupport.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    37
#include "runtime/os.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    38
#include "utilities/debug.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    39
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    40
#ifndef SERIALGC
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    41
#include "gc_implementation/g1/concurrentMark.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    42
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    43
#include "gc_implementation/g1/heapRegionRemSet.hpp"
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    44
#endif // !SERIALGC
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    45
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    46
#ifdef INCLUDE_NMT
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    47
#include "services/memTracker.hpp"
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    48
#endif // INCLUDE_NMT
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
    49
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    50
bool WhiteBox::_used = false;
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    51
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    52
WB_ENTRY(jlong, WB_GetObjectAddress(JNIEnv* env, jobject o, jobject obj))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    53
  return (jlong)(void*)JNIHandles::resolve(obj);
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    54
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    55
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    56
WB_ENTRY(jint, WB_GetHeapOopSize(JNIEnv* env, jobject o))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    57
  return heapOopSize;
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    58
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    59
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    60
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    61
class WBIsKlassAliveClosure : public KlassClosure {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    62
    Symbol* _name;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    63
    bool _found;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    64
public:
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    65
    WBIsKlassAliveClosure(Symbol* name) : _name(name), _found(false) {}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    66
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    67
    void do_klass(Klass* k) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    68
      if (_found) return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    69
      Symbol* ksym = k->name();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    70
      if (ksym->fast_compare(_name) == 0) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    71
        _found = true;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    72
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    73
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    74
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    75
    bool found() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    76
        return _found;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    77
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    78
};
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    79
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    80
WB_ENTRY(jboolean, WB_IsClassAlive(JNIEnv* env, jobject target, jstring name))
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    81
  Handle h_name = JNIHandles::resolve(name);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    82
  if (h_name.is_null()) return false;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    83
  Symbol* sym = java_lang_String::as_symbol(h_name, CHECK_false);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    84
  TempNewSymbol tsym(sym); // Make sure to decrement reference count on sym on return
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    85
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    86
  WBIsKlassAliveClosure closure(sym);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    87
  ClassLoaderDataGraph::classes_do(&closure);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    88
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    89
  return closure.found();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    90
WB_END
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
    91
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    92
#ifndef SERIALGC
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    93
WB_ENTRY(jboolean, WB_G1IsHumongous(JNIEnv* env, jobject o, jobject obj))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    94
  G1CollectedHeap* g1 = G1CollectedHeap::heap();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    95
  oop result = JNIHandles::resolve(obj);
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    96
  const HeapRegion* hr = g1->heap_region_containing(result);
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    97
  return hr->isHumongous();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    98
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
    99
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   100
WB_ENTRY(jlong, WB_G1NumFreeRegions(JNIEnv* env, jobject o))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   101
  G1CollectedHeap* g1 = G1CollectedHeap::heap();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   102
  size_t nr = g1->free_regions();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   103
  return (jlong)nr;
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   104
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   105
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   106
WB_ENTRY(jboolean, WB_G1InConcurrentMark(JNIEnv* env, jobject o))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   107
  G1CollectedHeap* g1 = G1CollectedHeap::heap();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   108
  ConcurrentMark* cm = g1->concurrent_mark();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   109
  return cm->concurrent_marking_in_progress();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   110
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   111
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   112
WB_ENTRY(jint, WB_G1RegionSize(JNIEnv* env, jobject o))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   113
  return (jint)HeapRegion::GrainBytes;
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   114
WB_END
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   115
#endif // !SERIALGC
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   116
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   117
#ifdef INCLUDE_NMT
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   118
// Keep track of the 3 allocations in NMTAllocTest so we can free them later
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   119
// on and verify that they're not visible anymore
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   120
static void* nmtMtTest1 = NULL, *nmtMtTest2 = NULL, *nmtMtTest3 = NULL;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   121
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   122
// Alloc memory using the test memory type so that we can use that to see if
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   123
// NMT picks it up correctly
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   124
WB_ENTRY(jboolean, WB_NMTAllocTest(JNIEnv* env))
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   125
  void *mem;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   126
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   127
  if (!MemTracker::is_on() || MemTracker::shutdown_in_progress()) {
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   128
    return false;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   129
  }
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   130
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   131
  // Allocate 2 * 128k + 256k + 1024k and free the 1024k one to make sure we track
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   132
  // everything correctly. Total should be 512k held alive.
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   133
  nmtMtTest1 = os::malloc(128 * 1024, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   134
  mem = os::malloc(1024 * 1024, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   135
  nmtMtTest2 = os::malloc(256 * 1024, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   136
  os::free(mem, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   137
  nmtMtTest3 = os::malloc(128 * 1024, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   138
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   139
  return true;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   140
WB_END
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   141
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   142
// Free the memory allocated by NMTAllocTest
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   143
WB_ENTRY(jboolean, WB_NMTFreeTestMemory(JNIEnv* env))
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   144
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   145
  if (nmtMtTest1 == NULL || nmtMtTest2 == NULL || nmtMtTest3 == NULL) {
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   146
    return false;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   147
  }
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   148
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   149
  os::free(nmtMtTest1, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   150
  nmtMtTest1 = NULL;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   151
  os::free(nmtMtTest2, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   152
  nmtMtTest2 = NULL;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   153
  os::free(nmtMtTest3, mtTest);
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   154
  nmtMtTest3 = NULL;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   155
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   156
  return true;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   157
WB_END
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   158
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   159
// Block until the current generation of NMT data to be merged, used to reliably test the NMT feature
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   160
WB_ENTRY(jboolean, WB_NMTWaitForDataMerge(JNIEnv* env))
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   161
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   162
  if (!MemTracker::is_on() || MemTracker::shutdown_in_progress()) {
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   163
    return false;
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   164
  }
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   165
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   166
  return MemTracker::wbtest_wait_for_data_merge();
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   167
WB_END
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   168
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   169
#endif // INCLUDE_NMT
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   170
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   171
//Some convenience methods to deal with objects from java
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   172
int WhiteBox::offset_for_field(const char* field_name, oop object,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   173
    Symbol* signature_symbol) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   174
  assert(field_name != NULL && strlen(field_name) > 0, "Field name not valid");
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   175
  Thread* THREAD = Thread::current();
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   176
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   177
  //Get the class of our object
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   178
  Klass* arg_klass = object->klass();
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   179
  //Turn it into an instance-klass
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   180
  InstanceKlass* ik = InstanceKlass::cast(arg_klass);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   181
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   182
  //Create symbols to look for in the class
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   183
  TempNewSymbol name_symbol = SymbolTable::lookup(field_name, (int) strlen(field_name),
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   184
      THREAD);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   185
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   186
  //To be filled in with an offset of the field we're looking for
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   187
  fieldDescriptor fd;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   188
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   189
  Klass* res = ik->find_field(name_symbol, signature_symbol, &fd);
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   190
  if (res == NULL) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   191
    tty->print_cr("Invalid layout of %s at %s", ik->external_name(),
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   192
        name_symbol->as_C_string());
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   193
    fatal("Invalid layout of preloaded class");
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   194
  }
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   195
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   196
  //fetch the field at the offset we've found
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   197
  int dest_offset = fd.offset();
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   198
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   199
  return dest_offset;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   200
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   201
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   202
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   203
const char* WhiteBox::lookup_jstring(const char* field_name, oop object) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   204
  int offset = offset_for_field(field_name, object,
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   205
      vmSymbols::string_signature());
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   206
  oop string = object->obj_field(offset);
13200
7b506e7b406e 7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents: 12262
diff changeset
   207
  if (string == NULL) {
7b506e7b406e 7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents: 12262
diff changeset
   208
    return NULL;
7b506e7b406e 7178703: Fix handling of quoted arguments and better error messages in dcmd
sla
parents: 12262
diff changeset
   209
  }
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   210
  const char* ret = java_lang_String::as_utf8_string(string);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   211
  return ret;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   212
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   213
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   214
bool WhiteBox::lookup_bool(const char* field_name, oop object) {
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   215
  int offset =
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   216
      offset_for_field(field_name, object, vmSymbols::bool_signature());
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   217
  bool ret = (object->bool_field(offset) == JNI_TRUE);
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   218
  return ret;
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   219
}
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   220
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   221
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   222
#define CC (char*)
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   223
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   224
static JNINativeMethod methods[] = {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   225
  {CC"getObjectAddress",   CC"(Ljava/lang/Object;)J", (void*)&WB_GetObjectAddress  },
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   226
  {CC"getHeapOopSize",     CC"()I",                   (void*)&WB_GetHeapOopSize    },
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13200
diff changeset
   227
  {CC"isClassAlive0",       CC"(Ljava/lang/String;)Z", (void*)&WB_IsClassAlive      },
12262
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   228
  {CC "parseCommandLine",
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   229
      CC "(Ljava/lang/String;[Lsun/hotspot/parser/DiagnosticCommand;)[Ljava/lang/Object;",
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   230
      (void*) &WB_ParseCommandLine
fb3b9fede660 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 12095
diff changeset
   231
  },
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   232
#ifndef SERIALGC
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   233
  {CC"g1InConcurrentMark", CC"()Z",                   (void*)&WB_G1InConcurrentMark},
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   234
  {CC"g1IsHumongous",      CC"(Ljava/lang/Object;)Z", (void*)&WB_G1IsHumongous     },
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   235
  {CC"g1NumFreeRegions",   CC"()J",                   (void*)&WB_G1NumFreeRegions  },
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   236
  {CC"g1RegionSize",       CC"()I",                   (void*)&WB_G1RegionSize      },
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   237
#endif // !SERIALGC
15452
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   238
#ifdef INCLUDE_NMT
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   239
  {CC"NMTAllocTest",       CC"()Z",                   (void*)&WB_NMTAllocTest      },
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   240
  {CC"NMTFreeTestMemory",  CC"()Z",                   (void*)&WB_NMTFreeTestMemory },
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   241
  {CC"NMTWaitForDataMerge",CC"()Z",                   (void*)&WB_NMTWaitForDataMerge},
3bfde2dea09d 8005012: Add WB APIs to better support NMT testing
ctornqvi
parents: 13728
diff changeset
   242
#endif // INCLUDE_NMT
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   243
};
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   244
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   245
#undef CC
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   246
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   247
JVM_ENTRY(void, JVM_RegisterWhiteBoxMethods(JNIEnv* env, jclass wbclass))
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   248
  {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   249
    if (WhiteBoxAPI) {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   250
      // Make sure that wbclass is loaded by the null classloader
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   251
      instanceKlassHandle ikh = instanceKlassHandle(JNIHandles::resolve(wbclass)->klass());
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   252
      Handle loader(ikh->class_loader());
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   253
      if (loader.is_null()) {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   254
        ThreadToNativeFromVM ttnfv(thread); // can't be in VM when we call JNI
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   255
        jint result = env->RegisterNatives(wbclass, methods, sizeof(methods)/sizeof(methods[0]));
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   256
        if (result == 0) {
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   257
          WhiteBox::set_used();
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   258
        }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   259
      }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   260
    }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   261
  }
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents:
diff changeset
   262
JVM_END