Lines Matching refs:Dbg
116 # define read_2ubyte_unaligned(Dbg, Addr) \ argument
117 (unlikely ((Dbg)->other_byte_order) \
120 # define read_2sbyte_unaligned(Dbg, Addr) \ argument
121 (unlikely ((Dbg)->other_byte_order) \
127 # define read_4ubyte_unaligned(Dbg, Addr) \ argument
128 (unlikely ((Dbg)->other_byte_order) \
131 # define read_4sbyte_unaligned(Dbg, Addr) \ argument
132 (unlikely ((Dbg)->other_byte_order) \
138 # define read_8ubyte_unaligned(Dbg, Addr) \ argument
139 (unlikely ((Dbg)->other_byte_order) \
142 # define read_8sbyte_unaligned(Dbg, Addr) \ argument
143 (unlikely ((Dbg)->other_byte_order) \
160 # define read_2ubyte_unaligned(Dbg, Addr) \ argument
161 read_2ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
162 # define read_2sbyte_unaligned(Dbg, Addr) \ argument
163 read_2sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
164 # define read_4ubyte_unaligned(Dbg, Addr) \ argument
165 read_4ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
166 # define read_4sbyte_unaligned(Dbg, Addr) \ argument
167 read_4sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
168 # define read_8ubyte_unaligned(Dbg, Addr) \ argument
169 read_8ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
170 # define read_8sbyte_unaligned(Dbg, Addr) \ argument
171 read_8sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
239 #define read_2ubyte_unaligned_inc(Dbg, Addr) \ argument
240 ({ uint16_t t_ = read_2ubyte_unaligned (Dbg, Addr); \
243 #define read_2sbyte_unaligned_inc(Dbg, Addr) \ argument
244 ({ int16_t t_ = read_2sbyte_unaligned (Dbg, Addr); \
248 #define read_4ubyte_unaligned_inc(Dbg, Addr) \ argument
249 ({ uint32_t t_ = read_4ubyte_unaligned (Dbg, Addr); \
252 #define read_4sbyte_unaligned_inc(Dbg, Addr) \ argument
253 ({ int32_t t_ = read_4sbyte_unaligned (Dbg, Addr); \
257 #define read_8ubyte_unaligned_inc(Dbg, Addr) \ argument
258 ({ uint64_t t_ = read_8ubyte_unaligned (Dbg, Addr); \
261 #define read_8sbyte_unaligned_inc(Dbg, Addr) \ argument
262 ({ int64_t t_ = read_8sbyte_unaligned (Dbg, Addr); \
267 #define read_addr_unaligned_inc(Nbytes, Dbg, Addr) \ argument
269 ((Nbytes) == 4 ? read_4ubyte_unaligned_inc (Dbg, Addr) \
270 : read_8ubyte_unaligned_inc (Dbg, Addr)))