Searched refs:_count (Results 1 – 6 of 6) sorted by relevance
/art/runtime/interpreter/mterp/x86/ |
D | header.S | 249 .macro ADVANCE_PC _count argument 250 leal 2*\_count(rPC), rPC 256 .macro ADVANCE_PC_FETCH_AND_GOTO_NEXT _count argument 257 ADVANCE_PC \_count
|
/art/runtime/interpreter/mterp/x86_64/ |
D | header.S | 237 .macro ADVANCE_PC _count argument 238 leaq 2*\_count(rPC), rPC 244 .macro ADVANCE_PC_FETCH_AND_GOTO_NEXT _count argument 245 ADVANCE_PC \_count
|
/art/runtime/interpreter/mterp/mips/ |
D | header.S | 263 #define FETCH_ADVANCE_INST(_count) \ argument 264 lhu rINST, ((_count)*2)(rPC); \ 265 addu rPC, rPC, ((_count) * 2) 272 #define PREFETCH_INST(_count) lhu rINST, ((_count)*2)(rPC) argument 275 #define ADVANCE(_count) addu rPC, rPC, ((_count) * 2) argument 292 #define FETCH(rd, _count) lhu rd, ((_count) * 2)(rPC) argument 293 #define FETCH_S(rd, _count) lh rd, ((_count) * 2)(rPC) argument 300 #define FETCH_B(rd, _count, _byte) lbu rd, ((_count) * 2 + _byte)(rPC) argument
|
/art/runtime/interpreter/mterp/out/ |
D | mterp_mips.S | 270 #define FETCH_ADVANCE_INST(_count) \ argument 271 lhu rINST, ((_count)*2)(rPC); \ 272 addu rPC, rPC, ((_count) * 2) 279 #define PREFETCH_INST(_count) lhu rINST, ((_count)*2)(rPC) argument 282 #define ADVANCE(_count) addu rPC, rPC, ((_count) * 2) argument 299 #define FETCH(rd, _count) lhu rd, ((_count) * 2)(rPC) argument 300 #define FETCH_S(rd, _count) lh rd, ((_count) * 2)(rPC) argument 307 #define FETCH_B(rd, _count, _byte) lbu rd, ((_count) * 2 + _byte)(rPC) argument
|
D | mterp_x86_64.S | 244 .macro ADVANCE_PC _count argument 245 leaq 2*\_count(rPC), rPC 251 .macro ADVANCE_PC_FETCH_AND_GOTO_NEXT _count argument 252 ADVANCE_PC \_count
|
D | mterp_x86.S | 256 .macro ADVANCE_PC _count argument 257 leal 2*\_count(rPC), rPC 263 .macro ADVANCE_PC_FETCH_AND_GOTO_NEXT _count argument 264 ADVANCE_PC \_count
|