Searched defs:rPC (Results 1 - 10 of 10) sorted by relevance

/art/runtime/interpreter/mterp/arm/
H A Dheader.S70 r4 rPC interpreted program counter, used for fetching instructions
94 #define rPC r4 define
129 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
134 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
136 sub \tmp, rPC, \tmp
142 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
145 ldrh rINST, [rPC]
149 * Fetch the next instruction from the specified offset. Advances rPC
161 ldrh rINST, [rPC, #((\coun
[all...]
/art/runtime/interpreter/mterp/mips64/
H A Dheader.S48 s0 rPC interpreted program counter, used for fetching instructions
59 #define rPC s0 define
103 sd rPC, OFF_FP_DEX_PC_PTR(rFP)
114 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
117 lhu rINST, 0(rPC)
120 /* Advance rPC by some number of code units. */
122 daddu rPC, rPC, (\count) * 2
132 daddu rPC, rP
[all...]
/art/runtime/interpreter/mterp/x86/
H A Dheader.S68 rPC esi interpreted program counter, used for fetching instructions
78 o rPC, rFP, rINSTw/rINSTbl valid on handler entry and exit
158 #define rPC %esi define
183 movl rPC, OFF_FP_DEX_PC_PTR(rFP)
226 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
229 movzwl (rPC), rINST
244 * Advance rPC by instruction count.
247 leal 2*\_count(rPC), rPC
[all...]
/art/runtime/interpreter/mterp/x86_64/
H A Dheader.S64 rPC r12 interpreted program counter, used for fetching instructions
74 o rPC, rFP, rINSTw/rINSTbl valid on handler entry and exit
158 #define rPC %r12 define
184 movq rPC, OFF_FP_DEX_PC_PTR(rFP)
211 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
214 movzwq (rPC), rINSTq
229 * Advance rPC by instruction count.
232 leaq 2*\_count(rPC), rPC
[all...]
/art/runtime/interpreter/mterp/out/
H A Dmterp_arm.S77 r4 rPC interpreted program counter, used for fetching instructions
101 #define rPC r4 define
136 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
141 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
143 sub \tmp, rPC, \tmp
149 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
152 ldrh rINST, [rPC]
156 * Fetch the next instruction from the specified offset. Advances rPC
168 ldrh rINST, [rPC, #((\coun
[all...]
H A Dmterp_mips64.S55 s0 rPC interpreted program counter, used for fetching instructions
66 #define rPC s0 define
110 sd rPC, OFF_FP_DEX_PC_PTR(rFP)
121 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
124 lhu rINST, 0(rPC)
127 /* Advance rPC by some number of code units. */
129 daddu rPC, rPC, (\count) * 2
139 daddu rPC, rP
[all...]
H A Dmterp_x86.S75 rPC esi interpreted program counter, used for fetching instructions
85 o rPC, rFP, rINSTw/rINSTbl valid on handler entry and exit
165 #define rPC %esi define
190 movl rPC, OFF_FP_DEX_PC_PTR(rFP)
233 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
236 movzwl (rPC), rINST
251 * Advance rPC by instruction count.
254 leal 2*\_count(rPC), rPC
[all...]
H A Dmterp_x86_64.S71 rPC r12 interpreted program counter, used for fetching instructions
81 o rPC, rFP, rINSTw/rINSTbl valid on handler entry and exit
165 #define rPC %r12 define
191 movq rPC, OFF_FP_DEX_PC_PTR(rFP)
218 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
221 movzwq (rPC), rINSTq
236 * Advance rPC by instruction count.
239 leaq 2*\_count(rPC), rPC
[all...]
H A Dmterp_mips.S56 s0 rPC interpreted program counter, used for fetching instructions
69 #define rPC s0 define
245 sw rPC, OFF_FP_DEX_PC_PTR(rFP)
249 sw rPC, OFF_FP_DEX_PC_PTR(rFP); \
251 subu tmp, rPC, tmp; \
256 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
258 #define FETCH_INST() lhu rINST, (rPC)
261 * Fetch the next instruction from the specified offset. Advances rPC
269 lhu rINST, ((_count)*2)(rPC); \
[all...]
/art/runtime/interpreter/mterp/mips/
H A Dheader.S49 s0 rPC interpreted program counter, used for fetching instructions
62 #define rPC s0 define
238 sw rPC, OFF_FP_DEX_PC_PTR(rFP)
242 sw rPC, OFF_FP_DEX_PC_PTR(rFP); \
244 subu tmp, rPC, tmp; \
249 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
251 #define FETCH_INST() lhu rINST, (rPC)
254 * Fetch the next instruction from the specified offset. Advances rPC
262 lhu rINST, ((_count)*2)(rPC); \
[all...]

Completed in 306 milliseconds