Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3e3e0d579ae1f168d9e877798ae37d5c80921a5f (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2011 Wind River Systems, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v1.0 which accompany this distribution.
 * The Eclipse Public License is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 * You may elect to redistribute this code under either of these licenses.
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/


#ifndef D_vm
#define D_vm

#include <tcf/config.h>

#if ENABLE_DebugContext

#include <tcf/framework/context.h>

typedef struct VMState {
    /* Evaluation context */
    Context * ctx;
    int stack_frame;
    int big_endian;
    size_t addr_size;
    uint64_t object_address;
    RegisterIdScope reg_id_scope;

    /* Code to execute */
    uint8_t * code;
    size_t code_pos;
    size_t code_len;

    /* VM callback */
    void (*client_op)(uint8_t op);

    /* Result */
    RegisterDefinition * reg;
    uint32_t piece_offs;
    uint32_t piece_bits;

    /* Stack */
    unsigned stk_pos;
    unsigned stk_max;
    uint64_t * stk;
} VMState;

extern int evaluate_vm_expression(VMState * state);

#endif /* ENABLE_DebugContext */

#endif /* D_vm */

Back to the top