aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.jvmti/interp/natgetstacktrace.cc
blob: cfd7c48c063be696b5ec05e0ca4d2a874be777c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include <jni.h>

#include <jvmti.h>
#include <stdio.h>
#include <stdlib.h>

#include <unistd.h>

#include "getstacktrace.h"

void
printStackTrace (jvmtiFrameInfo *frames, jint frame_cnt)
{
  printf ("Thread has %d frames\n", static_cast<int> (frame_cnt));

  for (int i = 0; i < frame_cnt; i++)
    {
      jmethodID method = frames[i].method;
      jlocation location = frames[i].location;

      if (location == -1)
        {
          printf ("Frame %d is native\n", i);
        }
      else
        {
          printf ("Frame %d is interpreted\n", i);
        }
    }
}


JNIEXPORT void JNICALL Java_getstacktrace_natPlaceholder (JNIEnv *env, jobject obj)
{
  jclass klass = env->GetObjectClass (obj);
  jfieldID done_id = env->GetFieldID (klass, "done", "Z");
  jfieldID num_frames_id = env->GetFieldID (klass, "num_frames", "I");
  jfieldID thread_num_id = env->GetFieldID (klass, "thread_num", "I");

  // num_frames--
  jint n_frames = env->GetIntField (obj, num_frames_id);
  n_frames--;
  env->SetIntField (obj, num_frames_id, n_frames);

  jint t_num = env->GetIntField (obj, thread_num_id);

  if (n_frames <= 1)
    {
      if (t_num % 2 == 1)
        {
          jmethodID natRunner_id = env->GetMethodID (klass, "natRunner", "()V");
          env->CallVoidMethod (obj, natRunner_id);
        }
      else
        {
          jmethodID runner_id = env->GetMethodID (klass, "runner", "()V");
          env->CallVoidMethod (obj, runner_id);
        }
    }
  else
    {
      if (t_num % 2 == 0)
        {
          jmethodID natPlaceholder_id = env->GetMethodID (klass,
                                        "natPlaceholder",
                                        "()V");
          env->CallVoidMethod (obj, natPlaceholder_id);
        }
      else
        {
          jmethodID placeholder_id = env->GetMethodID (klass, "placeholder",
                                     "()V");
          env->CallVoidMethod (obj, placeholder_id);
        }
    }
}

JNIEXPORT void JNICALL Java_getstacktrace_natRunner (JNIEnv *env, jobject obj)
{
  jclass klass = env->GetObjectClass (obj);
  jfieldID done_id = env->GetFieldID (klass, "done", "Z");


  jboolean done;
  done = true;
  env->SetBooleanField (obj, done_id, done);

  do
    {
      done = env->GetBooleanField (obj, done_id);
      if (done == false)
        break;
      usleep (40);
    }
  while (done != false);
}

JNIEXPORT jint JNICALL Java_getstacktrace_do_1getstacktrace_1tests
(JNIEnv *env, jclass klass, jobjectArray thr_arr)
{
  JavaVM *vm;
  jint err = env->GetJavaVM (&vm);
  if (err < 0)
    {
      fprintf (stderr, "error getting VM\n");
      exit (1);
    }

  jvmtiEnv *jvmti = NULL;
  vm->GetEnv ((void **) &jvmti, JVMTI_VERSION_1_0);

  if (jvmti == NULL)
    {
      fprintf (stderr, "error getting jvmti environment\n");
      exit (1);
    }

  jint frame_cnt;
  jvmtiFrameInfo frames[30];

  jvmtiError jerr;
  jthread thr;

  jsize num_threads = env->GetArrayLength (thr_arr);

  for (int i = 0; i < num_threads; i++)
    {
      thr = reinterpret_cast<jthread>
            (env->GetObjectArrayElement (thr_arr, static_cast<jsize> (i)));
      fflush (stdout);
      jerr = jvmti->GetStackTrace (thr, 0, 30, frames, &frame_cnt);
      if (jerr != JVMTI_ERROR_NONE)
        {
          char *error_name;
          jvmti->GetErrorName (jerr, &error_name);
          fprintf (stderr, "JVMTI Error: %s\n", error_name);
          jvmti->Deallocate (reinterpret_cast<unsigned char *> (error_name));
        }
      else
        {
          printStackTrace (frames, frame_cnt);
        }
    }
}