unicorn/qemu/unicorn_common.h

90 lines
2.5 KiB
C
Raw Normal View History

2015-08-21 10:04:50 +03:00
#ifndef UNICORN_COMMON_H_
#define UNICORN_COMMON_H_
#include "tcg.h"
// This header define common patterns/codes that will be included in all arch-sepcific
// codes for unicorns purposes.
// return true on success, false on failure
static inline bool cpu_physical_mem_read(AddressSpace *as, hwaddr addr,
uint8_t *buf, int len)
{
return !cpu_physical_memory_rw(as, addr, (void *)buf, len, 0);
}
static inline bool cpu_physical_mem_write(AddressSpace *as, hwaddr addr,
const uint8_t *buf, int len)
2015-08-21 10:04:50 +03:00
{
return !cpu_physical_memory_rw(as, addr, (void *)buf, len, 1);
}
void tb_cleanup(struct uc_struct *uc);
void free_code_gen_buffer(struct uc_struct *uc);
2015-08-21 10:04:50 +03:00
/** Freeing common resources */
static void release_common(void *t)
{
TCGContext *s = (TCGContext *)t;
2016-02-01 07:05:46 +03:00
#if TCG_TARGET_REG_BITS == 32
int i;
#endif
2015-08-21 10:04:50 +03:00
// Clean TCG.
TCGOpDef* def = &s->tcg_op_defs[0];
free(def->args_ct);
free(def->sorted_args);
free(s->tcg_op_defs);
2016-02-01 01:22:20 +03:00
2015-08-21 10:04:50 +03:00
TCGPool *po, *to;
for (po = s->pool_first; po; po = to) {
to = po->next;
free(po);
2015-08-21 10:04:50 +03:00
}
tcg_pool_reset(s);
g_hash_table_destroy(s->helpers);
// TODO(danghvu): these function is not available outside qemu
// so we keep them here instead of outside uc_close.
phys_mem_clean(s->uc);
address_space_destroy(&(s->uc->as));
memory_free(s->uc);
2016-07-08 20:49:43 +03:00
tb_cleanup(s->uc);
free_code_gen_buffer(s->uc);
#if TCG_TARGET_REG_BITS == 32
2016-02-01 07:05:46 +03:00
for(i = 0; i < s->nb_globals; i++) {
TCGTemp *ts = &s->temps[i];
2016-01-10 18:10:00 +03:00
if (ts->base_type == TCG_TYPE_I64) {
if (ts->name && ((strcmp(ts->name+(strlen(ts->name)-2), "_0") == 0) ||
(strcmp(ts->name+(strlen(ts->name)-2), "_1") == 0))) {
free((void *)ts->name);
}
}
}
#endif
2015-08-21 10:04:50 +03:00
}
static inline void uc_common_init(struct uc_struct* uc)
{
memory_register_types(uc);
uc->write_mem = cpu_physical_mem_write;
uc->read_mem = cpu_physical_mem_read;
uc->tcg_enabled = tcg_enabled;
uc->tcg_exec_init = tcg_exec_init;
uc->cpu_exec_init_all = cpu_exec_init_all;
uc->vm_start = vm_start;
uc->memory_map = memory_map;
uc->memory_map_ptr = memory_map_ptr;
uc->memory_unmap = memory_unmap;
uc->readonly_mem = memory_region_set_readonly;
2015-08-21 10:04:50 +03:00
uc->target_page_size = TARGET_PAGE_SIZE;
2015-09-03 13:16:49 +03:00
uc->target_page_align = TARGET_PAGE_SIZE - 1;
2015-08-21 10:04:50 +03:00
if (!uc->release)
uc->release = release_common;
}
#endif