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

1234567891011>>

/external/proguard/src/proguard/optimize/peephole/
H A DGotoGotoReplacer.java78 byte opcode = branchInstruction.opcode;
79 if (opcode == InstructionConstants.OP_GOTO ||
80 opcode == InstructionConstants.OP_GOTO_W)
94 if (targetInstruction.opcode == InstructionConstants.OP_GOTO)
100 new BranchInstruction(opcode,
H A DGotoReturnReplacer.java78 byte opcode = branchInstruction.opcode;
79 if (opcode == InstructionConstants.OP_GOTO ||
80 opcode == InstructionConstants.OP_GOTO_W)
90 switch (targetInstruction.opcode)
100 new SimpleInstruction(targetInstruction.opcode);
H A DReachableCodeMarker.java118 byte opcode = simpleInstruction.opcode;
119 if (opcode == InstructionConstants.OP_IRETURN ||
120 opcode == InstructionConstants.OP_LRETURN ||
121 opcode == InstructionConstants.OP_FRETURN ||
122 opcode == InstructionConstants.OP_DRETURN ||
123 opcode == InstructionConstants.OP_ARETURN ||
124 opcode == InstructionConstants.OP_RETURN ||
125 opcode == InstructionConstants.OP_ATHROW)
139 if (variableInstruction.opcode
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DPlainInsn.java35 * @param opcode {@code non-null;} the opcode
40 public PlainInsn(Rop opcode, SourcePosition position, argument
42 super(opcode, position, result, sources);
44 switch (opcode.getBranchingness()) {
51 if (result != null && opcode.getBranchingness() != Rop.BRANCH_NONE) {
61 * @param opcode {@code non-null;} the opcode
66 public PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
68 this(opcode, positio
[all...]
H A DRegOps.java43 * <b>Note:</b> This opcode should only ever be used in the
284 * <b>Note:</b> This opcode should only ever be used in the
291 * <b>Note:</b> This opcode should only ever be used in the
307 * Gets the name of the given opcode.
309 * @param opcode the opcode
312 public static String opName(int opcode) { argument
313 switch (opcode) {
372 return "unknown-" + Hex.u1(opcode);
379 * @param opcode A
382 flippedIfOpcode(final int opcode) argument
[all...]
H A DRop.java52 /** the opcode; one of the constants in {@link RegOps} */
53 private final int opcode; field in class:Rop
83 * @param opcode the opcode; one of the constants in {@link RegOps}
94 public Rop(int opcode, Type result, TypeList sources, argument
118 this.opcode = opcode;
131 * @param opcode the opcode; one of the constants in {@link RegOps}
141 public Rop(int opcode, Typ argument
159 Rop(int opcode, Type result, TypeList sources, int branchingness, String nickname) argument
176 Rop(int opcode, Type result, TypeList sources, String nickname) argument
194 Rop(int opcode, Type result, TypeList sources, TypeList exceptions, String nickname) argument
210 Rop(int opcode, TypeList sources, TypeList exceptions) argument
[all...]
H A DCstInsn.java32 * @param opcode {@code non-null;} the opcode
38 public CstInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
40 super(opcode, position, result, sources);
H A DInsn.java26 * an opcode (which specifies operation and source/result types), a
31 /** {@code non-null;} opcode */
32 private final Rop opcode; field in class:Insn
46 * @param opcode {@code non-null;} the opcode
51 public Insn(Rop opcode, SourcePosition position, RegisterSpec result, argument
53 if (opcode == null) {
54 throw new NullPointerException("opcode == null");
65 this.opcode = opcode;
[all...]
/external/javassist/src/main/javassist/expr/
H A DNewArray.java30 int opcode; field in class:NewArray
35 opcode = op;
80 if (opcode == Opcode.NEWARRAY) {
84 else if (opcode == Opcode.ANEWARRAY
85 || opcode == Opcode.MULTIANEWARRAY) {
93 throw new RuntimeException("bad opcode: " + opcode);
123 if (opcode == Opcode.NEWARRAY)
125 else if (opcode == Opcode.ANEWARRAY
126 || opcode
242 int opcode; field in class:NewArray.ProceedForArray
[all...]
H A DFieldAccess.java27 int opcode; field in class:FieldAccess
32 opcode = op;
64 return isStatic(opcode);
75 return opcode == Opcode.GETFIELD || opcode == Opcode.GETSTATIC;
82 return opcode == Opcode.PUTFIELD || opcode == Opcode.PUTSTATIC;
186 jc.recordProceed(new ProceedForRead(retType, opcode,
191 jc.recordProceed(new ProceedForWrite(params[0], opcode,
226 int opcode; field in class:FieldAccess.ProceedForRead
274 int opcode; field in class:FieldAccess.ProceedForWrite
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstruction35c.java53 public Instruction35c(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, argument
55 super(opcode, referencedItem);
76 checkItem(opcode, referencedItem, regCount);
79 protected Instruction35c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
80 super(dexFile, opcode, buffer, bufferIndex);
93 checkItem(opcode, getReferencedItem(), getRegCount());
97 out.writeByte(opcode.value);
132 private static void checkItem(Opcode opcode, Item item, int regCount) { argument
133 if (opcode == FILLED_NEW_ARRAY) {
134 //check data for filled-new-array opcode
156 makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) argument
[all...]
H A DInstruction35s.java53 public Instruction35s(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG, argument
55 super(opcode, referencedItem);
69 checkItem(opcode, referencedItem, regCount);
79 protected Instruction35s(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
80 super(dexFile, opcode, buffer, bufferIndex);
86 checkItem(opcode, getReferencedItem(), getRegCount());
97 out.writeByte(opcode.value);
132 private static void checkItem(Opcode opcode, Item item, int regCount) { argument
133 if (opcode == FILLED_NEW_ARRAY) {
134 //check data for filled-new-array opcode
156 makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) argument
[all...]
H A DInstruction22c.java45 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) { argument
46 super(opcode, referencedItem);
57 private Instruction22c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
58 super(dexFile, opcode, buffer, bufferIndex);
65 out.writeByte(opcode.value);
83 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
84 return new Instruction22c(dexFile, opcode, buffer, bufferIndex);
H A DInstruction22cs.java45 public Instruction22cs(Opcode opcode, byte regA, byte regB, int fieldOffset) { argument
46 super(opcode);
62 private Instruction22cs(Opcode opcode, byte[] buffer, int bufferIndex) { argument
63 super(opcode);
71 out.writeByte(opcode.value);
93 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
94 return new Instruction22cs(opcode, buffer, bufferIndex);
H A DInstruction3rms.java45 public Instruction3rms(Opcode opcode, short regCount, int startReg, int methodIndex) { argument
46 super(opcode);
71 private Instruction3rms(Opcode opcode, byte[] buffer, int bufferIndex) { argument
72 super(opcode);
80 out.writeByte(opcode.value);
103 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
104 return new Instruction3rms(opcode, buffer, bufferIndex);
/external/tcpdump/
H A Dprint-tftp.c80 register int opcode, i; local
90 opcode = EXTRACT_16BITS(&tp->th_opcode);
91 cp = tok2str(op2str, "tftp-#%d", opcode);
93 /* Bail if bogus opcode */
97 switch (opcode) {
113 if (opcode != OACK)
116 if (opcode != OACK)
154 printf("(unknown #%d)", opcode);
/external/chromium/sdch/open-vcdiff/src/
H A Dcodetable_test.cc44 int opcode) {
45 g_exercise_code_table_->inst1[opcode] = inst1;
46 g_exercise_code_table_->mode1[opcode] = mode1;
47 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
48 g_exercise_code_table_->inst2[opcode] = inst2;
49 g_exercise_code_table_->mode2[opcode] = mode2;
50 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
55 int opcode = 0; local
74 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
75 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode
38 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
92 VerifyInstruction(unsigned char opcode, unsigned char inst, unsigned char size, unsigned char mode) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DStackSizeComputer.java165 byte opcode = simpleInstruction.opcode;
169 opcode == InstructionConstants.OP_IRETURN ||
170 opcode == InstructionConstants.OP_LRETURN ||
171 opcode == InstructionConstants.OP_FRETURN ||
172 opcode == InstructionConstants.OP_DRETURN ||
173 opcode == InstructionConstants.OP_ARETURN ||
174 opcode == InstructionConstants.OP_RETURN ||
175 opcode == InstructionConstants.OP_ATHROW;
186 byte opcode
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DInstructionIterator.java46 Opcode opcode = Opcode.getOpcodeByValue(insns[insnsPosition]);
50 if (opcode == null) {
51 throw new RuntimeException("Unknown opcode: " + Hex.u1(insns[insnsPosition]));
54 if (opcode == Opcode.NOP) {
79 instruction = opcode.format.Factory.makeInstruction(dexFile, opcode, insns, insnsPosition);
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DOneRegisterDecodedInstruction.java31 public OneRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
34 super(format, opcode, index, indexType, target, literal);
H A DRegisterRangeDecodedInstruction.java35 public RegisterRangeDecodedInstruction(InstructionCodec format, int opcode, argument
38 super(format, opcode, index, indexType, target, literal);
H A DTwoRegisterDecodedInstruction.java34 public TwoRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
37 super(format, opcode, index, indexType, target, literal);
H A DInstructionCodec.java48 int opcode = byte0(opcodeUnit);
51 this, opcode, 0, null,
63 int opcode = byte0(opcodeUnit);
67 this, opcode, 0, null,
82 int opcode = byte0(opcodeUnit);
86 this, opcode, 0, null,
101 int opcode = byte0(opcodeUnit);
104 this, opcode, 0, null,
118 int opcode = byte0(opcodeUnit);
121 this, opcode,
[all...]
/external/regex-re2/re2/
H A Dprog.h88 // Constructors per opcode
99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } function in class:re2::Prog::Inst
101 int out1() { DCHECK(opcode() == kInstAlt || opcode() == kInstAltMatch); return out1_; }
102 int cap() { DCHECK_EQ(opcode(), kInstCapture); return cap_; }
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; }
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
105 int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return foldcase_; }
106 int match_id() { DCHECK_EQ(opcode(), kInstMatch); return match_id_; }
107 EmptyOp empty() { DCHECK_EQ(opcode(), kInstEmptyWidt
129 set_opcode(InstOp opcode) argument
137 set_out_opcode(int out, InstOp opcode) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCstInsn.java47 * @param opcode the opcode; one of the constants from {@link Dops}
54 public CstInsn(Dop opcode, SourcePosition position, argument
56 super(opcode, position, registers);
69 public DalvInsn withOpcode(Dop opcode) { argument
71 new CstInsn(opcode, getPosition(), getRegisters(), constant);

Completed in 244 milliseconds

1234567891011>>