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

1 2 3 4 56 7 8 91011>>

  /dalvik/vm/mterp/x86/
OP_USHR_LONG_2ADDR.S 27 jmp .L${opcode}_finish
31 .L${opcode}_finish:
OP_IGET.S 25 jne .L${opcode}_finish # no, already resolved
28 jmp .L${opcode}_resolve
32 .L${opcode}_resolve:
44 jne .L${opcode}_finish
47 .L${opcode}_finish:
OP_IGET_WIDE.S 23 jne .L${opcode}_finish # no, already resolved
26 jmp .L${opcode}_resolve
30 .L${opcode}_resolve:
42 jne .L${opcode}_finish
45 .L${opcode}_finish:
OP_INVOKE_VIRTUAL.S 20 jne .L${opcode}_continue # yes, continue
25 jmp .L${opcode}_more
29 .L${opcode}_more:
36 jne .L${opcode}_continue # no, continue
43 .L${opcode}_continue:
OP_IPUT.S 26 jne .L${opcode}_finish # no, already resolved
29 jmp .L${opcode}_resolve
33 .L${opcode}_resolve:
45 jne .L${opcode}_finish
48 .L${opcode}_finish:
OP_IPUT_WIDE.S 23 jne .L${opcode}_finish # no, already resolved
26 jmp .L${opcode}_resolve
30 .L${opcode}_resolve:
42 jne .L${opcode}_finish
45 .L${opcode}_finish:
OP_NEW_ARRAY.S 26 jne .L${opcode}_finish # yes, fast path
27 jmp .L${opcode}_resolve # resolve now
35 .L${opcode}_resolve:
51 # fall through to ${opcode}_finish
59 .L${opcode}_finish:
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 457 byte opcode = simpleInstruction.opcode;
458 if (opcode == InstructionConstants.OP_IRETURN ||
459 opcode == InstructionConstants.OP_LRETURN ||
460 opcode == InstructionConstants.OP_FRETURN ||
461 opcode == InstructionConstants.OP_DRETURN ||
462 opcode == InstructionConstants.OP_ARETURN ||
463 opcode == InstructionConstants.OP_ATHROW)
483 if (constantInstruction.opcode == InstructionConstants.OP_NEW)
523 if (variableInstruction.opcode == InstructionConstants.OP_RET
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
FillArrayDataInsn.java 45 * @param opcode {@code non-null;} the opcode
51 public FillArrayDataInsn(Rop opcode, SourcePosition position,
55 super(opcode, position, null, sources);
57 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
PlainCstInsn.java 33 * @param opcode {@code non-null;} the opcode
39 public PlainCstInsn(Rop opcode, SourcePosition position,
42 super(opcode, position, result, sources, cst);
44 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
SwitchInsn.java 35 * @param opcode {@code non-null;} the opcode
41 public SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result,
43 super(opcode, position, result, sources);
45 if (opcode.getBranchingness() != Rop.BRANCH_SWITCH) {
ThrowingCstInsn.java 35 * @param opcode {@code non-null;} the opcode
41 public ThrowingCstInsn(Rop opcode, SourcePosition position,
44 super(opcode, position, null, sources, cst);
46 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
ThrowingInsn.java 57 * @param opcode {@code non-null;} the opcode
62 public ThrowingInsn(Rop opcode, SourcePosition position,
65 super(opcode, position, null, sources);
67 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
Insn.java 28 * an opcode (which specifies operation and source/result types), a
33 /** {@code non-null;} opcode */
34 private final Rop opcode; field in class:Insn
48 * @param opcode {@code non-null;} the opcode
53 public Insn(Rop opcode, SourcePosition position, RegisterSpec result,
55 if (opcode == null) {
56 throw new NullPointerException("opcode == null");
67 this.opcode = opcode;
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 240 public void visitInsn(int opcode) {
242 switch (opcode) {
254 mParentVisitor.visitInsn(opcode);
271 public void visitMethodInsn(int opcode, String owner, String name, String desc) {
273 mParentVisitor.visitMethodInsn(opcode, owner, name, desc);
277 public void visitFieldInsn(int opcode, String owner, String name, String desc) {
279 mParentVisitor.visitFieldInsn(opcode, owner, name, desc);
295 public void visitIntInsn(int opcode, int operand) {
297 mParentVisitor.visitIntInsn(opcode, operand);
301 public void visitJumpInsn(int opcode, Label label)
    [all...]
  /system/bluetooth/brfpatch/
brfpatch.c 41 " FORMAT: Send_HCI_xxxx OPCODE DATA1 DATA2 DATA3 ...\n"
42 " where OPCODE, DATA1 etc are one of:\n"
50 " FORMAT: 0x01 OPCODE DATA_LEN DATA\n");
54 static void dump_record(FILE *fpo, unsigned short opcode, unsigned char len,
59 fwrite(&opcode, 2, 1, fpo); // opcode
81 unsigned int opcode; local
83 FAILIF(advance(&buf), "Could not find opcode in: %s\n", buffer);
84 FAILIF(sscanf(buf, "0x%04x\n", &opcode) != 1,
85 "Could not find opcode in: %s\n", buffer)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 93 Rop opcode = originalRopInsn.getOpcode();
101 if (opcode.getBranchingness() == Rop.BRANCH_IF) {
107 RegOps.flippedIfOpcode(opcode.getOpcode()));
110 opcode.getOpcode());
113 opcode, sources.get(0), sources.get(1))) {
115 } else if (opcode.isCommutative()
117 opcode, sources.get(1), sources.get(0))) {
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 51 Opcodes.INVOKESPECIAL, // opcode
96 public void visitFieldInsn(int opcode, String owner, String name, String desc) {
111 public void visitInsn(int opcode) {
116 public void visitIntInsn(int opcode, int operand) {
121 public void visitJumpInsn(int opcode, Label label) {
157 public void visitMethodInsn(int opcode, String owner, String name, String desc) {
177 public void visitTypeInsn(int opcode, String type) {
182 public void visitVarInsn(int opcode, int var) {
  /external/proguard/src/proguard/classfile/editor/
MethodInvocationFixer.java 93 // Do we need to update the opcode?
94 byte opcode = constantInstruction.opcode;
100 if (opcode != InstructionConstants.OP_INVOKESTATIC)
121 if (opcode != InstructionConstants.OP_INVOKESPECIAL)
145 if (opcode != InstructionConstants.OP_INVOKEINTERFACE ||
169 if (opcode != InstructionConstants.OP_INVOKEVIRTUAL &&
170 (opcode != InstructionConstants.OP_INVOKESPECIAL ||
  /external/proguard/src/proguard/classfile/instruction/
Instruction.java 660 public byte opcode; field in class:Instruction
664 * Returns the canonical opcode of this instruction, i.e. typically the
665 * opcode whose extension has been removed.
669 return opcode;
695 // Write the wide opcode, if necessary.
701 // Write the opcode.
702 code[offset++] = opcode;
710 * Returns whether the instruction is wide, i.e. preceded by a wide opcode.
720 * Reads the data following the instruction opcode.
726 * Writes data following the instruction opcode
    [all...]
  /sdk/emulator/qtools/
Android.mk 21 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp
29 opcode.cpp read_elf.cpp parse_options.cpp
53 opcode.cpp read_elf.cpp parse_options.cpp
61 thumbdis.cpp opcode.cpp
69 opcode.cpp read_elf.cpp parse_options.cpp gtrace.cpp
77 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp dmtrace.cpp
85 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp
93 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp
101 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp
  /dalvik/vm/mterp/armv5te/
OP_EXECUTE_INLINE.S 20 bl .L${opcode}_continue @ make call; will return after
25 GET_INST_OPCODE(ip) @ extract opcode from rINST
41 .L${opcode}_continue:
55 ldr r9, .L${opcode}_table @ table of InlineOperation
59 .L${opcode}_table:
  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_VIRTUAL.S 56 je .L${opcode}_break
58 jmp .L${opcode}_continue
61 .L${opcode}_break:
76 jne .L${opcode}_continue
85 .L${opcode}_continue:
OP_IPUT.S 46 jne .L${opcode}_finish2
48 jmp .L${opcode}_finish
51 .L${opcode}_finish:
62 jne .L${opcode}_finish2
65 .L${opcode}_finish2:
OP_IPUT_WIDE.S 39 jne .L${opcode}_finish
45 jmp .L${opcode}_finish2
48 .L${opcode}_finish2:
54 jne .L${opcode}_finish
63 .L${opcode}_finish:

Completed in 532 milliseconds

1 2 3 4 56 7 8 91011>>