Home
last modified time | relevance | path

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

/openbmc/qemu/target/m68k/
H A Dtranslate.c303 static inline TCGv gen_load(DisasContext *s, int opsize, TCGv addr, in gen_load() argument
308 switch (opsize) { in gen_load()
313 opsize | (sign ? MO_SIGN : 0) | MO_TE); in gen_load()
322 static inline void gen_store(DisasContext *s, int opsize, TCGv addr, TCGv val, in gen_store() argument
325 switch (opsize) { in gen_store()
329 tcg_gen_qemu_st_tl(val, addr, index, opsize | MO_TE); in gen_store()
346 static TCGv gen_ldst(DisasContext *s, int opsize, TCGv addr, TCGv val, in gen_ldst() argument
350 gen_store(s, opsize, addr, val, index); in gen_ldst()
353 return gen_load(s, opsize, addr, what == EA_LOADS, index); in gen_ldst()
518 static inline void gen_ext(TCGv res, TCGv val, int opsize, int sign) in gen_ext() argument
[all …]