Searched refs:opcode (Results 1 - 25 of 375) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/bytecode/analysis/
H A DUtil.java27 int opcode = iter.byteAt(pos);
28 pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1);
32 public static boolean isJumpInstruction(int opcode) { argument
33 return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode
36 isGoto(int opcode) argument
40 isJsr(int opcode) argument
44 isReturn(int opcode) argument
[all...]
/external/proguard/src/proguard/optimize/info/
H A DExceptionInstructionChecker.java67 byte opcode = simpleInstruction.opcode;
70 if (opcode == InstructionConstants.OP_IDIV ||
71 opcode == InstructionConstants.OP_LDIV ||
72 opcode == InstructionConstants.OP_IREM ||
73 opcode == InstructionConstants.OP_LREM ||
74 opcode == InstructionConstants.OP_IALOAD ||
75 opcode == InstructionConstants.OP_LALOAD ||
76 opcode == InstructionConstants.OP_FALOAD ||
77 opcode
[all...]
H A DSideEffectInstructionChecker.java76 byte opcode = simpleInstruction.opcode;
79 if (opcode == InstructionConstants.OP_IASTORE ||
80 opcode == InstructionConstants.OP_LASTORE ||
81 opcode == InstructionConstants.OP_FASTORE ||
82 opcode == InstructionConstants.OP_DASTORE ||
83 opcode == InstructionConstants.OP_AASTORE ||
84 opcode == InstructionConstants.OP_BASTORE ||
85 opcode == InstructionConstants.OP_CASTORE ||
86 opcode
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DFillArrayDataPayloadDecodedInstruction.java39 int opcode, Object data, int size, int elementWidth) {
40 super(format, opcode, 0, null, 0, 0L);
51 int opcode, byte[] data) {
52 this(format, opcode, data, data.length, 1);
59 int opcode, short[] data) {
60 this(format, opcode, data, data.length, 2);
67 int opcode, int[] data) {
68 this(format, opcode, data, data.length, 4);
75 int opcode, long[] data) {
76 this(format, opcode, dat
38 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, Object data, int size, int elementWidth) argument
50 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, byte[] data) argument
58 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, short[] data) argument
66 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, int[] data) argument
74 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, long[] data) argument
[all...]
H A DPackedSwitchPayloadDecodedInstruction.java38 int opcode, int firstKey, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
37 PackedSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int firstKey, int[] targets) argument
/external/proguard/src/proguard/classfile/instruction/
H A DBranchInstruction.java44 public BranchInstruction(byte opcode, int branchOffset) argument
46 this.opcode = opcode;
58 this.opcode = branchInstruction.opcode;
70 switch (opcode)
76 default: return opcode;
86 if (opcode == InstructionConstants.OP_GOTO_W)
88 opcode = InstructionConstants.OP_GOTO;
90 else if (opcode
[all...]
H A DSwitchInstruction.java44 public SwitchInstruction(byte opcode, argument
48 this.opcode = opcode;
61 this.opcode = switchInstruction.opcode;
H A DVariableInstruction.java52 public VariableInstruction(byte opcode) argument
54 this(opcode, embeddedVariable(opcode), 0);
58 public VariableInstruction(byte opcode, argument
61 this(opcode, variableIndex, 0);
65 public VariableInstruction(byte opcode, argument
69 this.opcode = opcode;
84 this.opcode = variableInstruction.opcode;
97 embeddedVariable(byte opcode) argument
[all...]
H A DSimpleInstruction.java45 * Creates a new SimpleInstruction with the given opcode.
47 public SimpleInstruction(byte opcode) argument
49 this(opcode, embeddedConstant(opcode));
54 * Creates a new SimpleInstruction with the given opcode and constant.
56 public SimpleInstruction(byte opcode, int constant) argument
58 this.opcode = opcode;
70 this.opcode = simpleInstruction.opcode;
81 embeddedConstant(byte opcode) argument
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DInstructionWithReference.java38 protected InstructionWithReference(Opcode opcode, Item referencedItem) { argument
39 super(opcode);
41 this.referenceType = opcode.referenceType;
45 protected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) { argument
46 super(opcode);
52 protected InstructionWithReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
53 super(opcode);
55 this.referenceType = readReferenceType(opcode, buffer, bufferIndex);
57 lookupReferencedItem(dexFile, opcode, itemIndex);
72 protected ReferenceType readReferenceType(Opcode opcode, byt argument
76 lookupReferencedItem(DexFile dexFile, Opcode opcode, int itemIndex) argument
[all...]
H A DInstruction.java36 public final Opcode opcode; field in class:Instruction
44 return opcode.format.size/2;
47 protected Instruction(Opcode opcode) { argument
48 this.opcode = opcode;
63 opcode.name + " instruction");
69 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex); argument
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DTranslationAdvice.java28 * instruction with the given opcode operating on the given arguments,
33 * @param opcode {@code non-null;} the opcode
39 public boolean hasConstantOperation(Rop opcode, argument
44 * specified opcode to be in order and contiguous (eg, for an invoke-range)
46 * @param opcode {@code non-null;} opcode
51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources); argument
H A DConservativeTranslationAdvice.java37 public boolean hasConstantOperation(Rop opcode, argument
43 public boolean requiresSourcesInOrder(Rop opcode, argument
/external/javassist/src/main/javassist/bytecode/
H A DBadBytecode.java22 public BadBytecode(int opcode) { argument
23 super("bytecode " + opcode);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstruction10x.java39 public Instruction10x(Opcode opcode) { argument
40 super(opcode);
43 public Instruction10x(Opcode opcode, byte[] buffer, int bufferIndex) { argument
44 super(opcode);
46 assert buffer[bufferIndex] == opcode.value;
51 out.writeByte(opcode.value);
60 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
61 return new Instruction10x(opcode, buffer, bufferIndex);
H A DInstruction10t.java41 public Instruction10t(Opcode opcode, int offA) { argument
42 super(opcode);
53 private Instruction10t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
54 super(opcode);
56 assert buffer[bufferIndex] == opcode.value;
71 out.writeByte(opcode.value);
88 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
89 return new Instruction10t(opcode, buffer, bufferIndex);
H A DInstruction20t.java42 public Instruction20t(Opcode opcode, int offA) { argument
43 super(opcode);
54 private Instruction20t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
55 super(opcode);
57 assert buffer[bufferIndex] == opcode.value;
72 out.writeByte(opcode.value);
90 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
91 return new Instruction20t(opcode, buffer, bufferIndex);
H A DInstruction30t.java42 public Instruction30t(Opcode opcode, int offA) { argument
43 super(opcode);
47 private Instruction30t(Opcode opcode, byte[] buffer, int bufferIndex) { argument
48 super(opcode);
50 assert buffer[bufferIndex] == opcode.value;
56 out.writeByte(opcode.value);
74 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
75 return new Instruction30t(opcode, buffer, bufferIndex);
/external/chromium/sdch/open-vcdiff/src/
H A Dinstruction_map.cc90 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) {
91 if (second_opcodes_[opcode] != NULL) {
96 delete[] second_opcodes_[opcode][inst_mode];
98 delete[] second_opcodes_[opcode];
159 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) {
160 if (code_table_data.inst2[opcode]
192 opcode); local
[all...]
H A Ddecodetable.cc59 unsigned char opcode = 0; local
66 // from the most recently processed opcode.
67 opcode = static_cast<unsigned char>(pending_second_instruction_);
69 instruction_type = code_table_data_->inst2[opcode];
70 instruction_size = code_table_data_->size2[opcode];
71 instruction_mode = code_table_data_->mode2[opcode];
78 opcode = **instructions_and_sizes_;
79 if (code_table_data_->inst2[opcode] != VCD_NOOP) {
80 // This opcode contains two instructions; process the first one now, and
86 instruction_type = code_table_data_->inst1[opcode];
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DSimpleInsn.java31 * @param opcode the opcode; one of the constants from {@link Dops}
37 public SimpleInsn(Dop opcode, SourcePosition position, argument
39 super(opcode, position, registers);
44 public DalvInsn withOpcode(Dop opcode) { argument
45 return new SimpleInsn(opcode, getPosition(), getRegisters());
H A DDop.java23 * Representation of an opcode.
26 /** {@code Opcodes.isValid();} the opcode value itself */
27 private final int opcode; field in class:Dop
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
34 * when attempting to match an opcode to particular arguments;
36 * opcode to try in a particular chain
43 /** whether this opcode uses a result register */
49 * @param opcode {@code Opcodes.isValid();} the opcode valu
60 Dop(int opcode, int family, int nextOpcode, InsnFormat format, boolean hasResult) argument
[all...]
/external/elfutils/libdw/
H A Ddwarf_macro_opcode.c1 /* Return macro opcode.
64 *opcodep = macro->opcode;
/external/emma/core/java12/com/vladium/jcd/opcodes/
H A DIOpcodeVisitor.java20 void visit (int opcode, boolean wide, int offset, Object ctx); argument
/external/tcpdump/
H A Dprint-zephyr.c51 char *opcode; member in struct:z_packet
169 PARSE_FIELD_STR(z.opcode);
199 if (!strcmp(z.opcode, "USER_HIDE"))
201 else if (!strcmp(z.opcode, "USER_UNHIDE"))
209 printf(" zephyr-admin %s", str_to_lower(z.opcode));
215 if (!strcmp(z.opcode, "SUBSCRIBE") ||
216 !strcmp(z.opcode, "SUBSCRIBE_NODEFS") ||
217 !strcmp(z.opcode, "UNSUBSCRIBE")) {
219 printf(" %ssub%s", strcmp(z.opcode, "SUBSCRIBE") ? "un" : "",
220 strcmp(z.opcode, "SUBSCRIBE_NODEF
[all...]

Completed in 452 milliseconds

1234567891011>>