< prev index next >

src/share/vm/runtime/dtraceJSDT.hpp

Print this page




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  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 
  25 #ifndef SHARE_VM_RUNTIME_DTRACEJSDT_HPP
  26 #define SHARE_VM_RUNTIME_DTRACEJSDT_HPP
  27 
  28 #include "code/nmethod.hpp"
  29 #ifdef TARGET_ARCH_x86
  30 # include "nativeInst_x86.hpp"
  31 #endif



  32 #ifdef TARGET_ARCH_sparc
  33 # include "nativeInst_sparc.hpp"
  34 #endif
  35 #ifdef TARGET_ARCH_zero
  36 # include "nativeInst_zero.hpp"
  37 #endif
  38 #ifdef TARGET_ARCH_arm
  39 # include "nativeInst_arm.hpp"
  40 #endif
  41 #ifdef TARGET_ARCH_ppc
  42 # include "nativeInst_ppc.hpp"
  43 #endif
  44 
  45 class RegisteredProbes;
  46 typedef jlong OpaqueProbes;
  47 
  48 class DTraceJSDT : AllStatic {
  49  private:
  50 
  51   static int pd_activate(void* moduleBaseAddress, jstring module,




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  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 
  25 #ifndef SHARE_VM_RUNTIME_DTRACEJSDT_HPP
  26 #define SHARE_VM_RUNTIME_DTRACEJSDT_HPP
  27 
  28 #include "code/nmethod.hpp"
  29 #ifdef TARGET_ARCH_x86
  30 # include "nativeInst_x86.hpp"
  31 #endif
  32 #ifdef TARGET_ARCH_aarch64
  33 # include "nativeInst_aarch64.hpp"
  34 #endif
  35 #ifdef TARGET_ARCH_sparc
  36 # include "nativeInst_sparc.hpp"
  37 #endif
  38 #ifdef TARGET_ARCH_zero
  39 # include "nativeInst_zero.hpp"
  40 #endif
  41 #ifdef TARGET_ARCH_arm
  42 # include "nativeInst_arm.hpp"
  43 #endif
  44 #ifdef TARGET_ARCH_ppc
  45 # include "nativeInst_ppc.hpp"
  46 #endif
  47 
  48 class RegisteredProbes;
  49 typedef jlong OpaqueProbes;
  50 
  51 class DTraceJSDT : AllStatic {
  52  private:
  53 
  54   static int pd_activate(void* moduleBaseAddress, jstring module,


< prev index next >