HomeSort by relevance Sort by last modified time
    Searched refs:Opcode (Results 1 - 25 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /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...]
  /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...]
  /external/llvm/include/llvm/MC/
MCInstrInfo.h 41 /// specified instruction opcode.
43 const MCInstrDesc &get(unsigned Opcode) const {
44 assert(Opcode < NumOpcodes && "Invalid opcode!");
45 return Desc[Opcode];
  /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
545 // END(libdex-opcode-names)
549 * Return the name of an opcode.
551 const char* dexGetOpcodeName(Opcode op)
InstrUtils.h 29 * See the file opcode-gen/README.txt for information about updating
33 kFmt00x = 0, // unknown format (also used for "breakpoint" opcode)
90 * Instruction width implied by an opcode's format; a value in the
98 * Opcode control flow flags, used by the verifier and JIT.
111 * Struct that includes a pointer to each of the opcode information
141 Opcode opcode; member in struct:DecodedInstruction
146 * Return the instruction width of the specified opcode, or 0 if not defined.
148 DEX_INLINE size_t dexGetWidthFromOpcode(Opcode opcode)
    [all...]
  /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/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;
XPathParser.h 51 NumericOp::Opcode numop;
52 EqTestOp::Opcode eqop;
57 Token(int t, NumericOp::Opcode v): type(t), numop(v) {}
58 Token(int t, EqTestOp::Opcode v): type(t), eqop(v) {}
99 Token makeTokenAndAdvance(int type, NumericOp::Opcode, int advance = 1);
100 Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1);
  /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/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/llvm/lib/MC/
MCInstPrinter.cpp 19 /// getOpcodeName - Return the name of the specified opcode enum (e.g.
21 StringRef MCInstPrinter::getOpcodeName(unsigned Opcode) const {
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 79 PPCHazardRecognizer970::GetInstrType(unsigned Opcode,
83 if ((int)Opcode >= 0) {
87 Opcode = ~Opcode;
89 const MCInstrDesc &MCID = TII.get(Opcode);
147 unsigned Opcode = Node->getMachineOpcode();
179 if (HasCTRSet && (Opcode == PPC::BCTRL_Darwin || Opcode == PPC::BCTRL_SVR4))
186 switch (Opcode) {
246 unsigned Opcode = Node->getMachineOpcode()
    [all...]
  /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/javassist/src/main/javassist/convert/
Transformer.java 25 import javassist.bytecode.Opcode;
33 public abstract class Transformer implements Opcode {
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.h 23 static inline ShiftOpc getShiftOpcForNode(unsigned Opcode) {
24 switch (Opcode) {
ARMHazardRecognizer.cpp 26 unsigned Opcode = MCID.getOpcode();
27 if (Opcode == ARM::VMOVRS || Opcode == ARM::VMOVRRD)
85 unsigned Opcode = MI->getOpcode();
88 } else if (Opcode == ARM::t2IT) {
  /external/llvm/lib/Target/PTX/InstPrinter/
PTXInstPrinter.h 29 virtual StringRef getOpcodeName(unsigned Opcode) const;
32 static const char *getInstructionName(unsigned Opcode);
  /external/llvm/include/llvm/CodeGen/
FastISel.h 100 bool SelectOperator(const User *I, unsigned Opcode);
155 /// to request that an instruction with the given type and opcode
159 unsigned Opcode);
162 /// to request that an instruction with the given type, opcode, and
167 unsigned Opcode,
171 /// to request that an instruction with the given type, opcode, and
176 unsigned Opcode,
181 /// to request that an instruction with the given type, opcode, and
186 unsigned Opcode,
191 /// to request that an instruction with the given type, opcode, an
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 30 import javassist.bytecode.Opcode;
133 "booleanValue", "()Z", Opcode.IRETURN,
134 Opcode.T_BOOLEAN, 1);
138 "charValue", "()C", Opcode.IRETURN,
139 Opcode.T_CHAR, 1);
143 "byteValue", "()B", Opcode.IRETURN,
144 Opcode.T_BYTE, 1);
148 "shortValue", "()S", Opcode.IRETURN,
149 Opcode.T_SHORT, 1);
153 "intValue", "()I", Opcode.IRETURN
    [all...]

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 91011