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
58 #define rPC s0 define
101 sd rPC, OFF_FP_DEX_PC_PTR(rFP)
112 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
115 lhu rINST, 0(rPC)
118 /* Advance rPC by some number of code units. */
120 daddu rPC, rPC, (\count) * 2
124 * Fetch the next instruction from the specified offset. Advances rPC
[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
65 #define rPC s0 define
108 sd rPC, OFF_FP_DEX_PC_PTR(rFP)
119 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
122 lhu rINST, 0(rPC)
125 /* Advance rPC by some number of code units. */
127 daddu rPC, rPC, (\count) * 2
131 * Fetch the next instruction from the specified offset. Advances rPC
[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
65 #define rPC s0 define
188 sw rPC, OFF_FP_DEX_PC_PTR(rFP)
192 sw rPC, OFF_FP_DEX_PC_PTR(rFP) \
194 subu tmp, rPC, tmp \
199 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
201 #define FETCH_INST() lhu rINST, (rPC)
204 * Fetch the next instruction from the specified offset. Advances rPC
211 #define FETCH_ADVANCE_INST(_count) lhu rINST, ((_count)*2)(rPC); \
[all...]
/art/runtime/interpreter/mterp/mips/
H A Dheader.S49 s0 rPC interpreted program counter, used for fetching instructions
58 #define rPC s0 define
181 sw rPC, OFF_FP_DEX_PC_PTR(rFP)
185 sw rPC, OFF_FP_DEX_PC_PTR(rFP) \
187 subu tmp, rPC, tmp \
192 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
194 #define FETCH_INST() lhu rINST, (rPC)
197 * Fetch the next instruction from the specified offset. Advances rPC
204 #define FETCH_ADVANCE_INST(_count) lhu rINST, ((_count)*2)(rPC); \
[all...]

Completed in 4892 milliseconds