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

  /art/runtime/interpreter/mterp/arm/
header.S 73 r7 rINST first 16-bit code unit of current instruction
97 #define rINST r7
142 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
145 ldrh rINST, [rPC]
161 ldrh rINST, [rPC, #((\count)*2)]!
166 * src and dest registers are parameterized (not hard-wired to rPC and rINST).
174 * rINST ahead of possible exception point. Be sure to manually advance rPC
178 ldrh rINST, [rPC, #((\count)*2)]
191 * We want to write "ldrh rINST, [rPC, _reg, lsl #1]!", but some of the
197 ldrh rINST, [rPC, \reg]
    [all...]
  /art/runtime/interpreter/mterp/mips64/
header.S 51 s3 rINST first 16-bit code unit of current instruction
62 #define rINST s3
114 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
117 lhu rINST, 0(rPC)
151 * rINST ahead of possible exception point. Be sure to manually advance rPC
155 lhu rINST, ((\count) * 2)(rPC)
162 and \reg, rINST, 255
  /art/runtime/interpreter/mterp/x86/
header.S 160 #define rINST %ebx
215 * Refresh rINST.
216 * At enter to handler rINST does not contain the opcode number.
229 movzwl (rPC), rINST
233 * Remove opcode from rINST, compute the address of handler and jump to it.
237 movzbl rINSTbh,rINST
  /art/runtime/interpreter/mterp/x86_64/
header.S 160 #define rINST %ebx
200 * Refresh rINST.
201 * At enter to handler rINST does not contain the opcode number.
218 * Remove opcode from rINST, compute the address of handler and jump to it.
222 movzbl rINSTbh,rINST
  /art/runtime/interpreter/mterp/out/
mterp_arm.S 80 r7 rINST first 16-bit code unit of current instruction
104 #define rINST r7
149 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
152 ldrh rINST, [rPC]
168 ldrh rINST, [rPC, #((\count)*2)]!
173 * src and dest registers are parameterized (not hard-wired to rPC and rINST).
181 * rINST ahead of possible exception point. Be sure to manually advance rPC
185 ldrh rINST, [rPC, #((\count)*2)]
198 * We want to write "ldrh rINST, [rPC, _reg, lsl #1]!", but some of the
204 ldrh rINST, [rPC, \reg]
    [all...]
mterp_mips64.S 58 s3 rINST first 16-bit code unit of current instruction
69 #define rINST s3
121 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
124 lhu rINST, 0(rPC)
158 * rINST ahead of possible exception point. Be sure to manually advance rPC
162 lhu rINST, ((\count) * 2)(rPC)
169 and \reg, rINST, 255
406 FETCH_ADVANCE_INST 1 # advance rPC, load rINST
407 GET_INST_OPCODE v0 # extract opcode from rINST
416 ext a2, rINST, 8, 4 # a2 <-
    [all...]
mterp_x86.S 167 #define rINST %ebx
222 * Refresh rINST.
223 * At enter to handler rINST does not contain the opcode number.
236 movzwl (rPC), rINST
240 * Remove opcode from rINST, compute the address of handler and jump to it.
244 movzbl rINSTbh,rINST
420 shrl $4, rINST # rINST <- B
421 GET_VREG rINST, rINST
    [all...]
mterp_x86_64.S 167 #define rINST %ebx
207 * Refresh rINST.
208 * At enter to handler rINST does not contain the opcode number.
225 * Remove opcode from rINST, compute the address of handler and jump to it.
229 movzbl rINSTbh,rINST
398 movl rINST, %eax # eax <- BA
400 shrl $4, rINST # rINST <- B
446 movl rINST, %ecx # ecx <- BA
447 sarl $4, rINST # rINST <-
    [all...]
mterp_mips.S 60 s4 rINST first 16-bit code unit of current instruction
73 #define rINST s4
256 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
258 #define FETCH_INST() lhu rINST, (rPC)
269 lhu rINST, ((_count)*2)(rPC); \
274 * rINST ahead of possible exception point. Be sure to manually advance rPC
277 #define PREFETCH_INST(_count) lhu rINST, ((_count)*2)(rPC)
289 lhu rINST, (rPC)
310 #define GET_INST_OPCODE(rd) and rd, rINST, 0xFF
602 #define GET_OPA(rd) srl rd, rINST,
    [all...]
  /art/runtime/interpreter/mterp/mips/
header.S 53 s4 rINST first 16-bit code unit of current instruction
66 #define rINST s4
249 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
251 #define FETCH_INST() lhu rINST, (rPC)
262 lhu rINST, ((_count)*2)(rPC); \
267 * rINST ahead of possible exception point. Be sure to manually advance rPC
270 #define PREFETCH_INST(_count) lhu rINST, ((_count)*2)(rPC)
282 lhu rINST, (rPC)
303 #define GET_INST_OPCODE(rd) and rd, rINST, 0xFF
595 #define GET_OPA(rd) srl rd, rINST,
    [all...]

Completed in 380 milliseconds