Searched defs:opcode (Results 1 - 25 of 241) sorted by relevance

12345678910

/external/javassist/src/main/javassist/bytecode/
H A DBadBytecode.java22 public BadBytecode(int opcode) { argument
23 super("bytecode " + opcode);
/external/elfutils/libdw/
H A Ddwarf_getmacros.c91 unsigned int opcode = *readp++; local
97 switch (opcode)
137 mac.opcode = 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/chromium/sdch/open-vcdiff/src/
H A Dcodetable.cc56 { { R, // opcode 0
78 { N, // opcode 0
100 { 0, // opcode 0
122 { 0, // opcode 0
144 { 0, // opcode 0
166 { 0, // opcode 0
188 bool VCDiffCodeTableData::ValidateOpcode(int opcode, argument
198 LOG(ERROR) << "VCDiff: Bad code table; opcode " << opcode << " has invalid "
204 LOG(ERROR) << "VCDiff: Bad code table; opcode " << opcod
[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 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);
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 DVariableSizeInsn.java40 public final DalvInsn withOpcode(Dop opcode) { argument
H A DZeroSizeInsn.java53 public final DalvInsn withOpcode(Dop opcode) { argument
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...]
H A DTargetInsn.java34 * @param opcode the opcode; one of the constants from {@link Dops}
41 public TargetInsn(Dop opcode, SourcePosition position, argument
43 super(opcode, position, registers);
54 public DalvInsn withOpcode(Dop opcode) { argument
55 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
66 * opcode has the opposite sense (as a test; e.g. a
75 Dop opcode = getOpcode().getOppositeTest();
77 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
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
H A DSparseSwitchPayloadDecodedInstruction.java38 int opcode, int[] keys, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
37 SparseSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int[] keys, int[] targets) argument
H A DZeroRegisterDecodedInstruction.java28 public ZeroRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
30 super(format, opcode, index, indexType, target, literal);
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...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DConservativeTranslationAdvice.java37 public boolean hasConstantOperation(Rop opcode, argument
43 public boolean requiresSourcesInOrder(Rop opcode, argument
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 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
/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/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java180 private static void addJump(Bytecode code, int opcode, int pos) { argument
182 code.addOpcode(opcode);
/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java44 public SwitchInstruction(byte opcode, argument
48 this.opcode = opcode;
61 this.opcode = switchInstruction.opcode;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DOdexedFieldInstructionMapper.java205 private static int getOpcodeSubtype(Opcode opcode) { argument
206 if (opcode.isOdexedInstanceQuick()) {
208 } else if (opcode.isOdexedInstanceVolatile()) {
210 } else if (opcode.isOdexedStaticVolatile()) {
213 throw new RuntimeException(String.format("Not an odexed field access opcode: %s", opcode.name));
/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);
/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/bluetooth/bluedroid/hci/src/
H A Dbt_hw.c160 static uint8_t xmit_cb(uint16_t opcode, void *p_buf, tINT_CMD_CBACK p_cback) argument
162 return p_hci_if->send_int_cmd(opcode, (HC_BT_HDR *)p_buf, p_cback);

Completed in 333 milliseconds

12345678910