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

  /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...]
armdis.cpp 6 #include "opcode.h"
45 Opcode opcode = decode(insn); local
46 switch (opcode) {
69 return disasm_alu(opcode, insn, ptr);
72 return disasm_branch(addr, opcode, insn, ptr);
90 return disasm_memblock(opcode, insn, ptr);
107 return disasm_mcr(opcode, insn, ptr);
109 return disasm_mla(opcode, insn, ptr);
115 return disasm_mul(opcode, insn, ptr)
761 uint8_t opcode = (insn >> 21) & 0x7; local
852 uint8_t opcode = (insn >> 21) & 0xf; local
    [all...]
thumbdis.cpp 31 * "decode()" function that maps a thumb instruction to an opcode enum.
42 #include "opcode.h"
48 Opcode opcode; member in struct:thumb_opcode
253 Opcode decode_insn_thumb(uint32_t given)
259 return insn->opcode;
callstack.h 6 #include "opcode.h"
257 Opcode op = OP_INVALID;
  /external/webkit/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) {}
97 Token makeTokenAndAdvance(int type, NumericOp::Opcode, int advance = 1);
98 Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1);
XPathPredicate.cpp 70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs)
71 : m_opcode(opcode)
101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs)
102 : m_opcode(opcode)
204 LogicalOp::LogicalOp(Opcode opcode, Expression* lhs, Expression* rhs)
205 : m_opcode(opcode)
XPathParser.cpp 159 Token Parser::makeTokenAndAdvance(int code, NumericOp::Opcode val, int advance)
165 Token Parser::makeTokenAndAdvance(int code, EqTestOp::Opcode val, int advance)
XPathGrammar.y 63 NumericOp::Opcode numop;
64 EqTestOp::Opcode eqop;
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.h 37 #include "Opcode.h"
77 Opcode getOpcode(OpcodeID id)
86 OpcodeID getOpcodeID(Opcode opcode)
89 ASSERT(isOpcode(opcode));
90 return m_opcodeIDTable.get(opcode);
92 return opcode;
96 bool isOpcode(Opcode);
151 bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode (…)
    [all...]
Interpreter.cpp 437 bool Interpreter::isOpcode(Opcode opcode)
440 return opcode != HashTraits<Opcode>::emptyValue()
441 && !HashTraits<Opcode>::isDeletedValue(opcode)
442 && m_opcodeIDTable.contains(opcode);
444 return opcode >= 0 && opcode <= op_end;
545 if (isCallBytecode(codeBlock->instructions()[bytecodeOffset].u.opcode))
    [all...]
  /external/v8/src/mips/
constants-mips.h 170 enum Opcode {
391 inline Opcode OpcodeField() const {
392 return static_cast<Opcode>(
433 inline Opcode OpcodeFieldRaw() const {
434 return static_cast<Opcode>(InstructionBits() & kOpcodeMask);
463 // Get the secondary field according to the opcode.
465 Opcode op = OpcodeFieldRaw();
assembler-mips.h 295 // Takes a branch opcode (cc) and a label (L) and generates
326 // Difference between address of current opcode and target address offset.
610 void GenInstrRegister(Opcode opcode,
617 void GenInstrRegister(Opcode opcode,
624 void GenInstrRegister(Opcode opcode,
632 void GenInstrImmediate(Opcode opcode,
    [all...]
assembler-mips.cc 306 uint32_t opcode = ((instr & kOpcodeMask)); local
310 return opcode == BEQ ||
311 opcode == BNE ||
312 opcode == BLEZ ||
313 opcode == BGTZ ||
314 opcode == BEQL ||
315 opcode == BNEL ||
316 opcode == BLEZL ||
317 opcode == BGTZL||
318 (opcode == REGIMM && (rt_field == BLTZ || rt_field == BGEZ |
    [all...]
simulator-mips.cc 864 Opcode op = instr->OpcodeFieldRaw();
    [all...]
  /external/v8/src/arm/
constants-arm.h 124 enum Opcode {
254 inline Opcode OpcodeField() const {
255 return static_cast<Opcode>(Bits(24, 21));
  /external/webkit/JavaScriptCore/bytecode/
Instruction.h 33 #include "Opcode.h"
55 // Structure used by op_get_by_id_self_list and op_get_by_id_proto_list instruction to hold data off the main opcode stream.
125 Instruction(Opcode opcode)
129 // the entire struct is initialized, when opcode is not a pointer.
132 u.opcode = opcode;
149 Opcode opcode; member in union:JSC::Instruction::__anon7890
Opcode.h 176 macro(op_end, 2) // end must be the last opcode in the list
178 #define OPCODE_ID_ENUM(opcode, length) opcode,
188 #define OPCODE_LENGTH(opcode) opcode##_length
190 #define OPCODE_ID_LENGTH_MAP(opcode, length) length,
200 typedef void* Opcode;
202 typedef const void* Opcode;
205 typedef OpcodeID Opcode;
236 static void recordInstruction(int opcode);
    [all...]
  /external/webkit/JavaScriptCore/
Android.mk 33 bytecode/Opcode.cpp \

Completed in 1369 milliseconds