HomeSort by relevance Sort by last modified time
    Searched defs:rPC (Results 1 - 10 of 10) sorted by null

  /art/runtime/interpreter/mterp/arm/
header.S 70 r4 rPC interpreted program counter, used for fetching instructions
94 #define rPC r4
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, #((\count)*2)]
    [all...]
  /art/runtime/interpreter/mterp/mips64/
header.S 48 s0 rPC interpreted program counter, used for fetching instructions
58 #define rPC s0
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/
header.S 68 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
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/
header.S 64 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
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/
mterp_arm.S 77 r4 rPC interpreted program counter, used for fetching instructions
101 #define rPC r4
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, #((\count)*2)]
    [all...]
mterp_mips64.S 55 s0 rPC interpreted program counter, used for fetching instructions
65 #define rPC s0
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...]
mterp_x86.S 75 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
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...]
mterp_x86_64.S 71 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
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...]
mterp_mips.S 56 s0 rPC interpreted program counter, used for fetching instructions
65 #define rPC s0
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/
header.S 49 s0 rPC interpreted program counter, used for fetching instructions
58 #define rPC s0
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 312 milliseconds