HomeSort by relevance Sort by last modified time
    Searched refs:Opcode (Results 1 - 25 of 293) 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...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
Opcode.java 35 public enum Opcode
37 NOP((byte)0x00, "nop", ReferenceType.none, Format.Format10x, Opcode.CAN_CONTINUE),
38 MOVE((byte)0x01, "move", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
39 MOVE_FROM16((byte)0x02, "move/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
40 MOVE_16((byte)0x03, "move/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
41 MOVE_WIDE((byte)0x04, "move-wide", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER)
314 opcodesByName.put(opcode.name.hashCode(), opcode); typedefs
    [all...]
Instruction.java 36 public final Opcode opcode; field in class:Instruction
44 return opcode.format.size/2;
47 protected Instruction(Opcode opcode) {
48 this.opcode = opcode;
63 opcode.name + " instruction");
69 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [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/llvm/include/llvm/MC/
MCInstrInfo.h 46 /// specified instruction opcode.
48 const MCInstrDesc &get(unsigned Opcode) const {
49 assert(Opcode < NumOpcodes && "Invalid opcode!");
50 return Desc[Opcode];
53 /// getName - Returns the name for the instructions with the given opcode.
54 const char *getName(unsigned Opcode) const {
55 assert(Opcode < NumOpcodes && "Invalid opcode!");
56 return &InstrNameData[InstrNameIndices[Opcode]];
    [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...]
opcode.h 9 // the opflags[] array in opcode.cpp.
10 enum Opcode {
113 // Define bit flags for the opcode categories
132 inline bool isALU(Opcode op) { return (opcode_flags[op] & kCatAlu) != 0; }
133 inline bool isBranch(Opcode op) { return (opcode_flags[op] & kCatBranch) != 0; }
134 inline bool isBranchLink(Opcode op) {
137 inline bool isBranchExch(Opcode op) {
140 inline bool isLoad(Opcode op) { return (opcode_flags[op] & kCatLoad) != 0; }
141 inline bool isLoadMultiple(Opcode op) {
144 inline bool isStoreMultiple(Opcode op)
    [all...]
  /dalvik/libdex/
DexOpcodes.cpp 18 * Table of Dalvik opcode names.
21 * automatically by the opcode-gen tool. Any edits to the generated
29 * Dalvik opcode names.
32 // BEGIN(libdex-opcode-names); GENERATED AUTOMATICALLY BY opcode-gen
289 // END(libdex-opcode-names)
293 * Return the name of an opcode.
295 const char* dexGetOpcodeName(Opcode op)
  /dalvik/vm/native/
dalvik_bytecode_OpcodeInfo.cpp 29 * public static native boolean isInvoke(int opcode);
34 Opcode opcode = static_cast<Opcode>(args[0]); local
35 int flags = dexGetFlagsFromOpcode(opcode);
  /external/llvm/lib/MC/
MCInstPrinter.cpp 21 /// getOpcodeName - Return the name of the specified opcode enum (e.g.
23 StringRef MCInstPrinter::getOpcodeName(unsigned Opcode) const {
24 return MII.getName(Opcode);
  /external/webkit/Source/WebCore/xml/
XPathPredicate.h 67 enum Opcode {
70 NumericOp(Opcode, Expression* lhs, Expression* rhs);
75 Opcode m_opcode;
80 enum Opcode { OP_EQ, OP_NE, OP_GT, OP_LT, OP_GE, OP_LE };
81 EqTestOp(Opcode, Expression* lhs, Expression* rhs);
87 Opcode m_opcode;
92 enum Opcode { OP_And, OP_Or };
93 LogicalOp(Opcode, Expression* lhs, Expression* rhs);
99 Opcode m_opcode;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCPredicates.h 33 Predicate InvertPredicate(Predicate Opcode);
PPCPredicates.cpp 19 PPC::Predicate PPC::InvertPredicate(PPC::Predicate Opcode) {
20 switch (Opcode) {
21 default: llvm_unreachable("Unknown PPC branch opcode!");
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction10x.java 32 import org.jf.dexlib.Code.Opcode;
39 public Instruction10x(Opcode opcode) {
40 super(opcode);
43 public Instruction10x(Opcode opcode, byte[] buffer, int bufferIndex) {
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)
    [all...]
Instruction21c.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction21c(Opcode opcode, short regA, Item referencedItem) {
45 super(opcode, referencedItem);
51 if (opcode == Opcode.NEW_INSTANCE) {
54 throw new RuntimeException("Only class references can be used with the new-instance opcode");
61 private Instruction21c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
62 super(dexFile, opcode, buffer, bufferIndex)
    [all...]
Instruction10t.java 33 import org.jf.dexlib.Code.Opcode;
41 public Instruction10t(Opcode opcode, int offA) {
42 super(opcode);
53 private Instruction10t(Opcode opcode, byte[] buffer, int bufferIndex) {
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)
    [all...]
Instruction11n.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction11n(Opcode opcode, byte regA, byte litB) {
45 super(opcode);
60 private Instruction11n(Opcode opcode, byte[] buffer, int bufferIndex) {
61 super(opcode);
68 out.writeByte(opcode.value);
85 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction11x.java 32 import org.jf.dexlib.Code.Opcode;
42 public Instruction11x(Opcode opcode, short regA) {
43 super(opcode);
52 private Instruction11x(Opcode opcode, byte[] buffer, int bufferIndex) {
53 super(opcode);
59 out.writeByte(opcode.value);
72 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
Instruction12x.java 32 import org.jf.dexlib.Code.Opcode;
43 public Instruction12x(Opcode opcode, byte regA, byte regB) {
44 super(opcode);
55 private Instruction12x(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
62 out.writeByte(opcode.value);
79 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [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...]
ExprEditor.java 184 if (c < Opcode.GETSTATIC) // c < 178
186 else if (c < Opcode.NEWARRAY) { // c < 188
187 if (c == Opcode.INVOKESTATIC
188 || c == Opcode.INVOKEINTERFACE
189 || c == Opcode.INVOKEVIRTUAL) {
193 else if (c == Opcode.GETFIELD || c == Opcode.GETSTATIC
194 || c == Opcode.PUTFIELD
195 || c == Opcode.PUTSTATIC) {
199 else if (c == Opcode.NEW)
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 13 import javassist.bytecode.Opcode;
118 /* 12 */ addJump(code, Opcode.GOTO, 125);
122 /* 20 */ addJump(code, Opcode.GOTO, 125);
124 /* 25 */ addJump(code, Opcode.JSR, 31);
126 /* 30 */ code.addOpcode(Opcode.ATHROW);
130 /* 33 */ code.addOpcode(Opcode.LOOKUPSWITCH);
139 /* 66 */ addJump(code, Opcode.GOTO, 111);
141 /* 71 */ addJump(code, Opcode.JSR, 77);
143 /* 76 */ code.add(Opcode.ATHROW);
148 /* 85 */ addJump(code, Opcode.GOTO, 106)
    [all...]
  /dalvik/vm/compiler/
Loop.h 30 Opcode loopBranchOpcode; // OP_IF_XXX for the loop back branch
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
OffsetInstructionFormatMethodItem.java 36 import org.jf.dexlib.Code.Opcode;
72 if (instruction.opcode == Opcode.FILL_ARRAY_DATA) {
75 if (instruction.opcode == Opcode.PACKED_SWITCH) {
78 assert instruction.opcode == Opcode.SPARSE_SWITCH;

Completed in 409 milliseconds

1 2 3 4 5 6 7 8 91011>>