aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/classpath/jdwp/natVMFrame.cc
blob: 6f2d523323300c99e6578544009d2d05ba5742eb (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
// natFrame.cc -- native support for VMFrame.java

/* Copyright (C) 2006, 2007 Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */

#include <config.h>
#include <gcj/cni.h>
#include <jvm.h>
#include <jvmti.h>
#include "jvmti-int.h"

#include <java-interp.h>

#include <gnu/classpath/jdwp/VMFrame.h>
#include <gnu/classpath/jdwp/VMVirtualMachine.h>
#include <gnu/classpath/jdwp/exception/InvalidFrameException.h>
#include <gnu/classpath/jdwp/exception/InvalidSlotException.h>
#include <gnu/classpath/jdwp/exception/InvalidThreadException.h>
#include <gnu/classpath/jdwp/exception/JdwpInternalErrorException.h>
#include <gnu/classpath/jdwp/exception/TypeMismatchException.h>
#include <gnu/classpath/jdwp/util/NullObject.h>
#include <gnu/classpath/jdwp/value/ArrayValue.h>
#include <gnu/classpath/jdwp/value/ByteValue.h>
#include <gnu/classpath/jdwp/value/BooleanValue.h>
#include <gnu/classpath/jdwp/value/CharValue.h>
#include <gnu/classpath/jdwp/value/DoubleValue.h>
#include <gnu/classpath/jdwp/value/FloatValue.h>
#include <gnu/classpath/jdwp/value/IntValue.h>
#include <gnu/classpath/jdwp/value/LongValue.h>
#include <gnu/classpath/jdwp/value/ObjectValue.h>
#include <gnu/classpath/jdwp/value/ShortValue.h>
#include <gnu/classpath/jdwp/value/Value.h>
#include <gnu/classpath/jdwp/value/VoidValue.h>

using namespace java::lang;
using namespace gnu::classpath::jdwp;
using namespace gnu::classpath::jdwp::exception;


// All the jvmti GetLocalXX and SetLocalXX functions return the same potential
// errors, so this function handles them all and throws the appropriate JDWP
// exception.
static void
checkJVMTIError (jvmtiEnv *env, jthread thread, jvmtiError jerr, jint slot,
                 jbyte sig)
{
  if (jerr != JVMTI_ERROR_NONE)
    {
      char *error;
      env->GetErrorName (jerr, &error);
      String *msg = reinterpret_cast<String *> (JvNewStringUTF (error));
      env->Deallocate ((unsigned char *) error);
      
      if (jerr == JVMTI_ERROR_INVALID_THREAD)
        throw new InvalidThreadException ((jlong) thread);
      else if (jerr == JVMTI_ERROR_NO_MORE_FRAMES)
        throw new InvalidFrameException (msg);
      else if (jerr == JVMTI_ERROR_INVALID_SLOT)
        throw new InvalidSlotException (slot);
      else if (jerr == JVMTI_ERROR_TYPE_MISMATCH)
        throw new TypeMismatchException (sig);
      else
        throw new JdwpInternalErrorException (msg);
    }
}


static jobject
getObjectJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, jbyte sig)
{
  jobject value;
  jvmtiError jerr = env->GetLocalObject (thread, depth, slot, &value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
  
  return value;
}

static void
setObjectJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth,
                jbyte sig, jobject value)
{
  if (value->getClass ()->isAssignableFrom (&util::NullObject::class$))
    value = NULL;
	
  jvmtiError jerr = env->SetLocalObject (thread, depth, slot, value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
}

static jint
getIntJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, jbyte sig)
{
  jint value;
  jvmtiError jerr = env->GetLocalInt (thread, depth, slot, &value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
  return value;
}

static void
setIntJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, jbyte sig,
             jint value)
{
  jvmtiError jerr = env->SetLocalInt (thread, depth, slot, value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
}

static jlong
getLongJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, jbyte sig)
{
  jlong value;
  jvmtiError jerr = env->GetLocalLong (thread, depth, slot, &value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
  
  return value;
}

static void
setLongJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, jbyte sig,
              jlong value)
{
  jvmtiError jerr = env->SetLocalLong (thread, depth, slot, value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
}

static jfloat
getFloatJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, jbyte sig)
{
  jfloat value;
  jvmtiError jerr = env->GetLocalFloat (thread, depth, slot, &value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
  
  return value;
}

static void
setFloatJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, jbyte sig,
               jfloat value)
{
  jvmtiError jerr = env->SetLocalFloat (thread, depth, slot, value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
}

static jdouble
getDoubleJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth,
                jbyte sig)
{
  jdouble value;
  jvmtiError jerr = env->GetLocalDouble (thread, depth, slot, &value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
  
  return value;
}

static void
setDoubleJVMTI (jvmtiEnv *env, jthread thread, jint slot, jint depth, 
                jbyte sig, jdouble value)
{
  jvmtiError jerr = env->SetLocalDouble (thread, depth, slot, value);
  
  checkJVMTIError (env, thread, jerr, slot, sig);
}

// This is necessary since JVMTI requires a stack depth as a parameter in all
// its local variable functions.  Since JDWP needs frameids, we have to run
// through the call stack to translate these ids into the parameters JVMTI
// wants.
static jint
getFrameDepth (_Jv_Frame *frame)
{
  jint depth = 0;
  _Jv_Frame *top_frame = (_Jv_Frame *) frame->thread->frame;
  jint num_frames = VMVirtualMachine::getFrameCount (frame->thread);
  
  while (frame != top_frame)
    {
      top_frame = top_frame->next;
      depth++;
      
      if (depth >= num_frames || top_frame == NULL)
        throw new InvalidFrameException ((jlong) frame);
    }
  
  return depth;
}

using namespace gnu::classpath::jdwp::value;

Value *
gnu::classpath::jdwp::VMFrame::getValue (jint slot, jbyte sig)
{
  _Jv_Frame *frame = reinterpret_cast<_Jv_Frame *> (id);
  jint depth = getFrameDepth (frame);
  jthread thread = reinterpret_cast<jthread> (frame->thread);
  jvmtiEnv *env = _Jv_GetJDWP_JVMTIEnv ();
  
  Value *value = NULL;

  switch (sig)
    {
    case 'B':
      value = new ByteValue ((jbyte) getIntJVMTI (env, thread, slot, depth, 
                                                  sig));
      break;
    case 'Z':
      value = new BooleanValue ((jboolean) getIntJVMTI (env, thread, slot,
                                                        depth, sig));
      break;
    case 'C':
      value = new CharValue ((jchar) getIntJVMTI (env, thread, slot, depth,
                                                  sig));
      break;
    case 'S':
      value = new ShortValue ((jshort) getIntJVMTI (env, thread, slot, depth,
                                                    sig));
      break;
    case 'I':
      value = new IntValue (getIntJVMTI (env, thread, slot, depth, sig));
      break;
    case 'J':
      value = new LongValue (getLongJVMTI (env, thread, slot, depth, sig));
      break;
    case 'F':
      value = new FloatValue (getFloatJVMTI (env, thread, slot, depth, sig));
      break;
    case 'D':
      value = new DoubleValue (getDoubleJVMTI (env, thread, slot, depth, sig));
      break;
    case 'V':
      value = new VoidValue ();
      break;
    case '[':
      {
        Object *obj = getObjectJVMTI (env, thread, slot, depth, sig);
        if (obj == NULL)
          obj = new util::NullObject ();
        value = new ArrayValue (obj);
        break;
      }
    default:
      Object *obj = getObjectJVMTI (env, thread, slot, depth, sig);
      if (obj == NULL)
        obj = new util::NullObject ();
      value = new ObjectValue (obj);
      break;
    }
  
  return value;
}

void
gnu::classpath::jdwp::VMFrame::setValue (jint slot, Value* value)
{	
  jbyte sig = value->getTag ();
  
  _Jv_Frame *frame = reinterpret_cast<_Jv_Frame *> (id);
  jint depth = getFrameDepth (frame);
  jthread thread = reinterpret_cast<jthread> (frame->thread);
  jvmtiEnv *env = _Jv_GetJDWP_JVMTIEnv ();
  
  switch (sig)
    {
    case 'B':
      {
        ByteValue *val = reinterpret_cast<ByteValue *> (value);
        setIntJVMTI (env, thread, slot, depth, sig, (jint) val->getValue ());
        break;
      }
    case 'Z':
      {
        BooleanValue *val = reinterpret_cast<BooleanValue *> (value);
        setIntJVMTI (env, thread, slot, depth, sig, (jint) val->getValue ());
        break;
      }
    case 'C':
      {
        CharValue *val = reinterpret_cast<CharValue *> (value);
        setIntJVMTI (env, thread, slot, depth, sig, (jint) val->getValue ());
        break;
      }
    case 'S':
      {
        ShortValue *val = reinterpret_cast<ShortValue *> (value);
        setIntJVMTI (env, thread, slot, depth, sig, (jint) val->getValue ());
        break;
      }
    case 'I':
      {
        IntValue *val = reinterpret_cast<IntValue *> (value);
        setIntJVMTI (env, thread, slot, depth, sig, val->getValue ());
        break;
      }
    case 'J':
      {
        LongValue *val = reinterpret_cast<LongValue *> (value);
        setLongJVMTI (env, thread, slot, depth, sig, val->getValue ());
        break;
      }
    case 'F':
      {
        FloatValue *val = reinterpret_cast<FloatValue *> (value);
        setFloatJVMTI (env, thread, slot, depth, sig, val->getValue ());
        break;
      }
    case 'D':
      {
        DoubleValue *val = reinterpret_cast<DoubleValue *> (value);
        setDoubleJVMTI (env, thread, slot, depth, sig, val->getValue ());
        break;
      }
    case 'V':
      break;
    case '[':
      {
        ArrayValue *val = reinterpret_cast<ArrayValue *> (value);
        setObjectJVMTI (env, thread, slot, depth, sig, val->getObject ());
        break;
      }
    default:
      {
        ObjectValue *val = reinterpret_cast<ObjectValue *> (value);
        setObjectJVMTI (env, thread, slot, depth, sig, val->getObject());
        break;
      }
    }
}