OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OpndKind_Mem
(Results
1 - 6
of
6
) sorted by null
/dalvik/vm/compiler/codegen/x86/libenc/
enc_prvt.h
175
#define r_m8 {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_8, OpndExt_Any, RegName_Null}
176
#define r_m16 {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_16, OpndExt_Any, RegName_Null}
177
#define r_m32 {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_32, OpndExt_Any, RegName_Null}
179
#define r_m8s {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_8, OpndExt_Signed, RegName_Null}
180
#define r_m16s {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_16, OpndExt_Signed, RegName_Null}
181
#define r_m32s {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_32, OpndExt_Signed, RegName_Null}
183
#define r_m8u {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_8, OpndExt_Zero, RegName_Null}
184
#define r_m16u {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_16, OpndExt_Zero, RegName_Null}
185
#define r_m32u {(OpndKind)(OpndKind_GPReg|
OpndKind_Mem
), OpndSize_32, OpndExt_Zero, RegName_Null}
189
//#define m {
OpndKind_Mem
, OpndSize_Null, RegName_Null
[
all
...]
enc_base.h
153
* May be a mask, i.e. OpndKind_Imm|
OpndKind_Mem
.
376
int disp, OpndExt ext = OpndExt_None) : m_kind(
OpndKind_Mem
), m_size(size), m_ext(ext)
389
m_kind(
OpndKind_Mem
), m_size(size), m_ext(ext)
425
bool is_mem(void) const { return is_placed_in(
OpndKind_Mem
); }
687
return (kind <=
OpndKind_Mem
) ? kind_hash[kind] : 0xFF;
703
static const unsigned char kind_hash[
OpndKind_Mem
+1];
enc_defs.h
108
OpndKind_Memory = 0x40,
OpndKind_Mem
=OpndKind_Memory,
114
OpndKind_GPReg_Mem = OpndKind_GPReg|
OpndKind_Mem
,
116
OpndKind_MMXReg_Mem = OpndKind_MMXReg|
OpndKind_Mem
,
118
OpndKind_XMMReg_Mem = OpndKind_XMMReg|
OpndKind_Mem
,
enc_base.cpp
61
const unsigned char EncoderBase::kind_hash[
OpndKind_Mem
+1] = {
121
//assert((odesc->opnds[0].kind &
OpndKind_Mem
) ||
122
// (odesc->opnds[1].kind &
OpndKind_Mem
));
123
unsigned memidx = odesc->opnds[0].kind &
OpndKind_Mem
? 0 : 1;
928
{ "Mem",
OpndKind_Mem
},
[
all
...]
enc_tabl.cpp
[
all
...]
dec_base.cpp
209
if (opndDesc.kind &
OpndKind_Mem
) { // 1st operand is memory
Completed in 31 milliseconds