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

  /external/webkit/JavaScriptCore/bytecode/
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/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/v8/src/arm/
constants-arm.h 124 enum Opcode {
254 inline Opcode OpcodeField() const {
255 return static_cast<Opcode>(Bits(24, 21));
  /sdk/emulator/qtools/
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/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();

Completed in 68 milliseconds