Home | History | Annotate | Download | only in qtools

Lines Matching refs:Opcode

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) {
147 inline bool isStore(Opcode op) { return (opcode_flags[op] & kCatStore) != 0; }
148 inline bool isSigned(Opcode op) { return (opcode_flags[op] & kCatSigned) != 0; }
149 inline bool isMemoryRef(Opcode op) {
152 inline int getAccessSize(Opcode op) { return opcode_flags[op] & kCatNumBytes; }
153 inline bool isCoproc(Opcode op) { return (opcode_flags[op] & kCatCoproc) != 0; }
154 inline int getNumAccesses(Opcode op, uint32_t binary) {