/external/qemu/target-i386/ |
D | translate.c | 124 int mem_index; /* select memory access functions */ member 588 int mem_index = (idx >> 2) - 1; in gen_op_lds_T0_A0() local 591 tcg_gen_qemu_ld8s(cpu_T[0], cpu_A0, mem_index); in gen_op_lds_T0_A0() 594 tcg_gen_qemu_ld16s(cpu_T[0], cpu_A0, mem_index); in gen_op_lds_T0_A0() 598 tcg_gen_qemu_ld32s(cpu_T[0], cpu_A0, mem_index); in gen_op_lds_T0_A0() 605 int mem_index = (idx >> 2) - 1; in gen_op_ld_v() local 608 tcg_gen_qemu_ld8u(t0, a0, mem_index); in gen_op_ld_v() 611 tcg_gen_qemu_ld16u(t0, a0, mem_index); in gen_op_ld_v() 614 tcg_gen_qemu_ld32u(t0, a0, mem_index); in gen_op_ld_v() 620 tcg_gen_qemu_ld64(t0, a0, mem_index); in gen_op_ld_v() [all …]
|
/external/qemu/tcg/i386/ |
D | tcg-target.c | 1080 int mem_index, TCGMemOp s_bits, in tcg_out_tlb_load() argument 1112 offsetof(CPUArchState, tlb_table[mem_index][0]) in tcg_out_tlb_load() 1155 int mem_index, uint8_t *raddr, in add_qemu_ldst_label() argument 1166 label->mem_index = mem_index; in add_qemu_ldst_label() 1203 tcg_out_sti(s, TCG_TYPE_I32, TCG_REG_ESP, ofs, l->mem_index); in tcg_out_qemu_ld_slow_path() 1211 l->mem_index); in tcg_out_qemu_ld_slow_path() 1295 tcg_out_sti(s, TCG_TYPE_I32, TCG_REG_ESP, ofs, l->mem_index); in tcg_out_qemu_st_slow_path() 1307 l->mem_index); in tcg_out_qemu_st_slow_path() 1431 int mem_index; in tcg_out_qemu_ld() local 1443 mem_index = *args++; in tcg_out_qemu_ld() [all …]
|
/external/qemu/tcg/ |
D | tcg-op.h | 2656 static inline void tcg_gen_qemu_ld8u(TCGv ret, TCGv addr, int mem_index) in tcg_gen_qemu_ld8u() argument 2658 tcg_gen_qemu_ld_tl(ret, addr, mem_index, MO_UB); in tcg_gen_qemu_ld8u() 2661 static inline void tcg_gen_qemu_ld8s(TCGv ret, TCGv addr, int mem_index) in tcg_gen_qemu_ld8s() argument 2663 tcg_gen_qemu_ld_tl(ret, addr, mem_index, MO_SB); in tcg_gen_qemu_ld8s() 2666 static inline void tcg_gen_qemu_ld16u(TCGv ret, TCGv addr, int mem_index) in tcg_gen_qemu_ld16u() argument 2668 tcg_gen_qemu_ld_tl(ret, addr, mem_index, MO_TEUW); in tcg_gen_qemu_ld16u() 2671 static inline void tcg_gen_qemu_ld16s(TCGv ret, TCGv addr, int mem_index) in tcg_gen_qemu_ld16s() argument 2673 tcg_gen_qemu_ld_tl(ret, addr, mem_index, MO_TESW); in tcg_gen_qemu_ld16s() 2676 static inline void tcg_gen_qemu_ld32u(TCGv ret, TCGv addr, int mem_index) in tcg_gen_qemu_ld32u() argument 2678 tcg_gen_qemu_ld_tl(ret, addr, mem_index, MO_TEUL); in tcg_gen_qemu_ld32u() [all …]
|
D | tcg-be-ldst.h | 33 int mem_index; /* soft MMU memory index */ member
|
/external/libnfc-nxp/src/ |
D | phHciNfc_Sequence.c | 1289 static uint8_t mem_index = 0; in phHciNfc_Initialise_Sequence() local 1291 (NFC_ADDRESS_HAL_CONF + mem_index), in phHciNfc_Initialise_Sequence() 1292 (psHciContext->hal_mem_info + mem_index)); in phHciNfc_Initialise_Sequence() 1295 mem_index++; in phHciNfc_Initialise_Sequence() 1296 if (NXP_HAL_MEM_INFO_SIZE <= mem_index ) in phHciNfc_Initialise_Sequence() 1302 mem_index = 0; in phHciNfc_Initialise_Sequence()
|
D | phFriNfc_TopazDynamicMap.c | 4216 uint8_t mem_index = 0; in phFriNfc_Tpz_H_GetMemBytesInfo() local 4220 page_address = (uint8_t)(p_mem_info[mem_index] >> NIBBLE_SIZE); in phFriNfc_Tpz_H_GetMemBytesInfo() 4221 bytes_offset = (uint8_t)(p_mem_info[mem_index] & TOPAZ_NIBBLE_MASK); in phFriNfc_Tpz_H_GetMemBytesInfo() 4223 mem_index = (mem_index + 1); in phFriNfc_Tpz_H_GetMemBytesInfo() 4224 ps_memtlv_info->Size = (uint16_t)p_mem_info[mem_index]; in phFriNfc_Tpz_H_GetMemBytesInfo() 4226 mem_index = (mem_index + 1); in phFriNfc_Tpz_H_GetMemBytesInfo() 4228 (p_mem_info[mem_index] & TOPAZ_NIBBLE_MASK); in phFriNfc_Tpz_H_GetMemBytesInfo()
|