hotspot/src/os/bsd/dtrace/hotspot_jni.d
author dcubed
Thu, 13 Oct 2011 09:35:42 -0700
changeset 10739 91935236600e
permissions -rw-r--r--
7098194: integrate macosx-port changes Summary: Integrate bsd-port/hotspot and macosx-port/hotspot changes as of 2011.09.29. Reviewed-by: kvn, dholmes, never, phh Contributed-by: Christos Zoulas <christos@zoulas.com>, Greg Lewis <glewis@eyesbeyond.com>, Kurt Miller <kurt@intricatesoftware.com>, Alexander Strange <astrange@apple.com>, Mike Swingler <swingler@apple.com>, Roger Hoover <rhoover@apple.com>, Victor Hernandez <vhernandez@apple.com>, Pratik Solanki <psolanki@apple.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     1
/*
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     2
 * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     4
 *
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     7
 * published by the Free Software Foundation.
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     8
 *
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    13
 * accompanied this code).
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    14
 *
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    18
 *
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    21
 * questions.
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    22
 *  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    23
 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    24
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    25
provider hotspot_jni {
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    26
  probe AllocObject__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    27
  probe AllocObject__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    28
  probe AttachCurrentThreadAsDaemon__entry(void*, void**, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    29
  probe AttachCurrentThreadAsDaemon__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    30
  probe AttachCurrentThread__entry(void*, void**, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    31
  probe AttachCurrentThread__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    32
  probe CallBooleanMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    33
  probe CallBooleanMethodA__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    34
  probe CallBooleanMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    35
  probe CallBooleanMethod__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    36
  probe CallBooleanMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    37
  probe CallBooleanMethodV__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    38
  probe CallByteMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    39
  probe CallByteMethodA__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    40
  probe CallByteMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    41
  probe CallByteMethod__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    42
  probe CallByteMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    43
  probe CallByteMethodV__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    44
  probe CallCharMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    45
  probe CallCharMethodA__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    46
  probe CallCharMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    47
  probe CallCharMethod__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    48
  probe CallCharMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    49
  probe CallCharMethodV__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    50
  probe CallDoubleMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    51
  probe CallDoubleMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    52
  probe CallDoubleMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    53
  probe CallDoubleMethod__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    54
  probe CallDoubleMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    55
  probe CallDoubleMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    56
  probe CallFloatMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    57
  probe CallFloatMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    58
  probe CallFloatMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    59
  probe CallFloatMethod__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    60
  probe CallFloatMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    61
  probe CallFloatMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    62
  probe CallIntMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    63
  probe CallIntMethodA__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    64
  probe CallIntMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    65
  probe CallIntMethod__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    66
  probe CallIntMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    67
  probe CallIntMethodV__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    68
  probe CallLongMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    69
  probe CallLongMethodA__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    70
  probe CallLongMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    71
  probe CallLongMethod__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    72
  probe CallLongMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    73
  probe CallLongMethodV__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    74
  probe CallNonvirtualBooleanMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    75
  probe CallNonvirtualBooleanMethodA__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    76
  probe CallNonvirtualBooleanMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    77
  probe CallNonvirtualBooleanMethod__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    78
  probe CallNonvirtualBooleanMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    79
  probe CallNonvirtualBooleanMethodV__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    80
  probe CallNonvirtualByteMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    81
  probe CallNonvirtualByteMethodA__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    82
  probe CallNonvirtualByteMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    83
  probe CallNonvirtualByteMethod__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    84
  probe CallNonvirtualByteMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    85
  probe CallNonvirtualByteMethodV__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    86
  probe CallNonvirtualCharMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    87
  probe CallNonvirtualCharMethodA__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    88
  probe CallNonvirtualCharMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    89
  probe CallNonvirtualCharMethod__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    90
  probe CallNonvirtualCharMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    91
  probe CallNonvirtualCharMethodV__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    92
  probe CallNonvirtualDoubleMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    93
  probe CallNonvirtualDoubleMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    94
  probe CallNonvirtualDoubleMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    95
  probe CallNonvirtualDoubleMethod__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    96
  probe CallNonvirtualDoubleMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    97
  probe CallNonvirtualDoubleMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    98
  probe CallNonvirtualFloatMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
    99
  probe CallNonvirtualFloatMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   100
  probe CallNonvirtualFloatMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   101
  probe CallNonvirtualFloatMethod__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   102
  probe CallNonvirtualFloatMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   103
  probe CallNonvirtualFloatMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   104
  probe CallNonvirtualIntMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   105
  probe CallNonvirtualIntMethodA__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   106
  probe CallNonvirtualIntMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   107
  probe CallNonvirtualIntMethod__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   108
  probe CallNonvirtualIntMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   109
  probe CallNonvirtualIntMethodV__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   110
  probe CallNonvirtualLongMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   111
  probe CallNonvirtualLongMethodA__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   112
  probe CallNonvirtualLongMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   113
  probe CallNonvirtualLongMethod__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   114
  probe CallNonvirtualLongMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   115
  probe CallNonvirtualLongMethodV__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   116
  probe CallNonvirtualObjectMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   117
  probe CallNonvirtualObjectMethodA__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   118
  probe CallNonvirtualObjectMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   119
  probe CallNonvirtualObjectMethod__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   120
  probe CallNonvirtualObjectMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   121
  probe CallNonvirtualObjectMethodV__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   122
  probe CallNonvirtualShortMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   123
  probe CallNonvirtualShortMethodA__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   124
  probe CallNonvirtualShortMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   125
  probe CallNonvirtualShortMethod__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   126
  probe CallNonvirtualShortMethodV__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   127
  probe CallNonvirtualShortMethodV__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   128
  probe CallNonvirtualVoidMethodA__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   129
  probe CallNonvirtualVoidMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   130
  probe CallNonvirtualVoidMethod__entry(void*, void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   131
  probe CallNonvirtualVoidMethod__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   132
  probe CallNonvirtualVoidMethodV__entry(void*, void*, void*, uintptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   133
  probe CallNonvirtualVoidMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   134
  probe CallObjectMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   135
  probe CallObjectMethodA__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   136
  probe CallObjectMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   137
  probe CallObjectMethod__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   138
  probe CallObjectMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   139
  probe CallObjectMethodV__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   140
  probe CallShortMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   141
  probe CallShortMethodA__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   142
  probe CallShortMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   143
  probe CallShortMethod__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   144
  probe CallShortMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   145
  probe CallShortMethodV__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   146
  probe CallStaticBooleanMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   147
  probe CallStaticBooleanMethodA__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   148
  probe CallStaticBooleanMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   149
  probe CallStaticBooleanMethod__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   150
  probe CallStaticBooleanMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   151
  probe CallStaticBooleanMethodV__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   152
  probe CallStaticByteMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   153
  probe CallStaticByteMethodA__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   154
  probe CallStaticByteMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   155
  probe CallStaticByteMethod__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   156
  probe CallStaticByteMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   157
  probe CallStaticByteMethodV__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   158
  probe CallStaticCharMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   159
  probe CallStaticCharMethodA__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   160
  probe CallStaticCharMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   161
  probe CallStaticCharMethod__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   162
  probe CallStaticCharMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   163
  probe CallStaticCharMethodV__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   164
  probe CallStaticDoubleMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   165
  probe CallStaticDoubleMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   166
  probe CallStaticDoubleMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   167
  probe CallStaticDoubleMethod__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   168
  probe CallStaticDoubleMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   169
  probe CallStaticDoubleMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   170
  probe CallStaticFloatMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   171
  probe CallStaticFloatMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   172
  probe CallStaticFloatMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   173
  probe CallStaticFloatMethod__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   174
  probe CallStaticFloatMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   175
  probe CallStaticFloatMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   176
  probe CallStaticIntMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   177
  probe CallStaticIntMethodA__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   178
  probe CallStaticIntMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   179
  probe CallStaticIntMethod__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   180
  probe CallStaticIntMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   181
  probe CallStaticIntMethodV__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   182
  probe CallStaticLongMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   183
  probe CallStaticLongMethodA__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   184
  probe CallStaticLongMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   185
  probe CallStaticLongMethod__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   186
  probe CallStaticLongMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   187
  probe CallStaticLongMethodV__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   188
  probe CallStaticObjectMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   189
  probe CallStaticObjectMethodA__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   190
  probe CallStaticObjectMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   191
  probe CallStaticObjectMethod__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   192
  probe CallStaticObjectMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   193
  probe CallStaticObjectMethodV__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   194
  probe CallStaticShortMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   195
  probe CallStaticShortMethodA__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   196
  probe CallStaticShortMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   197
  probe CallStaticShortMethod__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   198
  probe CallStaticShortMethodV__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   199
  probe CallStaticShortMethodV__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   200
  probe CallStaticVoidMethodA__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   201
  probe CallStaticVoidMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   202
  probe CallStaticVoidMethod__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   203
  probe CallStaticVoidMethod__return(); 
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   204
  probe CallStaticVoidMethodV__entry(void*, void*, uintptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   205
  probe CallStaticVoidMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   206
  probe CallVoidMethodA__entry(void*, void*, uintptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   207
  probe CallVoidMethodA__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   208
  probe CallVoidMethod__entry(void*, void*, uintptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   209
  probe CallVoidMethod__return(); 
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   210
  probe CallVoidMethodV__entry(void*, void*, uintptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   211
  probe CallVoidMethodV__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   212
  probe CreateJavaVM__entry(void**, void**, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   213
  probe CreateJavaVM__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   214
  probe DefineClass__entry(void*, const char*, void*, char*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   215
  probe DefineClass__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   216
  probe DeleteGlobalRef__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   217
  probe DeleteGlobalRef__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   218
  probe DeleteLocalRef__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   219
  probe DeleteLocalRef__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   220
  probe DeleteWeakGlobalRef__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   221
  probe DeleteWeakGlobalRef__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   222
  probe DestroyJavaVM__entry(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   223
  probe DestroyJavaVM__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   224
  probe DetachCurrentThread__entry(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   225
  probe DetachCurrentThread__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   226
  probe EnsureLocalCapacity__entry(void*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   227
  probe EnsureLocalCapacity__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   228
  probe ExceptionCheck__entry(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   229
  probe ExceptionCheck__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   230
  probe ExceptionClear__entry(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   231
  probe ExceptionClear__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   232
  probe ExceptionDescribe__entry(void*);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   233
  probe ExceptionDescribe__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   234
  probe ExceptionOccurred__entry(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   235
  probe ExceptionOccurred__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   236
  probe FatalError__entry(void* env, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   237
  probe FindClass__entry(void*, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   238
  probe FindClass__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   239
  probe FromReflectedField__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   240
  probe FromReflectedField__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   241
  probe FromReflectedMethod__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   242
  probe FromReflectedMethod__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   243
  probe GetArrayLength__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   244
  probe GetArrayLength__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   245
  probe GetBooleanArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   246
  probe GetBooleanArrayElements__return(uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   247
  probe GetBooleanArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   248
  probe GetBooleanArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   249
  probe GetBooleanField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   250
  probe GetBooleanField__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   251
  probe GetByteArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   252
  probe GetByteArrayElements__return(char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   253
  probe GetByteArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   254
  probe GetByteArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   255
  probe GetByteField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   256
  probe GetByteField__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   257
  probe GetCharArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   258
  probe GetCharArrayElements__return(uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   259
  probe GetCharArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   260
  probe GetCharArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   261
  probe GetCharField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   262
  probe GetCharField__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   263
  probe GetCreatedJavaVMs__entry(void**, uintptr_t, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   264
  probe GetCreatedJavaVMs__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   265
  probe GetDefaultJavaVMInitArgs__entry(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   266
  probe GetDefaultJavaVMInitArgs__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   267
  probe GetDirectBufferAddress__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   268
  probe GetDirectBufferAddress__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   269
  probe GetDirectBufferCapacity__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   270
  probe GetDirectBufferCapacity__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   271
  probe GetDoubleArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   272
  probe GetDoubleArrayElements__return(double*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   273
  probe GetDoubleArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, double*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   274
  probe GetDoubleArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   275
  probe GetDoubleField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   276
  probe GetDoubleField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   277
  probe GetEnv__entry(void*, void*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   278
  probe GetEnv__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   279
  probe GetFieldID__entry(void*, void*, const char*, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   280
  probe GetFieldID__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   281
  probe GetFloatArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   282
  probe GetFloatArrayElements__return(float*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   283
  probe GetFloatArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, float*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   284
  probe GetFloatArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   285
  probe GetFloatField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   286
  probe GetFloatField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   287
  probe GetIntArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   288
  probe GetIntArrayElements__return(uint32_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   289
  probe GetIntArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uint32_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   290
  probe GetIntArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   291
  probe GetIntField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   292
  probe GetIntField__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   293
  probe GetJavaVM__entry(void*, void**);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   294
  probe GetJavaVM__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   295
  probe GetLongArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   296
  probe GetLongArrayElements__return(uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   297
  probe GetLongArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   298
  probe GetLongArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   299
  probe GetLongField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   300
  probe GetLongField__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   301
  probe GetMethodID__entry(void*, void*, const char*, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   302
  probe GetMethodID__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   303
  probe GetObjectArrayElement__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   304
  probe GetObjectArrayElement__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   305
  probe GetObjectClass__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   306
  probe GetObjectClass__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   307
  probe GetObjectField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   308
  probe GetObjectField__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   309
  probe GetObjectRefType__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   310
  probe GetObjectRefType__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   311
  probe GetPrimitiveArrayCritical__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   312
  probe GetPrimitiveArrayCritical__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   313
  probe GetShortArrayElements__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   314
  probe GetShortArrayElements__return(uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   315
  probe GetShortArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   316
  probe GetShortArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   317
  probe GetShortField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   318
  probe GetShortField__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   319
  probe GetStaticBooleanField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   320
  probe GetStaticBooleanField__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   321
  probe GetStaticByteField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   322
  probe GetStaticByteField__return(char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   323
  probe GetStaticCharField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   324
  probe GetStaticCharField__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   325
  probe GetStaticDoubleField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   326
  probe GetStaticDoubleField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   327
  probe GetStaticFieldID__entry(void*, void*, const char*, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   328
  probe GetStaticFieldID__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   329
  probe GetStaticFloatField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   330
  probe GetStaticFloatField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   331
  probe GetStaticIntField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   332
  probe GetStaticIntField__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   333
  probe GetStaticLongField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   334
  probe GetStaticLongField__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   335
  probe GetStaticMethodID__entry(void*, void*, const char*, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   336
  probe GetStaticMethodID__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   337
  probe GetStaticObjectField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   338
  probe GetStaticObjectField__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   339
  probe GetStaticShortField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   340
  probe GetStaticShortField__return(uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   341
  probe GetStringChars__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   342
  probe GetStringChars__return(const uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   343
  probe GetStringCritical__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   344
  probe GetStringCritical__return(const uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   345
  probe GetStringLength__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   346
  probe GetStringLength__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   347
  probe GetStringRegion__entry(void*, void*, uintptr_t, uintptr_t, uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   348
  probe GetStringRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   349
  probe GetStringUTFChars__entry(void*, void*, uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   350
  probe GetStringUTFChars__return(const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   351
  probe GetStringUTFLength__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   352
  probe GetStringUTFLength__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   353
  probe GetStringUTFRegion__entry(void*, void*, uintptr_t, uintptr_t, char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   354
  probe GetStringUTFRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   355
  probe GetSuperclass__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   356
  probe GetSuperclass__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   357
  probe GetVersion__entry(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   358
  probe GetVersion__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   359
  probe IsAssignableFrom__entry(void*, void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   360
  probe IsAssignableFrom__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   361
  probe IsInstanceOf__entry(void*, void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   362
  probe IsInstanceOf__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   363
  probe IsSameObject__entry(void*, void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   364
  probe IsSameObject__return(uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   365
  probe MonitorEnter__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   366
  probe MonitorEnter__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   367
  probe MonitorExit__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   368
  probe MonitorExit__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   369
  probe NewBooleanArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   370
  probe NewBooleanArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   371
  probe NewByteArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   372
  probe NewByteArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   373
  probe NewCharArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   374
  probe NewCharArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   375
  probe NewDirectByteBuffer__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   376
  probe NewDirectByteBuffer__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   377
  probe NewDoubleArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   378
  probe NewDoubleArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   379
  probe NewFloatArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   380
  probe NewFloatArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   381
  probe NewGlobalRef__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   382
  probe NewGlobalRef__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   383
  probe NewIntArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   384
  probe NewIntArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   385
  probe NewLocalRef__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   386
  probe NewLocalRef__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   387
  probe NewLongArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   388
  probe NewLongArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   389
  probe NewObjectA__entry(void*, void*, uintptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   390
  probe NewObjectA__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   391
  probe NewObjectArray__entry(void*, uintptr_t, void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   392
  probe NewObjectArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   393
  probe NewObject__entry(void*, void*, uintptr_t); 
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   394
  probe NewObject__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   395
  probe NewObjectV__entry(void*, void*, uintptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   396
  probe NewObjectV__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   397
  probe NewShortArray__entry(void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   398
  probe NewShortArray__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   399
  probe NewString__entry(void*, const uint16_t*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   400
  probe NewString__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   401
  probe NewStringUTF__entry(void*, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   402
  probe NewStringUTF__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   403
  probe NewWeakGlobalRef__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   404
  probe NewWeakGlobalRef__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   405
  probe PopLocalFrame__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   406
  probe PopLocalFrame__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   407
  probe PushLocalFrame__entry(void*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   408
  probe PushLocalFrame__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   409
  probe RegisterNatives__entry(void*, void*, const void*, uint32_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   410
  probe RegisterNatives__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   411
  probe ReleaseBooleanArrayElements__entry(void*, void*, uintptr_t*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   412
  probe ReleaseBooleanArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   413
  probe ReleaseByteArrayElements__entry(void*, void*, char*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   414
  probe ReleaseByteArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   415
  probe ReleaseCharArrayElements__entry(void*, void*, uint16_t*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   416
  probe ReleaseCharArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   417
  probe ReleaseDoubleArrayElements__entry(void*, void*, double*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   418
  probe ReleaseDoubleArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   419
  probe ReleaseFloatArrayElements__entry(void*, void*, float*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   420
  probe ReleaseFloatArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   421
  probe ReleaseIntArrayElements__entry(void*, void*, uint32_t*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   422
  probe ReleaseIntArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   423
  probe ReleaseLongArrayElements__entry(void*, void*, uintptr_t*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   424
  probe ReleaseLongArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   425
  probe ReleasePrimitiveArrayCritical__entry(void*, void*, void*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   426
  probe ReleasePrimitiveArrayCritical__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   427
  probe ReleaseShortArrayElements__entry(void*, void*, uint16_t*, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   428
  probe ReleaseShortArrayElements__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   429
  probe ReleaseStringChars__entry(void*, void*, const uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   430
  probe ReleaseStringChars__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   431
  probe ReleaseStringCritical__entry(void*, void*, const uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   432
  probe ReleaseStringCritical__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   433
  probe ReleaseStringUTFChars__entry(void*, void*, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   434
  probe ReleaseStringUTFChars__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   435
  probe SetBooleanArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   436
  probe SetBooleanArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   437
  probe SetBooleanField__entry(void*, void*, uintptr_t, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   438
  probe SetBooleanField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   439
  probe SetByteArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const char*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   440
  probe SetByteArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   441
  probe SetByteField__entry(void*, void*, uintptr_t, char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   442
  probe SetByteField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   443
  probe SetCharArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   444
  probe SetCharArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   445
  probe SetCharField__entry(void*, void*, uintptr_t, uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   446
  probe SetCharField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   447
  probe SetDoubleArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const double*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   448
  probe SetDoubleArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   449
  probe SetDoubleField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   450
  probe SetDoubleField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   451
  probe SetFloatArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const float*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   452
  probe SetFloatArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   453
  probe SetFloatField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   454
  probe SetFloatField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   455
  probe SetIntArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uint32_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   456
  probe SetIntArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   457
  probe SetIntField__entry(void*, void*, uintptr_t, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   458
  probe SetIntField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   459
  probe SetLongArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uintptr_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   460
  probe SetLongArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   461
  probe SetLongField__entry(void*, void*, uintptr_t, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   462
  probe SetLongField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   463
  probe SetObjectArrayElement__entry(void*, void*, uintptr_t, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   464
  probe SetObjectArrayElement__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   465
  probe SetObjectField__entry(void*, void*, uintptr_t, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   466
  probe SetObjectField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   467
  probe SetShortArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uint16_t*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   468
  probe SetShortArrayRegion__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   469
  probe SetShortField__entry(void*, void*, uintptr_t, uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   470
  probe SetShortField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   471
  probe SetStaticBooleanField__entry(void*, void*, uintptr_t, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   472
  probe SetStaticBooleanField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   473
  probe SetStaticByteField__entry(void*, void*, uintptr_t, char);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   474
  probe SetStaticByteField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   475
  probe SetStaticCharField__entry(void*, void*, uintptr_t, uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   476
  probe SetStaticCharField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   477
  probe SetStaticDoubleField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   478
  probe SetStaticDoubleField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   479
  probe SetStaticFloatField__entry(void*, void*, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   480
  probe SetStaticFloatField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   481
  probe SetStaticIntField__entry(void*, void*, uintptr_t, uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   482
  probe SetStaticIntField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   483
  probe SetStaticLongField__entry(void*, void*, uintptr_t, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   484
  probe SetStaticLongField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   485
  probe SetStaticObjectField__entry(void*, void*, uintptr_t, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   486
  probe SetStaticObjectField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   487
  probe SetStaticShortField__entry(void*, void*, uintptr_t, uint16_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   488
  probe SetStaticShortField__return();
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   489
  probe Throw__entry(void*, void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   490
  probe Throw__return(intptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   491
  probe ThrowNew__entry(void*, void*, const char*);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   492
  probe ThrowNew__return(intptr_t);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   493
  probe ToReflectedField__entry(void*, void*, uintptr_t, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   494
  probe ToReflectedField__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   495
  probe ToReflectedMethod__entry(void*, void*, uintptr_t, uintptr_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   496
  probe ToReflectedMethod__return(void*);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   497
  probe UnregisterNatives__entry(void*, void*);  
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   498
  probe UnregisterNatives__return(uint32_t);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   499
};
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   500
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   501
#pragma D attributes Standard/Standard/Common provider hotspot_jni provider
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   502
#pragma D attributes Private/Private/Unknown provider hotspot_jni module
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   503
#pragma D attributes Private/Private/Unknown provider hotspot_jni function
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   504
#pragma D attributes Standard/Standard/Common provider hotspot_jni name
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   505
#pragma D attributes Evolving/Evolving/Common provider hotspot_jni args
91935236600e 7098194: integrate macosx-port changes
dcubed
parents:
diff changeset
   506