Home
last modified time | relevance | path

Searched refs:MemCopyInfo (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/tcg/
H A Doptimize.c34 typedef struct MemCopyInfo { struct
36 QSIMPLEQ_ENTRY (MemCopyInfo) next; argument
39 } MemCopyInfo; typedef
44 QSIMPLEQ_HEAD(, MemCopyInfo) mem_copy;
56 QSIMPLEQ_HEAD(, MemCopyInfo) mem_free;
156 static MemCopyInfo *mem_copy_first(OptContext *ctx, intptr_t s, intptr_t l) in mem_copy_first()
159 return r ? container_of(r, MemCopyInfo, itree) : NULL; in mem_copy_first()
162 static MemCopyInfo *mem_copy_next(MemCopyInfo *mem, intptr_t s, intptr_t l) in mem_copy_next()
165 return r ? container_of(r, MemCopyInfo, itree) : NULL; in mem_copy_next()
168 static void remove_mem_copy(OptContext *ctx, MemCopyInfo *mc) in remove_mem_copy()
[all …]