tb-context.h 1.2 KB
Newer Older
P
Paolo Bonzini 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Internal structs that QEMU exports to TCG
 *
 *  Copyright (c) 2003 Fabrice Bellard
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */

20 21
#ifndef QEMU_TB_CONTEXT_H
#define QEMU_TB_CONTEXT_H
P
Paolo Bonzini 已提交
22 23

#include "qemu/thread.h"
24
#include "qemu/qht.h"
P
Paolo Bonzini 已提交
25

26 27
#define CODE_GEN_HTABLE_BITS     15
#define CODE_GEN_HTABLE_SIZE     (1 << CODE_GEN_HTABLE_BITS)
P
Paolo Bonzini 已提交
28 29 30 31 32 33

typedef struct TranslationBlock TranslationBlock;
typedef struct TBContext TBContext;

struct TBContext {

34
    struct qht htable;
P
Paolo Bonzini 已提交
35 36

    /* statistics */
37
    unsigned tb_flush_count;
P
Paolo Bonzini 已提交
38 39
};

40 41
extern TBContext tb_ctx;

P
Paolo Bonzini 已提交
42
#endif