Searched refs:opcode (Results 51 - 75 of 271) sorted by relevance

1234567891011

/dalvik/vm/mterp/armv4t/
H A DOP_SPUT_WIDE.S16 beq .L${opcode}_resolve @ yes, do resolve
17 .L${opcode}_finish: @ field ptr in r0, AA in r9
20 GET_INST_OPCODE(ip) @ extract opcode from rINST
31 .L${opcode}_resolve:
37 bne .L${opcode}_finish @ yes, finish
/dalvik/vm/mterp/armv5te/
H A DOP_EXECUTE_INLINE_RANGE.S21 bl .L${opcode}_continue @ make call; will return after
26 GET_INST_OPCODE(ip) @ extract opcode from rINST
36 .L${opcode}_continue:
50 ldr r9, .L${opcode}_table @ table of InlineOperation
54 .L${opcode}_table:
H A DOP_SGET.S16 beq .L${opcode}_resolve @ yes, do resolve
17 .L${opcode}_finish: @ field ptr in r0
22 GET_INST_OPCODE(ip) @ extract opcode from rINST
30 .L${opcode}_resolve:
36 bne .L${opcode}_finish @ yes, finish
H A DOP_SGET_WIDE.S14 beq .L${opcode}_resolve @ yes, do resolve
15 .L${opcode}_finish:
21 GET_INST_OPCODE(ip) @ extract opcode from rINST
29 .L${opcode}_resolve:
35 bne .L${opcode}_finish @ yes, finish
H A DOP_SPUT.S16 beq .L${opcode}_resolve @ yes, do resolve
17 .L${opcode}_finish: @ field ptr in r0
21 GET_INST_OPCODE(ip) @ extract opcode from rINST
30 .L${opcode}_resolve:
36 bne .L${opcode}_finish @ yes, finish
H A DOP_SPUT_WIDE.S16 beq .L${opcode}_resolve @ yes, do resolve
17 .L${opcode}_finish: @ field ptr in r0, AA in r9
20 GET_INST_OPCODE(ip) @ extract opcode from rINST
30 .L${opcode}_resolve:
36 bne .L${opcode}_finish @ yes, finish
H A DOP_INVOKE_SUPER.S26 bne .L${opcode}_continue @ resolved, continue on
27 b .L${opcode}_resolve @ do resolve now
35 .L${opcode}_continue:
41 bcs .L${opcode}_nsm @ method not present in superclass
46 .L${opcode}_resolve:
51 bne .L${opcode}_continue @ no, continue
58 .L${opcode}_nsm:
H A DOP_CONST_16.S7 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_CONST_CLASS.S12 beq .L${opcode}_resolve
14 GET_INST_OPCODE(ip) @ extract opcode from rINST
24 .L${opcode}_resolve:
33 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_CONST_STRING.S12 beq .L${opcode}_resolve
14 GET_INST_OPCODE(ip) @ extract opcode from rINST
24 .L${opcode}_resolve:
32 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_CONST_STRING_JUMBO.S14 beq .L${opcode}_resolve
16 GET_INST_OPCODE(ip) @ extract opcode from rINST
26 .L${opcode}_resolve:
34 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_IGET.S20 bne .L${opcode}_finish @ no, already resolved
26 bne .L${opcode}_finish
35 .L${opcode}_finish:
44 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_INVOKE_DIRECT.S27 beq .L${opcode}_resolve @ not resolved, do it now
28 .L${opcode}_finish:
39 .L${opcode}_resolve:
46 bne .L${opcode}_finish @ no, continue
H A DOP_MOVE_16.S8 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_MOVE_FROM16.S8 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_MOVE_RESULT.S7 GET_INST_OPCODE(ip) @ extract opcode from rINST
/dalvik/vm/mterp/x86-atom/
H A DOP_CHECK_CAST.S37 je .L${opcode}_okay # can always cast null object
41 je .L${opcode}_resolve # resolve class
42 jmp .L${opcode}_resolved # continue
45 .L${opcode}_resolved:
47 jne .L${opcode}_fullcheck # not same class; do full check
49 .L${opcode}_okay:
59 .L${opcode}_fullcheck:
68 jne .L${opcode}_okay # success
93 .L${opcode}_resolve:
110 jmp .L${opcode}_resolve
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvInsn.java36 /** the opcode; one of the constants from {@link Dops} */
37 private final Dop opcode; field in class:DalvInsn
59 Dop opcode;
62 opcode = reference ? Dops.MOVE_OBJECT :
65 opcode = reference ? Dops.MOVE_OBJECT_FROM16 :
68 opcode = reference ? Dops.MOVE_OBJECT_16 :
72 return new SimpleInsn(opcode, position,
86 * @param opcode the opcode; one of the constants from {@link Dops}
92 public DalvInsn(Dop opcode, SourcePositio argument
378 withOpcode(Dop opcode) argument
[all...]
H A DFixedSizeInsn.java39 * @param opcode the opcode; one of the constants from {@link Dops}
45 public FixedSizeInsn(Dop opcode, SourcePosition position, argument
47 super(opcode, position, registers);
/dalvik/vm/mterp/x86/
H A DOP_INVOKE_SUPER.S27 jne .L${opcode}_continue # yes - go on
28 jmp .L${opcode}_resolve
36 .L${opcode}_continue:
40 jae .L${opcode}_nsm # method not present in superclass
50 .L${opcode}_resolve:
62 jne .L${opcode}_continue # good to go - continue
69 .L${opcode}_nsm:
H A DOP_CHECK_CAST.S19 je .L${opcode}_okay # null obj, cast always succeeds
23 je .L${opcode}_resolve # no, go do it now
24 .L${opcode}_resolved:
26 jne .L${opcode}_fullcheck # no, do full check
27 .L${opcode}_okay:
39 .L${opcode}_fullcheck:
46 jne .L${opcode}_okay # no, success
67 .L${opcode}_resolve:
82 jmp .L${opcode}_resolved # pick up where we left off
/dalvik/dx/src/com/android/dx/cf/code/
H A DBytecodeArray.java116 * result is a bit set with the offset of each opcode-per-se flipped on.
167 * to the visitor are canonicalized, altering the opcode to a more
185 * to the {@code int} variant opcode, with the {@code type}
193 * variant opcode, with the {@code type} argument set to indicate
217 int opcode = bytes.getUnsignedByte(offset);
218 int info = ByteOps.opInfo(opcode);
221 switch (opcode) {
223 visitor.visitNoArgs(opcode, offset, 1, Type.VOID);
369 int idx = opcode - ByteOps.ILOAD_0;
378 int idx = opcode
1153 visitInvalid(int opcode, int offset, int length) argument
1164 visitNoArgs(int opcode, int offset, int length, Type type) argument
1178 visitLocal(int opcode, int offset, int length, int idx, Type type, int value) argument
1205 visitConstant(int opcode, int offset, int length, Constant cst, int value) argument
1216 visitBranch(int opcode, int offset, int length, int target) argument
1230 visitSwitch(int opcode, int offset, int length, SwitchList cases, int padding) argument
1271 visitInvalid(int opcode, int offset, int length) argument
1276 visitNoArgs(int opcode, int offset, int length, Type type) argument
1282 visitLocal(int opcode, int offset, int length, int idx, Type type, int value) argument
1288 visitConstant(int opcode, int offset, int length, Constant cst, int value) argument
1294 visitBranch(int opcode, int offset, int length, int target) argument
1300 visitSwitch(int opcode, int offset, int length, SwitchList cases, int padding) argument
1340 visitInvalid(int opcode, int offset, int length) argument
1345 visitNoArgs(int opcode, int offset, int length, Type type) argument
1351 visitLocal(int opcode, int offset, int length, int idx, Type type, int value) argument
1357 visitConstant(int opcode, int offset, int length, Constant cst, int value) argument
1365 visitBranch(int opcode, int offset, int length, int target) argument
1371 visitSwitch(int opcode, int offset, int length, SwitchList cases, int padding) argument
[all...]
/dalvik/vm/mterp/armv6t2/
H A DOP_IGET.S20 bne .L${opcode}_finish @ no, already resolved
26 bne .L${opcode}_finish
35 .L${opcode}_finish:
43 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_IGET_WIDE.S17 bne .L${opcode}_finish @ no, already resolved
23 bne .L${opcode}_finish
32 .L${opcode}_finish:
40 GET_INST_OPCODE(ip) @ extract opcode from rINST
H A DOP_IPUT.S20 bne .L${opcode}_finish @ no, already resolved
26 bne .L${opcode}_finish @ yes, finish up
35 .L${opcode}_finish:
43 GET_INST_OPCODE(ip) @ extract opcode from rINST

Completed in 2635 milliseconds

1234567891011