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
95 #define rPC r4
132 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
137 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
138 sub \tmp, rPC, \tmp
144 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
147 ldrh rINST, [rPC]
151 * Fetch the next instruction from the specified offset. Advances rPC
163 ldrh rINST, [rPC, #((\count)*2)]
    [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
159 #define rPC %esi
186 movl rPC, OFF_FP_DEX_PC_PTR(rFP)
229 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
232 movzwl (rPC), rINST
247 * Advance rPC by instruction count.
250 leal 2*\_count(rPC), rPC
    [all...]
  /art/runtime/interpreter/mterp/out/
mterp_arm.S 77 r4 rPC interpreted program counter, used for fetching instructions
102 #define rPC r4
139 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
144 str rPC, [rFP, #OFF_FP_DEX_PC_PTR]
145 sub \tmp, rPC, \tmp
151 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
154 ldrh rINST, [rPC]
158 * Fetch the next instruction from the specified offset. Advances rPC
170 ldrh rINST, [rPC, #((\count)*2)]
    [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
166 #define rPC %esi
193 movl rPC, OFF_FP_DEX_PC_PTR(rFP)
236 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
239 movzwl (rPC), rINST
254 * Advance rPC by instruction count.
257 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
166 #define rPC %r12
167 #define CFI_DEX 12 // DWARF register number of the register holding dex-pc (rPC).
194 movq rPC, OFF_FP_DEX_PC_PTR(rFP)
224 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
227 movzwq (rPC), rINSTq
242 * Advance rPC by instruction count.
245 leaq 2*\_count(rPC), rP
    [all...]
mterp_mips64.S 88 s0 rPC interpreted program counter, used for fetching instructions
99 #define rPC s0
146 sd rPC, OFF_FP_DEX_PC_PTR(rFP)
157 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
160 lhu rINST, 0(rPC)
163 /* Advance rPC by some number of code units. */
165 daddu rPC, rPC, (\count) * 2
175 daddu rPC, rPC, \re
    [all...]
mterp_mips.S 57 s0 rPC interpreted program counter, used for fetching instructions
70 #define rPC s0
248 sw rPC, OFF_FP_DEX_PC_PTR(rFP)
252 sw rPC, OFF_FP_DEX_PC_PTR(rFP); \
253 subu tmp, rPC, tmp; \
258 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
260 #define FETCH_INST() lhu rINST, (rPC)
263 * Fetch the next instruction from the specified offset. Advances rPC
271 lhu rINST, ((_count)*2)(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
159 #define rPC %r12
160 #define CFI_DEX 12 // DWARF register number of the register holding dex-pc (rPC).
187 movq rPC, OFF_FP_DEX_PC_PTR(rFP)
217 * Fetch the next instruction from rPC into rINSTw. Does not advance rPC.
220 movzwq (rPC), rINSTq
235 * Advance rPC by instruction count.
238 leaq 2*\_count(rPC), rP
    [all...]
  /art/runtime/interpreter/mterp/mips64/
header.S 81 s0 rPC interpreted program counter, used for fetching instructions
92 #define rPC s0
139 sd rPC, OFF_FP_DEX_PC_PTR(rFP)
150 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
153 lhu rINST, 0(rPC)
156 /* Advance rPC by some number of code units. */
158 daddu rPC, rPC, (\count) * 2
168 daddu rPC, rPC, \re
    [all...]
  /art/runtime/interpreter/mterp/mips/
header.S 50 s0 rPC interpreted program counter, used for fetching instructions
63 #define rPC s0
241 sw rPC, OFF_FP_DEX_PC_PTR(rFP)
245 sw rPC, OFF_FP_DEX_PC_PTR(rFP); \
246 subu tmp, rPC, tmp; \
251 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
253 #define FETCH_INST() lhu rINST, (rPC)
256 * Fetch the next instruction from the specified offset. Advances rPC
264 lhu rINST, ((_count)*2)(rPC); \
    [all...]

Completed in 1911 milliseconds