Home
last modified time | relevance | path

Searched refs:opnd (Results 1 – 2 of 2) sorted by relevance

/dalvik/vm/compiler/codegen/x86/libenc/
Denc_wrapper.cpp85 void printOperand(const EncoderBase::Operand & opnd) { in printOperand() argument
89 if(opnd.size() != OpndSize_32) { in printOperand()
91 getOpndSizeString(opnd.size())); in printOperand()
93 if(opnd.is_mem()) { in printOperand()
94 if(opnd.scale() != 0) { in printOperand()
96 "%d(%s,%s,%d)", opnd.disp(), in printOperand()
97 getRegNameString(opnd.base()), in printOperand()
98 getRegNameString(opnd.index()), opnd.scale()); in printOperand()
101 opnd.disp(), getRegNameString(opnd.base())); in printOperand()
104 if(opnd.is_imm()) { in printOperand()
[all …]
Ddec_base.cpp200 EncoderBase::Operand& opnd = pinst->operands[pinst->argc]; in decode_aux() local
269 opnd = EncoderBase::Operand( getRegName(OpndKind_GPReg, opnd_size, regid) ); in decode_aux()
279 opnd = EncoderBase::Operand(offset); in decode_aux()
290 opnd = EncoderBase::Operand(offset); in decode_aux()
299 opnd = EncoderBase::Operand(offset); in decode_aux()
320 opnd = EncoderBase::Operand(ival); in decode_aux()
328 opnd = EncoderBase::Operand(ival); in decode_aux()
336 opnd = EncoderBase::Operand(ival); in decode_aux()
345 opnd = EncoderBase::Operand(OpndSize_64, ival); in decode_aux()
459 EncoderBase::Operand& opnd = pinst->operands[pinst->argc]; in decodeModRM() local
[all …]