HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 126 - 150 of 681) sorted by null

1 2 3 4 56 7 8 91011>>

  /dalvik/vm/mterp/x86-atom/
OP_CHECK_CAST.S 37 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
101 .L${opcode}_resolve:
118 jmp .L${opcode}_resolve
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
LookUpSwitchInstruction.java 47 public LookUpSwitchInstruction(byte opcode,
52 this.opcode = opcode;
66 this.opcode = lookUpSwitchInstruction.opcode;
TableSwitchInstruction.java 48 public TableSwitchInstruction(byte opcode,
54 this.opcode = opcode;
69 this.opcode = tableSwitchInstruction.opcode;
  /external/proguard/src/proguard/optimize/peephole/
GotoCommonCodeReplacer.java 101 byte opcode = branchInstruction.opcode;
102 if ((opcode == InstructionConstants.OP_GOTO ||
103 opcode == InstructionConstants.OP_GOTO_W) &&
139 new BranchInstruction(opcode, newBranchOffset);
229 * Returns whether the given opcode represents a pop instruction that must
232 private boolean isPop(byte opcode)
234 return opcode == InstructionConstants.OP_POP ||
235 opcode == InstructionConstants.OP_POP2 ||
236 opcode == InstructionConstants.OP_ARRAYLENGTH
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsn.java 36 /** the opcode; one of the constants from {@link Dops} */
37 private final Dop opcode; field in class:DalvInsn
59 Dop opcode; local
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, SourcePosition position
    [all...]
FixedSizeInsn.java 38 * @param opcode the opcode; one of the constants from {@link Dops}
44 public FixedSizeInsn(Dop opcode, SourcePosition position,
46 super(opcode, position, registers);
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 38 /** the opcode; one of the constants from {@link Dops} */
39 private final Dop opcode; field in class:DalvInsn
61 Dop opcode; local
64 opcode = reference ? Dops.MOVE_OBJECT :
67 opcode = reference ? Dops.MOVE_OBJECT_FROM16 :
70 opcode = reference ? Dops.MOVE_OBJECT_16 :
74 return new SimpleInsn(opcode, position,
88 * @param opcode the opcode; one of the constants from {@link Dops}
94 public DalvInsn(Dop opcode, SourcePosition position
    [all...]
FixedSizeInsn.java 39 * @param opcode the opcode; one of the constants from {@link Dops}
45 public FixedSizeInsn(Dop opcode, SourcePosition position,
47 super(opcode, position, registers);
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_SUPER.S 26 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:
OP_INVOKE_SUPER_JUMBO.S 21 bne .L${opcode}_continue @ resolved, continue on
22 b .L${opcode}_resolve @ do resolve now
30 .L${opcode}_continue:
36 bcs .L${opcode}_nsm @ method not present in superclass
41 .L${opcode}_resolve:
46 bne .L${opcode}_continue @ no, continue
53 .L${opcode}_nsm:
OP_SPUT_OBJECT.S 17 beq .L${opcode}_resolve @ yes, do resolve
18 .L${opcode}_finish: @ field ptr in r0
24 GET_INST_OPCODE(ip) @ extract opcode from rINST
26 b .L${opcode}_end
30 .L${opcode}_end:
41 .L${opcode}_resolve:
58 b .L${opcode}_finish @ resume
OP_SPUT_OBJECT_JUMBO.S 17 beq .L${opcode}_resolve @ yes, do resolve
18 .L${opcode}_finish: @ field ptr in r0
24 GET_INST_OPCODE(ip) @ extract opcode from rINST
26 b .L${opcode}_end
30 .L${opcode}_end:
41 .L${opcode}_resolve:
58 b .L${opcode}_finish @ resume
OP_CONST_16.S 7 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_CONST_CLASS.S 12 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
OP_CONST_CLASS_JUMBO.S 14 beq .L${opcode}_resolve
16 GET_INST_OPCODE(ip) @ extract opcode from rINST
26 .L${opcode}_resolve:
35 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_CONST_STRING.S 12 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
OP_CONST_STRING_JUMBO.S 14 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
OP_IGET.S 20 bne .L${opcode}_finish @ no, already resolved
26 bne .L${opcode}_finish
35 .L${opcode}_finish:
45 GET_INST_OPCODE(ip) @ extract opcode from rINST
  /external/javassist/src/main/javassist/bytecode/
CodeAttribute.java 35 public class CodeAttribute extends AttributeInfo implements Opcode {
444 code[where] = (byte)Opcode.LDC_W;
487 int opcode = ci.byteAt(index); local
488 if (opcode < ILOAD)
490 else if (opcode < IASTORE) {
491 if (opcode < ILOAD_0) {
493 shiftIndex8(ci, index, opcode, lessThan, delta);
495 else if (opcode < IALOAD) {
497 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD);
499 else if (opcode < ISTORE
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 120 * result is a bit set with the offset of each opcode-per-se flipped on.
172 * to the visitor are canonicalized, altering the opcode to a more
190 * to the {@code int} variant opcode, with the {@code type}
198 * variant opcode, with the {@code type} argument set to indicate
222 int opcode = bytes.getUnsignedByte(offset); local
223 int info = ByteOps.opInfo(opcode);
226 switch (opcode) {
228 visitor.visitNoArgs(opcode, offset, 1, Type.VOID);
374 int idx = opcode - ByteOps.ILOAD_0;
383 int idx = opcode - ByteOps.LLOAD_0
1090 int opcode = bytes.getUnsignedByte(offset + 1); local
    [all...]
  /dalvik/vm/compiler/
InlineTransformation.cpp 66 (moveResultMIR->dalvikInsn.opcode != OP_MOVE_RESULT &&
67 moveResultMIR->dalvikInsn.opcode != OP_MOVE_RESULT_OBJECT &&
68 moveResultMIR->dalvikInsn.opcode != OP_MOVE_RESULT_WIDE)) {
72 int dfFlags = dvmCompilerDataFlowAttributes[getterInsn.opcode];
76 LOGE("opcode %d has DF_UA set (not expected)", getterInsn.opcode);
95 newGetterMIR->width = dexGetWidthFromOpcode(getterInsn.opcode);
112 invokeMIR->dalvikInsn.opcode = (Opcode)kMirOpCheckInlinePrediction;
159 int dfFlags = dvmCompilerDataFlowAttributes[setterInsn.opcode];
317 Opcode opcode = lastMIRInsn->dalvikInsn.opcode; local
    [all...]
  /bionic/libc/kernel/common/linux/
ublock.h 32 __u32 opcode; member in struct:ublock_in_header
37 __u32 opcode; member in struct:ublock_out_header
  /dalvik/dx/src/com/android/dx/io/instructions/
FiveRegisterDecodedInstruction.java 43 public FiveRegisterDecodedInstruction(InstructionCodec format, int opcode,
46 super(format, opcode, index, indexType, target, literal);
FourRegisterDecodedInstruction.java 40 public FourRegisterDecodedInstruction(InstructionCodec format, int opcode,
43 super(format, opcode, index, indexType, target, literal);
ThreeRegisterDecodedInstruction.java 37 public ThreeRegisterDecodedInstruction(InstructionCodec format, int opcode,
40 super(format, opcode, index, indexType, target, literal);

Completed in 584 milliseconds

1 2 3 4 56 7 8 91011>>