HomeSort by relevance Sort by last modified time
    Searched full:opcode (Results 1 - 25 of 2804) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
OdexedFieldInstructionMapper.java 31 import org.jf.dexlib.Code.Opcode;
34 private static Opcode[][][][] opcodeMap = new Opcode[][][][] {
36 new Opcode[][][] {
38 new Opcode[][] {
40 new Opcode[] {
41 /*Z*/ Opcode.IGET_QUICK,
42 /*B*/ Opcode.IGET_QUICK,
43 /*S*/ Opcode.IGET_QUICK,
44 /*C*/ Opcode.IGET_QUICK
    [all...]
  /sdk/emulator/qtools/
armdis.h 7 #include "opcode.h"
12 static Opcode decode(uint32_t insn);
15 static Opcode decode00(uint32_t insn);
16 static Opcode decode01(uint32_t insn);
17 static Opcode decode10(uint32_t insn);
18 static Opcode decode11(uint32_t insn);
19 static Opcode decode_mul(uint32_t insn);
20 static Opcode decode_ldrh(uint32_t insn);
21 static Opcode decode_alu(uint32_t insn);
23 static char *disasm_alu(Opcode opcode, uint32_t insn, char *ptr)
    [all...]
  /art/test/056-const-string-jumbo/
info.txt 1 Test that the opcode const-string/jumbo works.
  /dalvik/tests/056-const-string-jumbo/
info.txt 1 Test that the opcode const-string/jumbo works.
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
Opcode.java 35 public enum Opcode
37 NOP((short)0x00, "nop", ReferenceType.none, Format.Format10x, Opcode.CAN_CONTINUE),
38 MOVE((short)0x01, "move", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
39 MOVE_FROM16((short)0x02, "move/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
40 MOVE_16((short)0x03, "move/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
41 MOVE_WIDE((short)0x04, "move-wide", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER)
382 opcodesByName.put(opcode.name.hashCode(), opcode); typedefs
420 opcodesByName.put(opcode.name.hashCode(), opcode); local
    [all...]
InstructionWithReference.java 38 protected InstructionWithReference(Opcode opcode, Item referencedItem) {
39 super(opcode);
41 this.referenceType = opcode.referenceType;
45 protected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) {
46 super(opcode);
52 protected InstructionWithReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
53 super(opcode);
    [all...]
  /external/llvm/bindings/python/llvm/tests/
test_core.py 2 from ..core import OpCode
7 self.assertTrue(hasattr(OpCode, 'Ret'))
8 self.assertTrue(isinstance(OpCode.Ret, OpCode))
9 self.assertEqual(OpCode.Ret.value, 1)
11 op = OpCode.from_value(1)
12 self.assertTrue(isinstance(op, OpCode))
13 self.assertEqual(op, OpCode.Ret)
  /external/javassist/src/main/javassist/bytecode/analysis/
Util.java 18 import javassist.bytecode.Opcode;
25 public class Util implements Opcode {
27 int opcode = iter.byteAt(pos); local
28 pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1);
32 public static boolean isJumpInstruction(int opcode) {
33 return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode == GOTO_W
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/tests/
lc3b-ea-err.errwarn 1 -:1: error: invalid combination of opcode and operands
  /dalvik/vm/mterp/x86/
OP_DIV_LONG.S 11 je .L${opcode}_check_zero
13 je .L${opcode}_check_neg1
14 .L${opcode}_notSpecial:
17 .L${opcode}_notSpecial1:
22 .L${opcode}_finish:
30 .L${opcode}_check_zero:
32 jne .L${opcode}_notSpecial
34 .L${opcode}_check_neg1:
36 jne .L${opcode}_notSpecial
40 jne .L${opcode}_notSpecial
    [all...]
OP_DIV_LONG_2ADDR.S 12 je .L${opcode}_check_zero
14 je .L${opcode}_check_neg1
15 .L${opcode}_notSpecial:
18 .L${opcode}_notSpecial1:
23 .L${opcode}_finish:
31 .L${opcode}_check_zero:
33 jne .L${opcode}_notSpecial
35 .L${opcode}_check_neg1:
37 jne .L${opcode}_notSpecial
41 jne .L${opcode}_notSpecial
    [all...]
OP_CMPG_DOUBLE.S 21 jp .L${opcode}_isNaN
22 je .L${opcode}_finish
24 jb .L${opcode}_finish
26 .L${opcode}_finish:
31 .L${opcode}_isNaN:
33 jmp .L${opcode}_finish
  /art/compiler/dex/quick/
mir_to_lir-inl.h 41 inline LIR* Mir2Lir::RawLIR(int dalvik_offset, int opcode, int op0,
45 insn->opcode = opcode;
53 if ((opcode == kPseudoTargetLabel) || (opcode == kPseudoSafepointPC) ||
54 (opcode == kPseudoExportedPC)) {
65 inline LIR* Mir2Lir::NewLIR0(int opcode) {
66 DCHECK(is_pseudo_opcode(opcode) || (GetTargetInstFlags(opcode) & NO_OPERAND))
67 << GetTargetInstName(opcode) << " " << opcode << "
137 int opcode = lir->opcode; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 20 * Representation of an opcode.
23 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode value itself */
24 private final int opcode; field in class:Dop
26 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode family */
32 /** whether this opcode uses a result register */
41 * @param opcode {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
45 * @param hasResult whether the opcode has a result register; if so it
49 public Dop(int opcode, int family, InsnFormat format
    [all...]
  /external/proguard/src/proguard/optimize/info/
ExceptionInstructionChecker.java 67 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 == InstructionConstants.OP_DALOAD |
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
Liveness.java 248 if (op == Opcode.IINC) {
252 else if (op == Opcode.WIDE)
259 case Opcode.ILOAD :
260 case Opcode.LLOAD :
261 case Opcode.FLOAD :
262 case Opcode.DLOAD :
263 case Opcode.ALOAD :
266 case Opcode.ILOAD_0 :
267 case Opcode.ILOAD_1 :
268 case Opcode.ILOAD_2
    [all...]
Tracer.java 19 import javassist.bytecode.Opcode;
157 case Opcode.NOP :
159 case Opcode.ACONST_NULL :
162 case Opcode.ICONST_M1 :
163 case Opcode.ICONST_0 :
164 case Opcode.ICONST_1 :
165 case Opcode.ICONST_2 :
166 case Opcode.ICONST_3 :
167 case Opcode.ICONST_4 :
168 case Opcode.ICONST_5
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.h 40 enum OpCode {
56 static bool isNonControlOpCode(OpCode opCode) { return opCode == OpCodeContinuation || opCode == OpCodeText || opCode == OpCodeBinary; }
57 static bool isControlOpCode(OpCode opCode) { return opCode == OpCodeClose || opCode == OpCodePing || opCode == OpCodePong;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 23 * 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
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dop.java 23 * 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
    [all...]
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.cc 44 EvalResult OpcodeEval(PolicyOpcode* opcode, const ParameterSet* pp,
48 // Opcode OpAlwaysFalse:
56 EvalResult OpcodeEval<OP_ALWAYS_FALSE>(PolicyOpcode* opcode,
59 UNREFERENCED_PARAMETER(opcode);
66 // Opcode OpAlwaysTrue:
74 EvalResult OpcodeEval<OP_ALWAYS_TRUE>(PolicyOpcode* opcode,
77 UNREFERENCED_PARAMETER(opcode);
84 // Opcode OpAction:
90 PolicyOpcode* opcode = MakeBase(OP_ACTION, options, 0); local
91 if (NULL == opcode) return NULL
116 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local
126 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local
167 PolicyOpcode* opcode = MakeBase(OP_ULONG_MATCH_RANGE, options, local
199 PolicyOpcode* opcode = MakeBase(OP_ULONG_AND_MATCH, options, selected_param); local
241 PolicyOpcode* opcode = MakeBase(OP_WSTRING_MATCH, options, selected_param); local
360 PolicyOpcode* opcode = new(memory_top_) PolicyOpcode(); local
    [all...]
  /art/compiler/dex/quick/x86/
utility_x86.cc 26 int opcode; local
30 opcode = kX86MovsdRR;
34 opcode = kX86MovssRR;
36 opcode = kX86MovdxrRR;
40 opcode = kX86MovdrxRR;
43 DCHECK_NE((EncodingMap[opcode].flags & IS_BINARY_OP), 0ULL);
44 LIR* res = RawLIR(current_dalvik_offset_, opcode, r_dest, r_src);
116 X86OpCode opcode = kX86Bkpt; local
118 case kOpNeg: opcode = kX86Neg32R; break;
119 case kOpNot: opcode = kX86Not32R; break
128 X86OpCode opcode = kX86Bkpt; local
154 X86OpCode opcode = kX86Nop; local
200 X86OpCode opcode = kX86Nop; local
272 X86OpCode opcode = IS_SIMM8(value) ? kX86Imul32RRI8 : kX86Imul32RRI; local
296 X86OpCode opcode = kX86Bkpt; local
307 X86OpCode opcode = kX86Bkpt; local
352 X86OpCode opcode = kX86Nop; local
470 X86OpCode opcode = kX86Nop; local
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430InstrFormats.td 77 class IForm<bits<4> opcode, DestMode dest, bit bw, SourceMode src, SizeVal sz,
85 let Inst{12-15} = opcode;
92 class IForm8<bits<4> opcode, DestMode dest, SourceMode src, SizeVal sz,
94 : IForm<opcode, dest, 1, src, sz, outs, ins, asmstr, pattern>;
96 class I8rr<bits<4> opcode,
98 : IForm8<opcode, DstReg, SrcReg, Size2Bytes, outs, ins, asmstr, pattern>;
100 class I8ri<bits<4> opcode,
102 : IForm8<opcode, DstReg, SrcImm, Size4Bytes, outs, ins, asmstr, pattern>;
104 class I8rm<bits<4> opcode,
106 : IForm8<opcode, DstReg, SrcMem, Size4Bytes, outs, ins, asmstr, pattern>
    [all...]
  /external/javassist/src/main/javassist/expr/
NewArray.java 30 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);
242 int opcode; field in class:NewArray.ProceedForArray
    [all...]
  /dalvik/dx/tests/104-verify-return-ops/
info.txt 2 the appropriate types and that the opcode matches the method signature.

Completed in 505 milliseconds

1 2 3 4 5 6 7 8 91011>>