OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OpndKind_GPReg
(Results
1 - 5
of
5
) sorted by null
/dalvik/vm/compiler/codegen/x86/libenc/
enc_prvt.h
138
#define AL {
OpndKind_GPReg
, OpndSize_8, OpndExt_Any, RegName_AL}
139
#define AH {
OpndKind_GPReg
, OpndSize_8, OpndExt_Any, RegName_AH}
140
#define AX {
OpndKind_GPReg
, OpndSize_16, OpndExt_Any, RegName_AX}
141
#define EAX {
OpndKind_GPReg
, OpndSize_32, OpndExt_Any, RegName_EAX}
143
#define RAX {
OpndKind_GPReg
, OpndSize_64, OpndExt_Any, RegName_RAX }
146
#define CL {
OpndKind_GPReg
, OpndSize_8, OpndExt_Any, RegName_CL}
147
#define ECX {
OpndKind_GPReg
, OpndSize_32, OpndExt_Any, RegName_ECX}
149
#define RCX {
OpndKind_GPReg
, OpndSize_64, OpndExt_Any, RegName_RCX}
152
#define DX {
OpndKind_GPReg
, OpndSize_16, OpndExt_Any, RegName_DX}
153
#define EDX {
OpndKind_GPReg
, OpndSize_32, OpndExt_Any, RegName_EDX
[
all
...]
enc_defs.h
95
OpndKind_GPReg
= 0x01, OpndKind_MinRegKind =
OpndKind_GPReg
,
114
OpndKind_GPReg_Mem =
OpndKind_GPReg
|OpndKind_Mem,
168
RegName_RAX = REGNAME(
OpndKind_GPReg
,OpndSize_64,0),
169
RegName_RCX = REGNAME(
OpndKind_GPReg
,OpndSize_64,1),
170
RegName_RDX = REGNAME(
OpndKind_GPReg
,OpndSize_64,2),
171
RegName_RBX = REGNAME(
OpndKind_GPReg
,OpndSize_64,3),
172
RegName_RSP = REGNAME(
OpndKind_GPReg
,OpndSize_64,4),
173
RegName_RBP = REGNAME(
OpndKind_GPReg
,OpndSize_64,5),
174
RegName_RSI = REGNAME(
OpndKind_GPReg
,OpndSize_64,6)
[
all
...]
dec_base.cpp
217
okind = ((opndDesc2.kind & OpndKind_XMMReg) || opndDesc2.size==OpndSize_64) ? OpndKind_XMMReg :
OpndKind_GPReg
;
222
okind = ((opndDesc.kind & OpndKind_XMMReg) || opndDesc.size==OpndSize_64) ? OpndKind_XMMReg :
OpndKind_GPReg
;
269
opnd = EncoderBase::Operand( getRegName(
OpndKind_GPReg
, opnd_size, regid) );
477
OpndKind okind = ((opndDesc.kind & OpndKind_XMMReg) || opndDesc.size == OpndSize_64) ? OpndKind_XMMReg :
OpndKind_GPReg
;
492
index = getRegName(
OpndKind_GPReg
, OpndSize_32, EXTEND_REG(sib.index, x)); //Android x86: OpndDesc.size
499
base = getRegName(
OpndKind_GPReg
, OpndSize_32, EXTEND_REG(sib.base, b)); //Android x86: OpndDesc.size
506
base = getRegName(
OpndKind_GPReg
, OpndSize_32, EXTEND_REG(modrm.rm, b)); //Android x86: OpndDesc.size
enc_base.h
437
bool is_gpreg(void) const { return is_placed_in(
OpndKind_GPReg
); }
486
m_kind ==
OpndKind_GPReg
||
660
if (getRegKind(reg) !=
OpndKind_GPReg
) {
enc_base.cpp
72
0<<2, // 1
OpndKind_GPReg
=
542
getRegKind(op.base()) ==
OpndKind_GPReg
);
544
getRegKind(op.index()) ==
OpndKind_GPReg
);
918
{ "GPReg",
OpndKind_GPReg
},
[
all
...]
Completed in 25 milliseconds