Lines Matching full:ra
36 static uint64_t lookup_bte64(CPUX86State *env, uint64_t base, uintptr_t ra) in lookup_bte64() argument
47 bt = cpu_ldq_data_ra(env, bde, ra); in lookup_bte64()
50 raise_exception_ra(env, EXCP05_BOUND, ra); in lookup_bte64()
56 static uint32_t lookup_bte32(CPUX86State *env, uint32_t base, uintptr_t ra) in lookup_bte32() argument
67 bt = cpu_ldl_data_ra(env, bde, ra); in lookup_bte32()
70 raise_exception_ra(env, EXCP05_BOUND, ra); in lookup_bte32()
78 uintptr_t ra = GETPC(); in helper_bndldx64() local
81 bte = lookup_bte64(env, base, ra); in helper_bndldx64()
82 lb = cpu_ldq_data_ra(env, bte, ra); in helper_bndldx64()
83 ub = cpu_ldq_data_ra(env, bte + 8, ra); in helper_bndldx64()
84 pt = cpu_ldq_data_ra(env, bte + 16, ra); in helper_bndldx64()
95 uintptr_t ra = GETPC(); in helper_bndldx32() local
98 bte = lookup_bte32(env, base, ra); in helper_bndldx32()
99 lb = cpu_ldl_data_ra(env, bte, ra); in helper_bndldx32()
100 ub = cpu_ldl_data_ra(env, bte + 4, ra); in helper_bndldx32()
101 pt = cpu_ldl_data_ra(env, bte + 8, ra); in helper_bndldx32()
112 uintptr_t ra = GETPC(); in helper_bndstx64() local
115 bte = lookup_bte64(env, base, ra); in helper_bndstx64()
116 cpu_stq_data_ra(env, bte, lb, ra); in helper_bndstx64()
117 cpu_stq_data_ra(env, bte + 8, ub, ra); in helper_bndstx64()
118 cpu_stq_data_ra(env, bte + 16, ptr, ra); in helper_bndstx64()
124 uintptr_t ra = GETPC(); in helper_bndstx32() local
127 bte = lookup_bte32(env, base, ra); in helper_bndstx32()
128 cpu_stl_data_ra(env, bte, lb, ra); in helper_bndstx32()
129 cpu_stl_data_ra(env, bte + 4, ub, ra); in helper_bndstx32()
130 cpu_stl_data_ra(env, bte + 8, ptr, ra); in helper_bndstx32()