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

/art/runtime/interpreter/mterp/arm/
H A Dheader.S73 r7 rINST first 16-bit code unit of current instruction
97 #define rINST r7 define
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, [rP
[all...]
/art/runtime/interpreter/mterp/mips64/
H A Dheader.S51 s3 rINST first 16-bit code unit of current instruction
61 #define rINST s3 define
112 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
115 lhu rINST, 0(rPC)
138 * rINST ahead of possible exception point. Be sure to manually advance rPC
142 lhu rINST, ((\count) * 2)(rPC)
149 and \reg, rINST, 255
/art/runtime/interpreter/mterp/x86/
H A Dheader.S160 #define rINST %ebx define
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/
H A Dheader.S160 #define rINST %ebx define
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/
H A Dmterp_arm.S80 r7 rINST first 16-bit code unit of current instruction
104 #define rINST r7 define
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, [rP
[all...]
H A Dmterp_mips64.S58 s3 rINST first 16-bit code unit of current instruction
68 #define rINST s3 define
119 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
122 lhu rINST, 0(rPC)
145 * rINST ahead of possible exception point. Be sure to manually advance rPC
149 lhu rINST, ((\count) * 2)(rPC)
156 and \reg, rINST, 255
384 FETCH_ADVANCE_INST 1 # advance rPC, load rINST
385 GET_INST_OPCODE v0 # extract opcode from rINST
394 ext a2, rINST,
[all...]
H A Dmterp_x86.S167 #define rINST %ebx define
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...]
H A Dmterp_x86_64.S167 #define rINST %ebx define
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 # rINS
[all...]
H A Dmterp_mips.S60 s4 rINST first 16-bit code unit of current instruction
69 #define rINST s4 define
199 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
201 #define FETCH_INST() lhu rINST, (rPC)
211 #define FETCH_ADVANCE_INST(_count) lhu rINST, ((_count)*2)(rPC); \
216 * src and dest registers are parameterized (not hard-wired to rPC and rINST).
224 * rINST ahead of possible exception point. Be sure to manually advance rPC
227 #define PREFETCH_INST(_count) lhu rINST, ((_count)*2)(rPC)
238 lhu rINST, (rPC)
259 #define GET_INST_OPCODE(rd) and rd, rINST,
[all...]
/art/runtime/interpreter/mterp/mips/
H A Dheader.S53 s4 rINST first 16-bit code unit of current instruction
62 #define rINST s4 define
192 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
194 #define FETCH_INST() lhu rINST, (rPC)
204 #define FETCH_ADVANCE_INST(_count) lhu rINST, ((_count)*2)(rPC); \
209 * src and dest registers are parameterized (not hard-wired to rPC and rINST).
217 * rINST ahead of possible exception point. Be sure to manually advance rPC
220 #define PREFETCH_INST(_count) lhu rINST, ((_count)*2)(rPC)
231 lhu rINST, (rPC)
252 #define GET_INST_OPCODE(rd) and rd, rINST,
[all...]

Completed in 183 milliseconds