OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kCatStore
(Results
1 - 2
of
2
) sorted by null
/sdk/emulator/qtools/
opcode.cpp
49
kCatCoproc |
kCatStore
, // OP_STC
50
kCatStore
| kCatMultiple, // OP_STM
51
kCatStore
| kCatWord, // OP_STR
52
kCatStore
| kCatByte, // OP_STRB
53
kCatStore
| kCatByte, // OP_STRBT
54
kCatStore
| kCatHalf, // OP_STRH
55
kCatStore
| kCatWord, // OP_STRT
58
kCatLoad |
kCatStore
, // OP_SWP
59
kCatLoad |
kCatStore
| kCatByte, // OP_SWPB
93
kCatStore
| kCatMultiple, // OP_THUMB_PUSH
[
all
...]
opcode.h
122
static const uint32_t
kCatStore
= 0x0080;
123
static const uint32_t kCatMemoryRef = (kCatLoad |
kCatStore
);
130
static const uint32_t kCatStoreMultiple = (
kCatStore
| kCatMultiple);
147
inline bool isStore(Opcode op) { return (opcode_flags[op] &
kCatStore
) != 0; }
Completed in 22 milliseconds