Searched defs:Operand (Results 1 - 2 of 2) sorted by relevance

/art/compiler/utils/x86/
H A Dassembler_x86.h53 class Operand : public ValueObject { class in namespace:art::x86
93 // Operand can be sub classed (e.g: Address).
94 Operand() : length_(0), fixup_(nullptr) { } function in class:art::x86::Operand
137 explicit Operand(Register reg) : fixup_(nullptr) { SetModRM(3, reg); } function in class:art::x86::Operand
150 class Address : public Operand {
820 void EmitOperand(int rm, const Operand& operand);
823 int rm, const Operand& operand, const Immediate& immediate, bool is_16_op = false);
828 void EmitGenericShift(int rm, const Operand& operand, const Immediate& imm);
829 void EmitGenericShift(int rm, const Operand& operand, Register shifter);
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h61 class Operand : public ValueObject { class in namespace:art::x86_64
125 // Operand can be sub classed (e.g: Address).
126 Operand() : rex_(0), length_(0), fixup_(nullptr) { } function in class:art::x86_64::Operand
173 explicit Operand(CpuRegister reg) : rex_(0), length_(0), fixup_(nullptr) { SetModRM(3, reg); } function in class:art::x86_64::Operand
186 class Address : public Operand {
907 void EmitOperand(uint8_t rm, const Operand& operand);
910 uint8_t rm, const Operand& operand, const Immediate& immediate, bool is_16_op = false);
927 void EmitOptionalRex32(const Operand& operand);
928 void EmitOptionalRex32(CpuRegister dst, const Operand& operand);
929 void EmitOptionalRex32(XmmRegister dst, const Operand
[all...]

Completed in 45 milliseconds